getAllInternalCA

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

Description

Retrieves, deletes, creates, or modifies the Internal CA associated with the specified ID. If no ID is specified, retrieves list of all Internal CAs.

Path Parameters

Parameter Required Type Description
domainUUID True string Domain UUID

Query Parameters

Parameter Required Type Description
filter False string Filter by name of the CA is supported.
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 'getAllInternalCA' operation
  cisco.fmcansible.fmc_configuration:
    operation: "getAllInternalCA"
    path_params:
        domainUUID: "{{ domain_uuid }}"
    query_params:
        filter: "{{ filter }}"
        offset: "{{ offset }}"
        limit: "{{ limit }}"
        expanded: "{{ expanded }}"