The secret set parameters.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SecretSetParameters", "title": "SecretSetParameters", "type": "object", "description": "The secret set parameters.", "properties": { "value": { "type": "string", "description": "The value of the secret.", "example": "example_value" }, "tags": { "type": "object", "additionalProperties": { "type": "string" }, "description": "Application-specific metadata.", "example": "example_value" }, "contentType": { "type": "string", "description": "Type of the secret value such as a password.", "example": "example_value" }, "secretAttributes": { "$ref": "#/components/schemas/SecretAttributes" } }, "required": [ "value" ] }