KeyVaultPatchProperties Class

Definition

Properties of the vault.

public class KeyVaultPatchProperties : System.ClientModel.Primitives.IJsonModel<Azure.ResourceManager.KeyVault.Models.KeyVaultPatchProperties>, System.ClientModel.Primitives.IPersistableModel<Azure.ResourceManager.KeyVault.Models.KeyVaultPatchProperties>
public class KeyVaultPatchProperties
type KeyVaultPatchProperties = class
    interface IJsonModel<KeyVaultPatchProperties>
    interface IPersistableModel<KeyVaultPatchProperties>
type KeyVaultPatchProperties = class
Public Class KeyVaultPatchProperties
Implements IJsonModel(Of KeyVaultPatchProperties), IPersistableModel(Of KeyVaultPatchProperties)
Public Class KeyVaultPatchProperties
Inheritance
KeyVaultPatchProperties
Implements

Constructors

KeyVaultPatchProperties()

Initializes a new instance of KeyVaultPatchProperties.

Properties

AccessPolicies

An array of 0 to 16 identities that have access to the key vault. All identities in the array must use the same tenant ID as the key vault's tenant ID.

CreateMode

The vault's create mode to indicate whether the vault need to be recovered or not.

EnabledForDeployment

Property to specify whether Azure Virtual Machines are permitted to retrieve certificates stored as secrets from the key vault.

EnabledForDiskEncryption

Property to specify whether Azure Disk Encryption is permitted to retrieve secrets from the vault and unwrap keys.

EnabledForTemplateDeployment

Property to specify whether Azure Resource Manager is permitted to retrieve secrets from the key vault.

EnablePurgeProtection

Property specifying whether protection against purge is enabled for this vault. Setting this property to true activates protection against purge for this vault and its content - only the Key Vault service may initiate a hard, irrecoverable deletion. The setting is effective only if soft delete is also enabled. Enabling this functionality is irreversible - that is, the property does not accept false as its value.

EnableRbacAuthorization

Property that controls how data actions are authorized. When true, the key vault will use Role Based Access Control (RBAC) for authorization of data actions, and the access policies specified in vault properties will be ignored. When false, the key vault will use the access policies specified in vault properties, and any policy stored on Azure Resource Manager will be ignored. If null or not specified, the value of this property will not change.

EnableSoftDelete

Property to specify whether the 'soft delete' functionality is enabled for this key vault. Once set to true, it cannot be reverted to false.

NetworkRuleSet

A collection of rules governing the accessibility of the vault from specific network locations.

PublicNetworkAccess

Property to specify whether the vault will accept traffic from public internet. If set to 'disabled' all traffic except private endpoint traffic and that that originates from trusted services will be blocked. This will override the set firewall rules, meaning that even if the firewall rules are present we will not honor the rules.

Sku

SKU details.

SoftDeleteRetentionInDays

softDelete data retention days. It accepts >=7 and <=90.

TenantId

The Azure Active Directory tenant ID that should be used for authenticating requests to the key vault.

Explicit Interface Implementations

IJsonModel<KeyVaultPatchProperties>.Create(Utf8JsonReader, ModelReaderWriterOptions)

Reads one JSON value (including objects or arrays) from the provided reader and converts it to a model.

IJsonModel<KeyVaultPatchProperties>.Write(Utf8JsonWriter, ModelReaderWriterOptions)

Writes the model to the provided Utf8JsonWriter.

IPersistableModel<KeyVaultPatchProperties>.Create(BinaryData, ModelReaderWriterOptions)

Converts the provided BinaryData into a model.

IPersistableModel<KeyVaultPatchProperties>.GetFormatFromOptions(ModelReaderWriterOptions)

Gets the data interchange format (JSON, Xml, etc) that the model uses when communicating with the service.

IPersistableModel<KeyVaultPatchProperties>.Write(ModelReaderWriterOptions)

Writes the model into a BinaryData.

Applies to