endpoints_disable_management - Endpoint management monitor

Added in version 1.1.0.

Synopsis

Endpoint management monitor.

Use API “/monitor-api/v1/endpoints/disable-management”.

Requirements

The below requirements are needed on the host that executes this module.

  • ansible>=2.17.0

Parameters

  • force_behavior Specify this option to force the method to use to interact with the resource.type: strchoices: ['none', 'read', 'create', 'update', 'delete']default: none
  • bypass_validation Bypass validation of the module.type: booldefault: False
  • params The parameters of the module.[Required]type: dict
    • endpoints type: listelements: dict
      • device_id type: str
      • hostname type: str

Examples

- name: Disable endpoints management
  hosts: fortisase
  gather_facts: false
  tasks:
    - name: Disable endpoints management
      fortinet.fortisase.endpoints_disable_management:
        params:
          endpoints:
            - device_id: "1"
              hostname: "test1"
            - device_id: "2"
              hostname: "test2"

Return Values

  • http_code type: intreturned: always
  • response type: rawreturned: always

Authors

  • Xinwei Du (@dux-fortinet)