EventSubscriptionUpdateParameters 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
EventSubscriptionUpdateParameters() |
Initializes a new instance of the EventSubscriptionUpdateParameters class. |
EventSubscriptionUpdateParameters(EventSubscriptionDestination, DeliveryWithResourceIdentity, EventSubscriptionFilter, IList<String>, Nullable<DateTime>, String, RetryPolicy, DeadLetterDestination, DeadLetterWithResourceIdentity) |
Initializes a new instance of the EventSubscriptionUpdateParameters class. |
EventSubscriptionUpdateParameters()
Initializes a new instance of the EventSubscriptionUpdateParameters class.
public EventSubscriptionUpdateParameters ();
Public Sub New ()
Applies to
EventSubscriptionUpdateParameters(EventSubscriptionDestination, DeliveryWithResourceIdentity, EventSubscriptionFilter, IList<String>, Nullable<DateTime>, String, RetryPolicy, DeadLetterDestination, DeadLetterWithResourceIdentity)
Initializes a new instance of the EventSubscriptionUpdateParameters class.
public EventSubscriptionUpdateParameters (Microsoft.Azure.Management.EventGrid.Models.EventSubscriptionDestination destination = default, Microsoft.Azure.Management.EventGrid.Models.DeliveryWithResourceIdentity deliveryWithResourceIdentity = default, Microsoft.Azure.Management.EventGrid.Models.EventSubscriptionFilter filter = default, System.Collections.Generic.IList<string> labels = default, DateTime? expirationTimeUtc = default, string eventDeliverySchema = default, Microsoft.Azure.Management.EventGrid.Models.RetryPolicy retryPolicy = default, Microsoft.Azure.Management.EventGrid.Models.DeadLetterDestination deadLetterDestination = default, Microsoft.Azure.Management.EventGrid.Models.DeadLetterWithResourceIdentity deadLetterWithResourceIdentity = default);
new Microsoft.Azure.Management.EventGrid.Models.EventSubscriptionUpdateParameters : Microsoft.Azure.Management.EventGrid.Models.EventSubscriptionDestination * Microsoft.Azure.Management.EventGrid.Models.DeliveryWithResourceIdentity * Microsoft.Azure.Management.EventGrid.Models.EventSubscriptionFilter * System.Collections.Generic.IList<string> * Nullable<DateTime> * string * Microsoft.Azure.Management.EventGrid.Models.RetryPolicy * Microsoft.Azure.Management.EventGrid.Models.DeadLetterDestination * Microsoft.Azure.Management.EventGrid.Models.DeadLetterWithResourceIdentity -> Microsoft.Azure.Management.EventGrid.Models.EventSubscriptionUpdateParameters
Public Sub New (Optional destination As EventSubscriptionDestination = Nothing, Optional deliveryWithResourceIdentity As DeliveryWithResourceIdentity = Nothing, Optional filter As EventSubscriptionFilter = Nothing, Optional labels As IList(Of String) = Nothing, Optional expirationTimeUtc As Nullable(Of DateTime) = Nothing, Optional eventDeliverySchema As String = Nothing, Optional retryPolicy As RetryPolicy = Nothing, Optional deadLetterDestination As DeadLetterDestination = Nothing, Optional deadLetterWithResourceIdentity As DeadLetterWithResourceIdentity = Nothing)
Parameters
- destination
- EventSubscriptionDestination
Information about the destination where events have to be delivered for the event subscription. Uses Azure Event Grid's identity to acquire the authentication tokens being used during delivery / dead-lettering.
- deliveryWithResourceIdentity
- DeliveryWithResourceIdentity
Information about the destination where events have to be delivered for the event subscription. Uses the managed identity setup on the parent resource (topic / domain) to acquire the authentication tokens being used during delivery / dead-lettering.
- filter
- EventSubscriptionFilter
Information about the filter for the event subscription.
Information about the expiration time for the event subscription.
- eventDeliverySchema
- String
The event delivery schema for the event subscription. Possible values include: 'EventGridSchema', 'CustomInputSchema', 'CloudEventSchemaV1_0'
- retryPolicy
- RetryPolicy
The retry policy for events. This can be used to configure maximum number of delivery attempts and time to live for events.
- deadLetterDestination
- DeadLetterDestination
The dead letter destination of the event subscription. Any event that cannot be delivered to its' destination is sent to the dead letter destination. Uses Azure Event Grid's identity to acquire the authentication tokens being used during delivery / dead-lettering.
- deadLetterWithResourceIdentity
- DeadLetterWithResourceIdentity
The dead letter destination of the event subscription. Any event that cannot be delivered to its' destination is sent to the dead letter destination. Uses the managed identity setup on the parent resource (topic / domain) to acquire the authentication tokens being used during delivery / dead-lettering.
Applies to
Azure SDK for .NET