Azure Key Vault · Schema

KeyCreateParameters

The key create parameters.

CertificatesCloud SecurityCryptographyKey ManagementSecrets ManagementSecurity

Properties

Name Type Description
key_size integer The key size in bits. For example: 2048, 3072, or 4096 for RSA.
public_exponent integer The public exponent for a RSA key.
key_ops array JSON web key operations.
tags object Application specific metadata in the form of key-value pairs.
View JSON Schema on GitHub

JSON Schema

azure-key-vault-data-plane-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": {
    "key_size": {
      "type": "integer",
      "description": "The key size in bits. For example: 2048, 3072, or 4096 for RSA."
    },
    "public_exponent": {
      "type": "integer",
      "description": "The public exponent for a RSA key."
    },
    "key_ops": {
      "type": "array",
      "description": "JSON web key operations."
    },
    "tags": {
      "type": "object",
      "description": "Application specific metadata in the form of key-value pairs."
    }
  }
}