fortiflexvm_entitlements_update - Update an existing entitlement. +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ .. versionadded:: 1.0.0 .. contents:: :local: :depth: 1 Synopsis -------- This module updates an existing entitlement. Requirements ------------ The below requirements are needed on the host that executes this module. - ansible>=2.15 Parameters ---------- .. raw:: html Examples ------------- .. code-block:: yaml - name: Update entitlement hosts: localhost vars: username: "" password: "" config_id: 12345 tasks: - name: Update an entitlement. fortinet.fortiflexvm.fortiflexvm_entitlements_update: username: "{{ username }}" password: "{{ password }}" serialNumber: "FGVMXXXX00000000" # Please specify configId if you want to update configId, description or endDate configId: "{{ config_id }}" # description: "Modify through Ansible" # Optional. # endDate: "2024-12-12T00:00:00" # Optional. If not set, it will use the program end date automatically. # status: "ACTIVE" # Optional. ACTIVE or STOPPED 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.