addInitialProvision

The addInitialProvision operation handles configuration related to InitialProvision model. 

Description

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

Data Parameters

Parameter Required Type Description
acceptEULA False boolean A boolean value that indicates whether the End User License Agreement is accepted. Specify one of the following values: [true, false].
eulaText False string The text of End User License Agreement.
currentPassword False string The current password. It is only used when updating user password. If you need to change the admin password, the current password. You must also configure the new password.
newPassword False string The new password to use. It is only used when updating user password. If you need to change the admin password, the new password. You must also configure the current password.
initialPasswordChangeRequired False boolean A read only boolean value indicating whether password fields are required. Value 'true' denotes the password has not been changed from the factory default and you must specify a new password as well as the existing password. Value 'false' denotes the default password was already changed and the current and new password fields are optional.
type True string A UTF8 string, all letters lower-case, that represents the class-type. This corresponds to the class name.

Example

- name: Execute 'addInitialProvision' operation
  ftd_configuration:
    operation: "addInitialProvision"
    data:
        acceptEULA: "{{ accept_eula }}"
        eulaText: "{{ eula_text }}"
        currentPassword: "{{ current_password }}"
        newPassword: "{{ new_password }}"
        initialPasswordChangeRequired: "{{ initial_password_change_required }}"
        type: "{{ type }}"