action dracoon_create_s3_tag {
label: "Create S3 tag"
description: "
🚀 Since v4.9.0
\n\n### Description: \nCreate new S3 tag.\n\n### Precondition:\nRight 🔓 change global config and\nrole 👤 Config Manager of the Provider Customer required.\n\n### Postcondition:\nNew S3 tag is created.\n\n### Further Information:\n* Maximum key length: **128** characters. \n* Maximum value length: **256** characters. \n* Both S3 tag key and value are **case-sensitive** strings. \n* Maximum of **20 mandatory S3 tags** is allowed."
provider: dracoon
method: POST
path: "/v4/system/config/storage/s3/tags"
encoding: json
input: {
type: "object"
properties: {
"X-Sds-Auth-Token": {
type: "string"
}
isMandatory: {
type: "boolean"
description: "Determines whether S3 is mandatory or not"
}
key: {
type: "string"
description: "S3 tag key"
}
value: {
type: "string"
description: "S3 tag value"
}
}
required: ["key", "value"]
additionalProperties: false
}
output: {
type: "object"
description: "S3 tag information"
properties: {
id: {
type: "integer"
format: "int64"
description: "S3 tag ID"
}
isMandatory: {
type: "boolean"
description: "Determines whether S3 is mandatory or not"
}
key: {
type: "string"
description: "S3 tag key"
}
value: {
type: "string"
description: "S3 tag value"
}
}
}
}