Condividi tramite


ArmKeyVaultModelFactory.KeyVaultPatchProperties Method

Definition

Properties of the vault.

public static Azure.ResourceManager.KeyVault.Models.KeyVaultPatchProperties KeyVaultPatchProperties(Guid? tenantId = default, Azure.ResourceManager.KeyVault.Models.KeyVaultSku sku = default, System.Collections.Generic.IEnumerable<Azure.ResourceManager.KeyVault.Models.KeyVaultAccessPolicy> accessPolicies = default, bool? enabledForDeployment = default, bool? enabledForDiskEncryption = default, bool? enabledForTemplateDeployment = default, bool? enableSoftDelete = default, bool? enableRbacAuthorization = default, int? softDeleteRetentionInDays = default, Azure.ResourceManager.KeyVault.Models.KeyVaultPatchMode? createMode = default, bool? enablePurgeProtection = default, Azure.ResourceManager.KeyVault.Models.KeyVaultNetworkRuleSet networkRuleSet = default, string publicNetworkAccess = default);
static member KeyVaultPatchProperties : Nullable<Guid> * Azure.ResourceManager.KeyVault.Models.KeyVaultSku * seq<Azure.ResourceManager.KeyVault.Models.KeyVaultAccessPolicy> * Nullable<bool> * Nullable<bool> * Nullable<bool> * Nullable<bool> * Nullable<bool> * Nullable<int> * Nullable<Azure.ResourceManager.KeyVault.Models.KeyVaultPatchMode> * Nullable<bool> * Azure.ResourceManager.KeyVault.Models.KeyVaultNetworkRuleSet * string -> Azure.ResourceManager.KeyVault.Models.KeyVaultPatchProperties
Public Shared Function KeyVaultPatchProperties (Optional tenantId As Nullable(Of Guid) = Nothing, Optional sku As KeyVaultSku = Nothing, Optional accessPolicies As IEnumerable(Of KeyVaultAccessPolicy) = Nothing, Optional enabledForDeployment As Nullable(Of Boolean) = Nothing, Optional enabledForDiskEncryption As Nullable(Of Boolean) = Nothing, Optional enabledForTemplateDeployment As Nullable(Of Boolean) = Nothing, Optional enableSoftDelete As Nullable(Of Boolean) = Nothing, Optional enableRbacAuthorization As Nullable(Of Boolean) = Nothing, Optional softDeleteRetentionInDays As Nullable(Of Integer) = Nothing, Optional createMode As Nullable(Of KeyVaultPatchMode) = Nothing, Optional enablePurgeProtection As Nullable(Of Boolean) = Nothing, Optional networkRuleSet As KeyVaultNetworkRuleSet = Nothing, Optional publicNetworkAccess As String = Nothing) As KeyVaultPatchProperties

Parameters

tenantId
Nullable<Guid>

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

sku
KeyVaultSku

SKU details.

accessPolicies
IEnumerable<KeyVaultAccessPolicy>

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.

enabledForDeployment
Nullable<Boolean>

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

enabledForDiskEncryption
Nullable<Boolean>

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

enabledForTemplateDeployment
Nullable<Boolean>

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

enableSoftDelete
Nullable<Boolean>

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

enableRbacAuthorization
Nullable<Boolean>

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.

softDeleteRetentionInDays
Nullable<Int32>

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

createMode
Nullable<KeyVaultPatchMode>

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

enablePurgeProtection
Nullable<Boolean>

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.

networkRuleSet
KeyVaultNetworkRuleSet

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

publicNetworkAccess
String

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.

Returns

A new KeyVaultPatchProperties instance for mocking.

Applies to