Azure Key Vault · Schema

SecretUpdateParameters

The secret update parameters.

CertificatesCloud SecurityCryptographyKey ManagementSecrets ManagementSecurity

Properties

Name Type Description
contentType string Type of the secret value such as a password.
attributes object
tags object Application specific metadata in the form of key-value pairs.
View JSON Schema on GitHub

JSON Schema

microsoft-azure-key-vault-secretupdateparameters-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SecretUpdateParameters",
  "title": "SecretUpdateParameters",
  "type": "object",
  "description": "The secret update parameters.",
  "properties": {
    "contentType": {
      "type": "string",
      "description": "Type of the secret value such as a password.",
      "example": "example_value"
    },
    "attributes": {
      "$ref": "#/components/schemas/SecretAttributes"
    },
    "tags": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      },
      "description": "Application specific metadata in the form of key-value pairs.",
      "example": "example_value"
    }
  }
}