upsertDataInterfaceHttpsPort

The upsertDataInterfaceHttpsPort operation handles configuration related to DataInterfaceHttpsPort model. 

Data Parameters

Parameter Required Type Description
version False string
name False string Name given to this entity that is always set to a default value and is not editable
httpsPort True integer An integer indicating the HTTPS port of the FDM server on the data interface, 1-65535, with the exception of port 22. The default is 443. You cannot configure the same port number that is used for remote access VPN.
Field level constraints: cannot be null, must be between 1 and 65535 (inclusive). (Note: Additional constraints might exist)
id False string
Field level constraints: must match pattern ^((?!;).)*$. (Note: Additional constraints might exist)
type True string

Query Parameters

Parameter Required Type Description
filter False string The criteria used to filter the models you are requesting. It should have the following format: {key}{operator}{value}[;{key}{operator}{value}]. Supported operators are: "!"(not equals), ":"(equals), "~"(similar). Supported keys are: "name", "fts". The "fts" filter cannot be used with other filters. Default filtering for Upsert operation is done by name.

Example

- name: Execute 'upsertDataInterfaceHttpsPort' operation
  ftd_configuration:
    operation: "upsertDataInterfaceHttpsPort"
    data:
        version: "{{ version }}"
        name: "{{ name }}"
        httpsPort: "{{ https_port }}"
        id: "{{ id }}"
        type: "{{ type }}"
    query_params:
        filter: "{{ filter }}"