| ||
detail: element | attribute | value |
XML Example:<FileData> <data_as_base64>xsd:string</data_as_base64> <data_as_string>xsd:string</data_as_string> <data_from_url>xsd:string</data_from_url> <exec_on_first_boot>xsd:boolean</exec_on_first_boot> <path>xsd:string</path> </FileData> | JSON Example:{"FileData": { "data_as_base64": String, "data_as_string": String, "data_from_url": String, "exec_on_first_boot": Boolean, "path": String, } } |
Name | Type | Required | Nillable | Default Value | Description |
---|---|---|---|---|---|
data_as_base64 | xsd:string | false | false | Provide the data for file as base64. | |
data_as_string | xsd:string | false | false | Provide the data for file as a string. | |
data_from_url | xsd:string | false | false | Provide a URL from which to download the data. | |
exec_on_first_boot | xsd:boolean | false | false | If this is set to true, the file will be marked as executable then executed. | |
path | xsd:string | false | false | Path to inject the file. |
| ||
detail: element | attribute | value |