updateInlineSet

The updateInlineSet operation handles configuration related to /api/fmc_config/v1/domain/{domainUUID}/devices/devicerecords/{containerUUID}/inlinesets/{objectId} path. 

Description

Retrieves, deletes, creates, or modifies the inline set associated with the specified NGIPS device ID and inline set ID. If no inline set ID is specified, retrieves list of all inline sets associated with the specified NGIPS device ID. Check the response section for applicable examples (if any).

Data Parameters Example

Parameter Value
name Default Inline Set
id inlinesetUUID
type InlineSet
bypass True
standBy True
failSafe True
failopen True
macFiltering False
inlinepairs [{'first': {'name': 's1p1', 'type': 'FPPhysicalInterface', 'id': 'FPPhysicalInterfaceUUID1'}, 'second': {'name': 's1p2', 'type': 'FPPhysicalInterface', 'id': 'FPPhysicalInterfaceUUID2'}}]
loadBalancingMode inner
loadBalancingModeVlan inner
mtu 1518
propogateLinkState True
strictTCPEnforcement True

Path Parameters

Parameter Required Type Description
objectId True string Unique identifier of an inline set.
containerUUID True string The container id under which this specific resource is contained.
domainUUID True string Domain UUID

Example

- name: Execute 'updateInlineSet' operation
  cisco.fmcansible.fmc_configuration:
    operation: "updateInlineSet"
    data:
        name: Default Inline Set
        id: inlinesetUUID
        type: InlineSet
        bypass: True
        standBy: True
        failSafe: True
        failopen: True
        macFiltering: False
        inlinepairs: [{'first': {'name': 's1p1', 'type': 'FPPhysicalInterface', 'id': 'FPPhysicalInterfaceUUID1'}, 'second': {'name': 's1p2', 'type': 'FPPhysicalInterface', 'id': 'FPPhysicalInterfaceUUID2'}}]
        loadBalancingMode: inner
        loadBalancingModeVlan: inner
        mtu: 1518
        propogateLinkState: True
        strictTCPEnforcement: True
    path_params:
        objectId: "{{ object_id }}"
        containerUUID: "{{ container_uuid }}"
        domainUUID: "{{ domain_uuid }}"