addSRUFileUpload
The addSRUFileUpload operation handles configuration related to SRUFileUpload model.
Data Parameters
Parameter | Required | Type | Description | |||
---|---|---|---|---|---|---|
name | False | string | Name of the file to be installed | |||
fileName | False | string | Name of the file to be installed Field level constraints: must match pattern ^((?!;).)*$. (Note: Additional constraints might exist) |
|||
checkSum | False | string | SHA-512 sum of the package Field level constraints: must match pattern ^[a-fA-F0-9]{128}$. (Note: Additional constraints might exist) |
|||
uploadOnly | False | boolean | set to true if the file was not intended to be installed | |||
allowDowngrade | False | boolean | set to true if downgrade is allowed | |||
type | True | string | srufileupload |
Example
- name: Execute 'addSRUFileUpload' operation
ftd_configuration:
operation: "addSRUFileUpload"
data:
name: "{{ name }}"
fileName: "{{ file_name }}"
checkSum: "{{ check_sum }}"
uploadOnly: "{{ upload_only }}"
allowDowngrade: "{{ allow_downgrade }}"
type: "{{ type }}"