EncryptionSetIdentity コンストラクター
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
EncryptionSetIdentity() |
EncryptionSetIdentity クラスの新しいインスタンスを初期化します。 |
EncryptionSetIdentity(String, String, String, IDictionary<String,UserAssignedIdentitiesValue>) |
EncryptionSetIdentity クラスの新しいインスタンスを初期化します。 |
EncryptionSetIdentity()
EncryptionSetIdentity クラスの新しいインスタンスを初期化します。
public EncryptionSetIdentity ();
Public Sub New ()
適用対象
EncryptionSetIdentity(String, String, String, IDictionary<String,UserAssignedIdentitiesValue>)
EncryptionSetIdentity クラスの新しいインスタンスを初期化します。
public EncryptionSetIdentity (string type = default, string principalId = default, string tenantId = default, System.Collections.Generic.IDictionary<string,Microsoft.Azure.Management.Compute.Models.UserAssignedIdentitiesValue> userAssignedIdentities = default);
new Microsoft.Azure.Management.Compute.Models.EncryptionSetIdentity : string * string * string * System.Collections.Generic.IDictionary<string, Microsoft.Azure.Management.Compute.Models.UserAssignedIdentitiesValue> -> Microsoft.Azure.Management.Compute.Models.EncryptionSetIdentity
Public Sub New (Optional type As String = Nothing, Optional principalId As String = Nothing, Optional tenantId As String = Nothing, Optional userAssignedIdentities As IDictionary(Of String, UserAssignedIdentitiesValue) = Nothing)
パラメーター
- type
- String
DiskEncryptionSet によって使用されるマネージド ID の種類。 新しい作成では、SystemAssigned のみがサポートされます。 ディスク暗号化セットは、新しい Azure Active Directory テナントへのサブスクリプションの移行中に ID の種類 None で更新できます。これにより、暗号化されたリソースがキーにアクセスできなくなります。 使用可能な値は、'SystemAssigned'、'UserAssigned'、'SystemAssigned、UserAssigned'、'None' です。
- principalId
- String
マネージド ID リソースのオブジェクト ID。 リソースに systemAssigned(implicit) ID がある場合、これは PUT 要求の x-ms-identity-principal-id ヘッダーを介して ARM から RP に送信されます
- tenantId
- String
マネージド ID リソースのテナント ID。 リソースに systemAssigned(implicit) ID がある場合、これは PUT 要求の x-ms-client-tenant-id ヘッダーを介して ARM から RP に送信されます
- userAssignedIdentities
- IDictionary<String,UserAssignedIdentitiesValue>
ディスク暗号化セットに関連付けられているユーザー ID の一覧。 ユーザー ID ディクショナリ キーの参照は、'/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}' という形式の ARM リソース ID になります。
適用対象
Azure SDK for .NET