fortiflexvm_entitlements_points_info - Get point usage for entitlements. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ .. versionadded:: 2.0.0 .. contents:: :local: :depth: 1 Synopsis -------- Returns total points consumed by one or more entitlements in a date range. 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 point usage for entitlementss hosts: localhost vars: username: "" password: "" tasks: - name: Get entitlements points fortinet.fortiflexvm.fortiflexvm_entitlements_points_info: username: "{{ username }}" password: "{{ password }}" # Either configId or (accountId and programSerialNumber) should be provided. # configId: 3196 accountId: 12345 programSerialNumber: "ELAVMS0XXXXXX" # Instead of configId you can pass serialNumber to get results for one VM only. serialNumber: "FZVMMLTMXXXXXX" startDate: "2020-10-01" endDate: "2020-10-25" 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.