endpoint_setting_profiles - Settings Profile Resource +++++++++++++++++++++++++++++++++++++++++++++++++++++ .. versionadded:: 1.0.0 .. contents:: :local: :depth: 1 Synopsis -------- Settings Profile Resource. Use API "/resource-api/v2/endpoint/setting-profiles/{primaryKey}". Requirements ------------ The below requirements are needed on the host that executes this module. - ansible>=2.17.0 Parameters ---------- .. raw:: html Examples ------------- .. code-block:: yaml - name: Update setting profile hosts: fortisase gather_facts: false vars: primary_key: "policy1" tasks: - name: Create a new endpoint profile, do nothing if the endpoint profile already exists fortinet.fortisase.endpoint_policies: state: present params: primary_key: "{{ primary_key }}" enabled: true - name: Update setting profile fortinet.fortisase.endpoint_setting_profiles: params: primary_key: "{{ primary_key }}" notify_vpn_issue: "enable" show_notifications: "enable" show_tag_forti_client: "disable" users_can_disconnect: "disable" Return Values ------------- .. raw:: html Authors ------- - Xinwei Du (@dux-fortinet)