Share via


SystemTopicEventSubscriptionCollection.CreateOrUpdateAsync Method

Definition

Asynchronously creates or updates an event subscription with the specified parameters. Existing event subscriptions will be updated with this API.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventGrid/systemTopics/{systemTopicName}/eventSubscriptions/{eventSubscriptionName}
  • Operation Id: SystemTopicEventSubscriptions_CreateOrUpdate
public virtual System.Threading.Tasks.Task<Azure.ResourceManager.ArmOperation<Azure.ResourceManager.EventGrid.SystemTopicEventSubscriptionResource>> CreateOrUpdateAsync (Azure.WaitUntil waitUntil, string eventSubscriptionName, Azure.ResourceManager.EventGrid.EventGridSubscriptionData data, System.Threading.CancellationToken cancellationToken = default);
abstract member CreateOrUpdateAsync : Azure.WaitUntil * string * Azure.ResourceManager.EventGrid.EventGridSubscriptionData * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.ResourceManager.ArmOperation<Azure.ResourceManager.EventGrid.SystemTopicEventSubscriptionResource>>
override this.CreateOrUpdateAsync : Azure.WaitUntil * string * Azure.ResourceManager.EventGrid.EventGridSubscriptionData * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.ResourceManager.ArmOperation<Azure.ResourceManager.EventGrid.SystemTopicEventSubscriptionResource>>
Public Overridable Function CreateOrUpdateAsync (waitUntil As WaitUntil, eventSubscriptionName As String, data As EventGridSubscriptionData, Optional cancellationToken As CancellationToken = Nothing) As Task(Of ArmOperation(Of SystemTopicEventSubscriptionResource))

Parameters

waitUntil
WaitUntil

Completed if the method should wait to return until the long-running operation has completed on the service; Started if it should return after starting the operation. For more information on long-running operations, please see Azure.Core Long-Running Operation samples.

eventSubscriptionName
String

Name of the event subscription to be created. Event subscription names must be between 3 and 100 characters in length and use alphanumeric letters only.

data
EventGridSubscriptionData

Event subscription properties containing the destination and filter information.

cancellationToken
CancellationToken

The cancellation token to use.

Returns

Exceptions

eventSubscriptionName is an empty string, and was expected to be non-empty.

eventSubscriptionName or data is null.

Applies to