getAllAnyConnectProfileModel

The getAllAnyConnectProfileModel operation handles configuration related to /api/fmc_config/v1/domain/{domainUUID}/object/anyconnectprofiles path. 

Description

Retrieves, update, deletes or creates the AnyConnect Profile associated with the specified ID. If no ID is specified for a GET, retrieves list of all AnyConnect Profile objects.

Path Parameters

Parameter Required Type Description
domainUUID True string Domain UUID

Query Parameters

Parameter Required Type Description
filter False string To be used in conjunction with "unusedOnly:true" to search for unused objects and "nameOrValue:{nameOrValue}" to search for both name and value.
offset False integer Index of first item to return.
limit False integer Number of items to return.
expanded False boolean If set to true, the GET response displays a list of objects with additional attributes.

Example

- name: Execute 'getAllAnyConnectProfileModel' operation
  cisco.fmcansible.fmc_configuration:
    operation: "getAllAnyConnectProfileModel"
    path_params:
        domainUUID: "{{ domain_uuid }}"
    query_params:
        filter: "{{ filter }}"
        offset: "{{ offset }}"
        limit: "{{ limit }}"
        expanded: "{{ expanded }}"