次の方法で共有


Identity コンストラクター

定義

オーバーロード

Identity()

Identity クラスの新しいインスタンスを初期化します。

Identity(String, String, String, IDictionary<String,UserAssignedIdentity>)

Identity クラスの新しいインスタンスを初期化します。

Identity()

Identity クラスの新しいインスタンスを初期化します。

public Identity ();
Public Sub New ()

適用対象

Identity(String, String, String, IDictionary<String,UserAssignedIdentity>)

Identity クラスの新しいインスタンスを初期化します。

public Identity (string type, string principalId = default, string tenantId = default, System.Collections.Generic.IDictionary<string,Microsoft.Azure.Management.Storage.Models.UserAssignedIdentity> userAssignedIdentities = default);
new Microsoft.Azure.Management.Storage.Models.Identity : string * string * string * System.Collections.Generic.IDictionary<string, Microsoft.Azure.Management.Storage.Models.UserAssignedIdentity> -> Microsoft.Azure.Management.Storage.Models.Identity
Public Sub New (type As String, Optional principalId As String = Nothing, Optional tenantId As String = Nothing, Optional userAssignedIdentities As IDictionary(Of String, UserAssignedIdentity) = Nothing)

パラメーター

type
String

ID の種類。 使用可能な値は、'None'、'SystemAssigned'、'UserAssigned'、'SystemAssigned、UserAssigned' です。

principalId
String

リソース ID のプリンシパル ID。

tenantId
String

リソースのテナント ID。

userAssignedIdentities
IDictionary<String,UserAssignedIdentity>

このストレージ アカウントで使用されるユーザー割り当て ID のセットを記述するキー値ペアの一覧を取得または設定します。 キーは、ID の ARM リソース識別子です。 ここで許可されているユーザー割り当て ID は 1 つだけです。

適用対象