你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

VaultProperties 构造函数

定义

重载

VaultProperties()

初始化 VaultProperties 类的新实例。

VaultProperties(Guid, Sku, IList<AccessPolicyEntry>, String, Nullable<Boolean>, Nullable<Boolean>, Nullable<Boolean>, Nullable<Boolean>, Nullable<Int32>, Nullable<Boolean>, Nullable<CreateMode>, Nullable<Boolean>, NetworkRuleSet, IList<PrivateEndpointConnectionItem>)

初始化 VaultProperties 类的新实例。

VaultProperties()

初始化 VaultProperties 类的新实例。

public VaultProperties ();
Public Sub New ()

适用于

VaultProperties(Guid, Sku, IList<AccessPolicyEntry>, String, Nullable<Boolean>, Nullable<Boolean>, Nullable<Boolean>, Nullable<Boolean>, Nullable<Int32>, Nullable<Boolean>, Nullable<CreateMode>, Nullable<Boolean>, NetworkRuleSet, IList<PrivateEndpointConnectionItem>)

初始化 VaultProperties 类的新实例。

public VaultProperties (Guid tenantId, Microsoft.Azure.Management.KeyVault.Models.Sku sku, System.Collections.Generic.IList<Microsoft.Azure.Management.KeyVault.Models.AccessPolicyEntry> accessPolicies = default, string vaultUri = default, bool? enabledForDeployment = default, bool? enabledForDiskEncryption = default, bool? enabledForTemplateDeployment = default, bool? enableSoftDelete = default, int? softDeleteRetentionInDays = default, bool? enableRbacAuthorization = default, Microsoft.Azure.Management.KeyVault.Models.CreateMode? createMode = default, bool? enablePurgeProtection = default, Microsoft.Azure.Management.KeyVault.Models.NetworkRuleSet networkAcls = default, System.Collections.Generic.IList<Microsoft.Azure.Management.KeyVault.Models.PrivateEndpointConnectionItem> privateEndpointConnections = default);
new Microsoft.Azure.Management.KeyVault.Models.VaultProperties : Guid * Microsoft.Azure.Management.KeyVault.Models.Sku * System.Collections.Generic.IList<Microsoft.Azure.Management.KeyVault.Models.AccessPolicyEntry> * string * Nullable<bool> * Nullable<bool> * Nullable<bool> * Nullable<bool> * Nullable<int> * Nullable<bool> * Nullable<Microsoft.Azure.Management.KeyVault.Models.CreateMode> * Nullable<bool> * Microsoft.Azure.Management.KeyVault.Models.NetworkRuleSet * System.Collections.Generic.IList<Microsoft.Azure.Management.KeyVault.Models.PrivateEndpointConnectionItem> -> Microsoft.Azure.Management.KeyVault.Models.VaultProperties
Public Sub New (tenantId As Guid, sku As Sku, Optional accessPolicies As IList(Of AccessPolicyEntry) = Nothing, Optional vaultUri As String = 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 softDeleteRetentionInDays As Nullable(Of Integer) = Nothing, Optional enableRbacAuthorization As Nullable(Of Boolean) = Nothing, Optional createMode As Nullable(Of CreateMode) = Nothing, Optional enablePurgeProtection As Nullable(Of Boolean) = Nothing, Optional networkAcls As NetworkRuleSet = Nothing, Optional privateEndpointConnections As IList(Of PrivateEndpointConnectionItem) = Nothing)

参数

tenantId
Guid

应用于对密钥保管库的请求进行身份验证的 Azure Active Directory 租户 ID。

sku
Sku

SKU 详细信息

accessPolicies
IList<AccessPolicyEntry>

0 到 1024 个标识的数组,这些标识有权访问密钥保管库。 数组中的所有标识都必须使用与密钥保管库的租户 ID 相同的租户 ID。 当 设置为 recovercreateMode,不需要访问策略。 否则,需要访问策略。

vaultUri
String

用于对密钥和机密执行操作的保管库的 URI。

enabledForDeployment
Nullable<Boolean>

用于指定是否允许 Azure 虚拟机从密钥保管库检索存储为机密的证书的属性。

enabledForDiskEncryption
Nullable<Boolean>

用于指定是否允许 Azure 磁盘加密从保管库检索机密和解包密钥的属性。

enabledForTemplateDeployment
Nullable<Boolean>

用于指定是否允许 Azure 资源管理器 从密钥保管库检索机密的属性。

enableSoftDelete
Nullable<Boolean>

用于指定是否为此密钥保管库启用“软删除”功能的属性。 如果在创建新的密钥保管库时,它未设置为任何值 (true 或 false) ,则默认情况下,该值将设置为 true。 设置为 true 后,无法将其还原为 false。

softDeleteRetentionInDays
Nullable<Int32>

softDelete 数据保留天数。 它接受 >=7 和 <=90。

enableRbacAuthorization
Nullable<Boolean>

控制如何授权数据操作的属性。 如果为 true,密钥保管库将使用基于角色访问控制 (RBAC) 来授权数据操作,并且保管库属性中指定的访问策略将被忽略 (警告:这是) 的预览功能。 如果为 false,则密钥保管库将使用保管库属性中指定的访问策略,存储在 Azure 资源管理器 上的任何策略将被忽略。 如果为 null 或未指定,则会使用默认值 false 创建保管库。 请注意,管理操作始终使用 RBAC 授权。

createMode
Nullable<CreateMode>

保管库的创建模式,用于指示是否需要恢复保管库。 可能的值包括:“recover”、“default”

enablePurgeProtection
Nullable<Boolean>

指定是否为此保管库启用清除防护的属性。 将此属性设置为 true 可激活针对此保管库及其内容的清除保护 - 只有密钥保管库服务可能会启动不可恢复的硬删除。 仅当还启用了软删除时,此设置才有效。 启用此功能是不可逆的 - 也就是说,属性不接受 false 作为其值。

networkAcls
NetworkRuleSet

管理来自特定网络位置的密钥保管库可访问性的规则。

privateEndpointConnections
IList<PrivateEndpointConnectionItem>

与密钥保管库关联的专用终结点连接列表。

适用于