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. | ||
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 }}"
type: "{{ type }}"