addBridgeGroupInterface

The addBridgeGroupInterface operation handles configuration related to BridgeGroupInterface model. 

Data Parameters

Parameter Required Type Description
name False string An optional ASCII string, from 0 to 48 characters, representing the name of the interface. The string can only include lower case characters (a-z), numbers (0-9), underscore (), dot (.), and plus/minus (+,-). The name can only start with an alpha numeric character.
Field level constraints: length must be between 0 and 48 (inclusive), must match pattern (^$)|(^[a-z0-9
][ a-z0-9_.+-]*$), cannot have HTML. (Note: Additional constraints might exist)
description False string An optional UTF-8 sting, from 0 to 200 characters. The string cannot include HTML tags, semi-colons(;), or carriage returns.
Field level constraints: length must be between 0 and 200 (inclusive), cannot have HTML, must match pattern ^((?!;).)*$. (Note: Additional constraints might exist)
hardwareName False string A mandatory UTF-8 string for the PhysicalInterfaces and SubInterfaces, which normally specifies the type of Interface along with the Interface number. The string cannot contain HTML tags.
Field level constraints: must match pattern ^((?!;).)*$, cannot have HTML. (Note: Additional constraints might exist)
ipv4 False object An optional IPv4 object assigned to an interface in Firepower device manager. This object specifies Interface configuration for an IPv4 address.
ipv6 False object An optional IPv6 object assigned to an interface in Firepower device manager. This object specifies Interface configuration for an IPv6 address.
selectedInterfaces False [object] A set of zero/one or more Physical Interfaces, objects that are grouped together to form a bridge group.
Allowed types are: [PhysicalInterface, SubInterface]
bridgeGroupId False integer For Internal use.
type False string A UTF8 string, all letters lower-case, that represents the class-type. This corresponds to the class name.

Example

- name: Execute 'addBridgeGroupInterface' operation
  ftd_configuration:
    operation: "addBridgeGroupInterface"
    data:
        name: "{{ name }}"
        description: "{{ description }}"
        hardwareName: "{{ hardware_name }}"
        ipv4: "{{ ipv4 }}"
        ipv6: "{{ ipv6 }}"
        selectedInterfaces: "{{ selected_interfaces }}"
        bridgeGroupId: "{{ bridge_group_id }}"
        type: "{{ type }}"