次の方法で共有


BatchAccountIdentity コンストラクター

定義

オーバーロード

BatchAccountIdentity()

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

BatchAccountIdentity(ResourceIdentityType, IDictionary<String,BatchAccountIdentityUserAssignedIdentitiesValue>)
古い.
BatchAccountIdentity(ResourceIdentityType, IDictionary<String,UserAssignedIdentities>)
BatchAccountIdentity(ResourceIdentityType, String, String, IDictionary<String,UserAssignedIdentities>)

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

BatchAccountIdentity()

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

public BatchAccountIdentity ();
Public Sub New ()

適用対象

BatchAccountIdentity(ResourceIdentityType, IDictionary<String,BatchAccountIdentityUserAssignedIdentitiesValue>)

注意事項

Please use BatchAccountIdentity(ResourceIdentityType type, IDictionary<string, UserAssignedIdentities> userAssignedIdentities) instead.

[System.Obsolete("Please use BatchAccountIdentity(ResourceIdentityType type, IDictionary<string, UserAssignedIdentities> userAssignedIdentities) instead.")]
public BatchAccountIdentity (Microsoft.Azure.Management.Batch.Models.ResourceIdentityType type, System.Collections.Generic.IDictionary<string,Microsoft.Azure.Management.Batch.Models.BatchAccountIdentityUserAssignedIdentitiesValue> userAssignedIdentities);
[<System.Obsolete("Please use BatchAccountIdentity(ResourceIdentityType type, IDictionary<string, UserAssignedIdentities> userAssignedIdentities) instead.")>]
new Microsoft.Azure.Management.Batch.Models.BatchAccountIdentity : Microsoft.Azure.Management.Batch.Models.ResourceIdentityType * System.Collections.Generic.IDictionary<string, Microsoft.Azure.Management.Batch.Models.BatchAccountIdentityUserAssignedIdentitiesValue> -> Microsoft.Azure.Management.Batch.Models.BatchAccountIdentity
Public Sub New (type As ResourceIdentityType, userAssignedIdentities As IDictionary(Of String, BatchAccountIdentityUserAssignedIdentitiesValue))

パラメーター

属性

適用対象

BatchAccountIdentity(ResourceIdentityType, IDictionary<String,UserAssignedIdentities>)

public BatchAccountIdentity (Microsoft.Azure.Management.Batch.Models.ResourceIdentityType type, System.Collections.Generic.IDictionary<string,Microsoft.Azure.Management.Batch.Models.UserAssignedIdentities> userAssignedIdentities);
new Microsoft.Azure.Management.Batch.Models.BatchAccountIdentity : Microsoft.Azure.Management.Batch.Models.ResourceIdentityType * System.Collections.Generic.IDictionary<string, Microsoft.Azure.Management.Batch.Models.UserAssignedIdentities> -> Microsoft.Azure.Management.Batch.Models.BatchAccountIdentity
Public Sub New (type As ResourceIdentityType, userAssignedIdentities As IDictionary(Of String, UserAssignedIdentities))

パラメーター

userAssignedIdentities
IDictionary<String,UserAssignedIdentities>

適用対象

BatchAccountIdentity(ResourceIdentityType, String, String, IDictionary<String,UserAssignedIdentities>)

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

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

パラメーター

type
ResourceIdentityType

Batch アカウントに使用される ID の種類。 使用可能な値は、'SystemAssigned'、'UserAssigned'、'None' です。

principalId
String

Batch アカウントのプリンシパル ID。 このプロパティは、システム割り当て ID に対してのみ提供されます。

tenantId
String

Batch アカウントに関連付けられているテナント ID。 このプロパティは、システム割り当て ID に対してのみ提供されます。

userAssignedIdentities
IDictionary<String,UserAssignedIdentities>

Batch アカウントに関連付けられているユーザー ID の一覧。

適用対象