Microsoft Azure · Schema

KeyCreateParameters

The key create parameters.

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

Name Type Description
kty string The type of key to create.
key_size integer The key size in bits. For example, 2048, 3072, or 4096 for RSA.
key_ops array JSON web key operations.
tags object Application-specific metadata.
crv string Elliptic curve name (for EC key types).
exportable boolean Whether the private key can be exported.
View JSON Schema on GitHub

JSON Schema

azure-key-vault-key-create-parameters-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "KeyCreateParameters",
  "type": "object",
  "description": "The key create parameters.",
  "properties": {
    "kty": {
      "type": "string",
      "description": "The type of key to create."
    },
    "key_size": {
      "type": "integer",
      "description": "The key size in bits. For example, 2048, 3072, or 4096 for RSA."
    },
    "key_ops": {
      "type": "array",
      "description": "JSON web key operations."
    },
    "tags": {
      "type": "object",
      "description": "Application-specific metadata."
    },
    "crv": {
      "type": "string",
      "description": "Elliptic curve name (for EC key types)."
    },
    "exportable": {
      "type": "boolean",
      "description": "Whether the private key can be exported."
    }
  }
}