Azure Key Vault · Schema

SecretSetParameters

The secret set parameters.

CertificatesCloud SecurityCryptographyKey ManagementSecrets ManagementSecurity

Properties

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

JSON Schema

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