EventSubscriptionIdentity Constructors

Definition

Overloads

EventSubscriptionIdentity()

Initializes a new instance of the EventSubscriptionIdentity class.

EventSubscriptionIdentity(String, String)

Initializes a new instance of the EventSubscriptionIdentity class.

EventSubscriptionIdentity()

Initializes a new instance of the EventSubscriptionIdentity class.

public EventSubscriptionIdentity ();
Public Sub New ()

Applies to

EventSubscriptionIdentity(String, String)

Initializes a new instance of the EventSubscriptionIdentity class.

public EventSubscriptionIdentity (string type = default, string userAssignedIdentity = default);
new Microsoft.Azure.Management.EventGrid.Models.EventSubscriptionIdentity : string * string -> Microsoft.Azure.Management.EventGrid.Models.EventSubscriptionIdentity
Public Sub New (Optional type As String = Nothing, Optional userAssignedIdentity As String = 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: 'SystemAssigned', 'UserAssigned'

userAssignedIdentity
String

The user identity associated with the resource.

Applies to