IdentityInfo Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
IdentityInfo() |
Initializes a new instance of the IdentityInfo class. |
IdentityInfo(String, String, String, IDictionary<String,UserIdentityProperties>) |
Initializes a new instance of the IdentityInfo class. |
IdentityInfo()
Initializes a new instance of the IdentityInfo class.
public IdentityInfo ();
Public Sub New ()
Applies to
IdentityInfo(String, String, String, IDictionary<String,UserIdentityProperties>)
Initializes a new instance of the IdentityInfo class.
public IdentityInfo (string type = default, string principalId = default, string tenantId = default, System.Collections.Generic.IDictionary<string,Microsoft.Azure.Management.EventGrid.Models.UserIdentityProperties> userAssignedIdentities = default);
new Microsoft.Azure.Management.EventGrid.Models.IdentityInfo : string * string * string * System.Collections.Generic.IDictionary<string, Microsoft.Azure.Management.EventGrid.Models.UserIdentityProperties> -> Microsoft.Azure.Management.EventGrid.Models.IdentityInfo
Public Sub New (Optional type As String = Nothing, Optional principalId As String = Nothing, Optional tenantId As String = Nothing, Optional userAssignedIdentities As IDictionary(Of String, UserIdentityProperties) = Nothing)
Parameters
- type
- String
The type of managed identity used. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user-assigned identities. The type 'None' will remove any identity. Possible values include: 'None', 'SystemAssigned', 'UserAssigned', 'SystemAssigned, UserAssigned'
- principalId
- String
The principal ID of resource identity.
- tenantId
- String
The tenant ID of resource.
- userAssignedIdentities
- IDictionary<String,UserIdentityProperties>
The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'. This property is currently not used and reserved for future usage.