fortiflexvm_entitlements_list_info - Get entitlements information. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ .. versionadded:: 2.0.0 .. contents:: :local: :depth: 1 Synopsis -------- This module retrieves information of target entitlements. Either configId or (accountId and programSerialNumber) should be provided. Requirements ------------ The below requirements are needed on the host that executes this module. - ansible>=2.15 Parameters ---------- .. raw:: html Examples ------------- .. code-block:: yaml - name: Get information of target entitlements. hosts: localhost vars: username: "" password: "" tasks: - name: Get entitlements list fortinet.fortiflexvm.fortiflexvm_entitlements_list_info: username: "{{ username }}" password: "{{ password }}" # Either configId or (accountId and programSerialNumber) should be provided. configId: 22 # accountId: 12345 # programSerialNumber: "ELAVMS00XXXXX" # Optional filter options # description: "you can use description to distinguish entitlements" # serialNumber: "XXXXXX0000000000" # status: "PENDING" # tokenStatus: "NOTUSED" register: result - name: Display response ansible.builtin.debug: var: result.entitlements Return Values ------------- .. raw:: html Authors ------- - Xinwei Du (@dux-fortinet) .. hint:: If you notice any issues in this documentation, you can create a pull request to improve it.