Microsoft Azure · Schema

SecretSetParameters

The secret set parameters.

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

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

JSON Schema

azure-key-vault-secret-set-parameters-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "SecretSetParameters",
  "type": "object",
  "description": "The secret set parameters.",
  "properties": {
    "value": {
      "type": "string",
      "description": "The value of the secret."
    },
    "tags": {
      "type": "object",
      "description": "Application-specific metadata."
    },
    "contentType": {
      "type": "string",
      "description": "Type of the secret value such as a password."
    }
  }
}