Microsoft Azure · Schema

KeyUpdateParameters

The key update parameters.

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

Name Type Description
key_ops array JSON web key operations.
attributes object
tags object Application-specific metadata.
release_policy object
View JSON Schema on GitHub

JSON Schema

microsoft-azure-keyupdateparameters-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/KeyUpdateParameters",
  "title": "KeyUpdateParameters",
  "type": "object",
  "description": "The key update parameters.",
  "properties": {
    "key_ops": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "JSON web key operations.",
      "example": []
    },
    "attributes": {
      "$ref": "#/components/schemas/KeyAttributes"
    },
    "tags": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      },
      "description": "Application-specific metadata.",
      "example": "example_value"
    },
    "release_policy": {
      "$ref": "#/components/schemas/KeyReleasePolicy"
    }
  }
}