deleteMultipleDynamicObjectMappings

The deleteMultipleDynamicObjectMappings operation handles configuration related to /api/fmc_config/v1/domain/{domainUUID}/object/dynamicobjects/{objectId}/mappings path. 

Description

Retrieves, adds, or removes the Dynamic Object Mappings associated with the specified ID. Check the response section for applicable examples (if any).

Path Parameters

Parameter Required Type Description
domainUUID True string Domain UUID

Query Parameters

Parameter Required Type Description
filter True string Specify filter criteria
  • Object with ids: "ids:id1,id2,..."
  • Unused objects: "unusedOnly:true"
  • Name starts with: "nameStartsWith:{name-pattern}"
  • Agent ID: "agentId:{Agent ID}"
bulk True boolean Enables bulk removal of mappings
propagate False string Control propagating dynamic object mappings. It can be ["true", "false"]. Default value is "true".

Example

- name: Execute 'deleteMultipleDynamicObjectMappings' operation
  cisco.fmcansible.fmc_configuration:
    operation: "deleteMultipleDynamicObjectMappings"
    path_params:
        domainUUID: "{{ domain_uuid }}"
    query_params:
        filter: "{{ filter }}"
        bulk: "{{ bulk }}"
        propagate: "{{ propagate }}"