security_onetime_schedules - Onetime Schedule Resource ++++++++++++++++++++++++++++++++++++++++++++++++++++++ .. versionadded:: 1.0.0 .. contents:: :local: :depth: 1 Synopsis -------- Onetime Schedule Resource. Use API "/resource-api/v2/security/onetime-schedules". 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: Security onetime schedules hosts: fortisase gather_facts: false vars: primary_key: "onetime_schedule_ansible" tasks: - name: Create/Update security onetime schedules fortinet.fortisase.security_onetime_schedules: state: present params: primary_key: "{{ primary_key }}" start_utc: 1422835200 end_utc: 1454371200 - name: Delete security onetime schedules fortinet.fortisase.security_onetime_schedules: state: absent params: primary_key: "{{ primary_key }}" Return Values ------------- .. raw:: html Authors ------- - Xinwei Du (@dux-fortinet)