Microsoft Azure · Schema
SecretAttributes
The secret management attributes.
API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1
Properties
| Name | Type | Description |
|---|---|---|
| enabled | boolean | Whether the secret is enabled. |
| nbf | integer | Not before date in UTC (Unix time). |
| exp | integer | Expiry date in UTC (Unix time). |
| created | integer | Creation time in UTC (Unix time). |
| updated | integer | Last updated time in UTC (Unix time). |
| recoveryLevel | string | The recovery level currently in effect. |
| recoverableDays | integer | The soft-delete data retention days. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SecretAttributes",
"title": "SecretAttributes",
"type": "object",
"description": "The secret management attributes.",
"properties": {
"enabled": {
"type": "boolean",
"description": "Whether the secret is enabled.",
"example": true
},
"nbf": {
"type": "integer",
"description": "Not before date in UTC (Unix time).",
"example": 10
},
"exp": {
"type": "integer",
"description": "Expiry date in UTC (Unix time).",
"example": 10
},
"created": {
"type": "integer",
"readOnly": true,
"description": "Creation time in UTC (Unix time).",
"example": 10
},
"updated": {
"type": "integer",
"readOnly": true,
"description": "Last updated time in UTC (Unix time).",
"example": 10
},
"recoveryLevel": {
"type": "string",
"readOnly": true,
"description": "The recovery level currently in effect.",
"example": "example_value"
},
"recoverableDays": {
"type": "integer",
"readOnly": true,
"description": "The soft-delete data retention days.",
"example": 10
}
}
}