addRealmSequence

The addRealmSequence operation handles configuration related to RealmSequence model. 

Description

This API call is not allowed on the standby unit in an HA pair.

Data Parameters

Parameter Required Type Description
name False string A UTF string containing the name for the Realm Sequence.
description False string Description of this RealmSequence object. The string can be up to 200 characters.
Field level constraints: length must be between 0 and 200 (inclusive), must match pattern ^((?!;).)*$. (Note: Additional constraints might exist)
realms True [object] A list of Identity Realms
Field level constraints: cannot be blank or empty. (Note: Additional constraints might exist)
Allowed types are: [ActiveDirectoryRealm]
type True string RealmSequence object type

Example

- name: Execute 'addRealmSequence' operation
  ftd_configuration:
    operation: "addRealmSequence"
    data:
        name: "{{ name }}"
        description: "{{ description }}"
        realms: "{{ realms }}"
        type: "{{ type }}"