DomainTopicEventSubscriptionsClient Interface

public interface DomainTopicEventSubscriptionsClient

An instance of this class provides access to all the operations defined in DomainTopicEventSubscriptionsClient.

Method Summary

Modifier and Type Method and Description
abstract SyncPoller<PollResult<EventSubscriptionInner>,EventSubscriptionInner> beginCreateOrUpdate(String resourceGroupName, String domainName, String topicName, String eventSubscriptionName, EventSubscriptionInner eventSubscriptionInfo)

Create or update a nested event subscription to a domain topic.

abstract SyncPoller<PollResult<EventSubscriptionInner>,EventSubscriptionInner> beginCreateOrUpdate(String resourceGroupName, String domainName, String topicName, String eventSubscriptionName, EventSubscriptionInner eventSubscriptionInfo, Context context)

Create or update a nested event subscription to a domain topic.

abstract SyncPoller<PollResult<Void>,Void> beginDelete(String resourceGroupName, String domainName, String topicName, String eventSubscriptionName)

Delete a nested event subscription for a domain topic.

abstract SyncPoller<PollResult<Void>,Void> beginDelete(String resourceGroupName, String domainName, String topicName, String eventSubscriptionName, Context context)

Delete a nested event subscription for a domain topic.

abstract SyncPoller<PollResult<EventSubscriptionInner>,EventSubscriptionInner> beginUpdate(String resourceGroupName, String domainName, String topicName, String eventSubscriptionName, EventSubscriptionUpdateParameters eventSubscriptionUpdateParameters)

Update a nested event subscription for a domain topic.

abstract SyncPoller<PollResult<EventSubscriptionInner>,EventSubscriptionInner> beginUpdate(String resourceGroupName, String domainName, String topicName, String eventSubscriptionName, EventSubscriptionUpdateParameters eventSubscriptionUpdateParameters, Context context)

Update a nested event subscription for a domain topic.

abstract EventSubscriptionInner createOrUpdate(String resourceGroupName, String domainName, String topicName, String eventSubscriptionName, EventSubscriptionInner eventSubscriptionInfo)

Create or update a nested event subscription to a domain topic.

abstract EventSubscriptionInner createOrUpdate(String resourceGroupName, String domainName, String topicName, String eventSubscriptionName, EventSubscriptionInner eventSubscriptionInfo, Context context)

Create or update a nested event subscription to a domain topic.

abstract void delete(String resourceGroupName, String domainName, String topicName, String eventSubscriptionName)

Delete a nested event subscription for a domain topic.

abstract void delete(String resourceGroupName, String domainName, String topicName, String eventSubscriptionName, Context context)

Delete a nested event subscription for a domain topic.

abstract EventSubscriptionInner get(String resourceGroupName, String domainName, String topicName, String eventSubscriptionName)

Get a nested event subscription for domain topic.

abstract DeliveryAttributeListResultInner getDeliveryAttributes(String resourceGroupName, String domainName, String topicName, String eventSubscriptionName)

Get delivery attributes for an event subscription for domain topic.

abstract Response<DeliveryAttributeListResultInner> getDeliveryAttributesWithResponse(String resourceGroupName, String domainName, String topicName, String eventSubscriptionName, Context context)

Get delivery attributes for an event subscription for domain topic.

abstract EventSubscriptionFullUrlInner getFullUrl(String resourceGroupName, String domainName, String topicName, String eventSubscriptionName)

Get full URL of a nested event subscription for domain topic.

abstract Response<EventSubscriptionFullUrlInner> getFullUrlWithResponse(String resourceGroupName, String domainName, String topicName, String eventSubscriptionName, Context context)

Get full URL of a nested event subscription for domain topic.

abstract Response<EventSubscriptionInner> getWithResponse(String resourceGroupName, String domainName, String topicName, String eventSubscriptionName, Context context)

Get a nested event subscription for domain topic.

abstract PagedIterable<EventSubscriptionInner> list(String resourceGroupName, String domainName, String topicName)

List all nested event subscriptions for a specific domain topic.

abstract PagedIterable<EventSubscriptionInner> list(String resourceGroupName, String domainName, String topicName, String filter, Integer top, Context context)

List all nested event subscriptions for a specific domain topic.

abstract EventSubscriptionInner update(String resourceGroupName, String domainName, String topicName, String eventSubscriptionName, EventSubscriptionUpdateParameters eventSubscriptionUpdateParameters)

Update a nested event subscription for a domain topic.

abstract EventSubscriptionInner update(String resourceGroupName, String domainName, String topicName, String eventSubscriptionName, EventSubscriptionUpdateParameters eventSubscriptionUpdateParameters, Context context)

Update a nested event subscription for a domain topic.

Method Details

beginCreateOrUpdate

public abstract SyncPoller,EventSubscriptionInner> beginCreateOrUpdate(String resourceGroupName, String domainName, String topicName, String eventSubscriptionName, EventSubscriptionInner eventSubscriptionInfo)

Create or update a nested event subscription to a domain topic. Asynchronously creates a new event subscription or updates an existing event subscription.

Parameters:

resourceGroupName - The name of the resource group within the user's subscription.
domainName - Name of the top level domain.
topicName - Name of the domain topic.
eventSubscriptionName - Name of the event subscription to be created. Event subscription names must be between 3 and 64 characters in length and use alphanumeric letters only.
eventSubscriptionInfo - Event subscription properties containing the destination and filter information.

Returns:

the SyncPoller<T,U> for polling of event Subscription.

beginCreateOrUpdate

public abstract SyncPoller,EventSubscriptionInner> beginCreateOrUpdate(String resourceGroupName, String domainName, String topicName, String eventSubscriptionName, EventSubscriptionInner eventSubscriptionInfo, Context context)

Create or update a nested event subscription to a domain topic. Asynchronously creates a new event subscription or updates an existing event subscription.

Parameters:

resourceGroupName - The name of the resource group within the user's subscription.
domainName - Name of the top level domain.
topicName - Name of the domain topic.
eventSubscriptionName - Name of the event subscription to be created. Event subscription names must be between 3 and 64 characters in length and use alphanumeric letters only.
eventSubscriptionInfo - Event subscription properties containing the destination and filter information.
context - The context to associate with this operation.

Returns:

the SyncPoller<T,U> for polling of event Subscription.

beginDelete

public abstract SyncPoller,Void> beginDelete(String resourceGroupName, String domainName, String topicName, String eventSubscriptionName)

Delete a nested event subscription for a domain topic. Delete a nested existing event subscription for a domain topic.

Parameters:

resourceGroupName - The name of the resource group within the user's subscription.
domainName - Name of the top level domain.
topicName - Name of the domain topic.
eventSubscriptionName - Name of the event subscription to be deleted.

Returns:

the SyncPoller<T,U> for polling of long-running operation.

beginDelete

public abstract SyncPoller,Void> beginDelete(String resourceGroupName, String domainName, String topicName, String eventSubscriptionName, Context context)

Delete a nested event subscription for a domain topic. Delete a nested existing event subscription for a domain topic.

Parameters:

resourceGroupName - The name of the resource group within the user's subscription.
domainName - Name of the top level domain.
topicName - Name of the domain topic.
eventSubscriptionName - Name of the event subscription to be deleted.
context - The context to associate with this operation.

Returns:

the SyncPoller<T,U> for polling of long-running operation.

beginUpdate

public abstract SyncPoller,EventSubscriptionInner> beginUpdate(String resourceGroupName, String domainName, String topicName, String eventSubscriptionName, EventSubscriptionUpdateParameters eventSubscriptionUpdateParameters)

Update a nested event subscription for a domain topic. Update an existing event subscription for a domain topic.

Parameters:

resourceGroupName - The name of the resource group within the user's subscription.
domainName - Name of the domain.
topicName - Name of the topic.
eventSubscriptionName - Name of the event subscription to be updated.
eventSubscriptionUpdateParameters - Updated event subscription information.

Returns:

the SyncPoller<T,U> for polling of event Subscription.

beginUpdate

public abstract SyncPoller,EventSubscriptionInner> beginUpdate(String resourceGroupName, String domainName, String topicName, String eventSubscriptionName, EventSubscriptionUpdateParameters eventSubscriptionUpdateParameters, Context context)

Update a nested event subscription for a domain topic. Update an existing event subscription for a domain topic.

Parameters:

resourceGroupName - The name of the resource group within the user's subscription.
domainName - Name of the domain.
topicName - Name of the topic.
eventSubscriptionName - Name of the event subscription to be updated.
eventSubscriptionUpdateParameters - Updated event subscription information.
context - The context to associate with this operation.

Returns:

the SyncPoller<T,U> for polling of event Subscription.

createOrUpdate

public abstract EventSubscriptionInner createOrUpdate(String resourceGroupName, String domainName, String topicName, String eventSubscriptionName, EventSubscriptionInner eventSubscriptionInfo)

Create or update a nested event subscription to a domain topic. Asynchronously creates a new event subscription or updates an existing event subscription.

Parameters:

resourceGroupName - The name of the resource group within the user's subscription.
domainName - Name of the top level domain.
topicName - Name of the domain topic.
eventSubscriptionName - Name of the event subscription to be created. Event subscription names must be between 3 and 64 characters in length and use alphanumeric letters only.
eventSubscriptionInfo - Event subscription properties containing the destination and filter information.

Returns:

event Subscription.

createOrUpdate

public abstract EventSubscriptionInner createOrUpdate(String resourceGroupName, String domainName, String topicName, String eventSubscriptionName, EventSubscriptionInner eventSubscriptionInfo, Context context)

Create or update a nested event subscription to a domain topic. Asynchronously creates a new event subscription or updates an existing event subscription.

Parameters:

resourceGroupName - The name of the resource group within the user's subscription.
domainName - Name of the top level domain.
topicName - Name of the domain topic.
eventSubscriptionName - Name of the event subscription to be created. Event subscription names must be between 3 and 64 characters in length and use alphanumeric letters only.
eventSubscriptionInfo - Event subscription properties containing the destination and filter information.
context - The context to associate with this operation.

Returns:

event Subscription.

delete

public abstract void delete(String resourceGroupName, String domainName, String topicName, String eventSubscriptionName)

Delete a nested event subscription for a domain topic. Delete a nested existing event subscription for a domain topic.

Parameters:

resourceGroupName - The name of the resource group within the user's subscription.
domainName - Name of the top level domain.
topicName - Name of the domain topic.
eventSubscriptionName - Name of the event subscription to be deleted.

delete

public abstract void delete(String resourceGroupName, String domainName, String topicName, String eventSubscriptionName, Context context)

Delete a nested event subscription for a domain topic. Delete a nested existing event subscription for a domain topic.

Parameters:

resourceGroupName - The name of the resource group within the user's subscription.
domainName - Name of the top level domain.
topicName - Name of the domain topic.
eventSubscriptionName - Name of the event subscription to be deleted.
context - The context to associate with this operation.

get

public abstract EventSubscriptionInner get(String resourceGroupName, String domainName, String topicName, String eventSubscriptionName)

Get a nested event subscription for domain topic. Get properties of a nested event subscription for a domain topic.

Parameters:

resourceGroupName - The name of the resource group within the user's subscription.
domainName - Name of the top level domain.
topicName - Name of the domain topic.
eventSubscriptionName - Name of the event subscription to be found.

Returns:

properties of a nested event subscription for a domain topic.

getDeliveryAttributes

public abstract DeliveryAttributeListResultInner getDeliveryAttributes(String resourceGroupName, String domainName, String topicName, String eventSubscriptionName)

Get delivery attributes for an event subscription for domain topic. Get all delivery attributes for an event subscription for domain topic.

Parameters:

resourceGroupName - The name of the resource group within the user's subscription.
domainName - Name of the top level domain.
topicName - Name of the domain topic.
eventSubscriptionName - Name of the event subscription.

Returns:

all delivery attributes for an event subscription for domain topic.

getDeliveryAttributesWithResponse

public abstract Response getDeliveryAttributesWithResponse(String resourceGroupName, String domainName, String topicName, String eventSubscriptionName, Context context)

Get delivery attributes for an event subscription for domain topic. Get all delivery attributes for an event subscription for domain topic.

Parameters:

resourceGroupName - The name of the resource group within the user's subscription.
domainName - Name of the top level domain.
topicName - Name of the domain topic.
eventSubscriptionName - Name of the event subscription.
context - The context to associate with this operation.

Returns:

all delivery attributes for an event subscription for domain topic along with Response<T>.

getFullUrl

public abstract EventSubscriptionFullUrlInner getFullUrl(String resourceGroupName, String domainName, String topicName, String eventSubscriptionName)

Get full URL of a nested event subscription for domain topic. Get the full endpoint URL for a nested event subscription for domain topic.

Parameters:

resourceGroupName - The name of the resource group within the user's subscription.
domainName - Name of the top level domain.
topicName - Name of the domain topic.
eventSubscriptionName - Name of the event subscription.

Returns:

the full endpoint URL for a nested event subscription for domain topic.

getFullUrlWithResponse

public abstract Response getFullUrlWithResponse(String resourceGroupName, String domainName, String topicName, String eventSubscriptionName, Context context)

Get full URL of a nested event subscription for domain topic. Get the full endpoint URL for a nested event subscription for domain topic.

Parameters:

resourceGroupName - The name of the resource group within the user's subscription.
domainName - Name of the top level domain.
topicName - Name of the domain topic.
eventSubscriptionName - Name of the event subscription.
context - The context to associate with this operation.

Returns:

the full endpoint URL for a nested event subscription for domain topic along with Response<T>.

getWithResponse

public abstract Response getWithResponse(String resourceGroupName, String domainName, String topicName, String eventSubscriptionName, Context context)

Get a nested event subscription for domain topic. Get properties of a nested event subscription for a domain topic.

Parameters:

resourceGroupName - The name of the resource group within the user's subscription.
domainName - Name of the top level domain.
topicName - Name of the domain topic.
eventSubscriptionName - Name of the event subscription to be found.
context - The context to associate with this operation.

Returns:

properties of a nested event subscription for a domain topic along with Response<T>.

list

public abstract PagedIterable list(String resourceGroupName, String domainName, String topicName)

List all nested event subscriptions for a specific domain topic. List all event subscriptions that have been created for a specific domain topic.

Parameters:

resourceGroupName - The name of the resource group within the user's subscription.
domainName - Name of the top level domain.
topicName - Name of the domain topic.

Returns:

result of the List EventSubscriptions operation as paginated response with PagedIterable<T>.

list

public abstract PagedIterable list(String resourceGroupName, String domainName, String topicName, String filter, Integer top, Context context)

List all nested event subscriptions for a specific domain topic. List all event subscriptions that have been created for a specific domain topic.

Parameters:

resourceGroupName - The name of the resource group within the user's subscription.
domainName - Name of the top level domain.
topicName - Name of the domain topic.
filter - The query used to filter the search results using OData syntax. Filtering is permitted on the 'name' property only and with limited number of OData operations. These operations are: the 'contains' function as well as the following logical operations: not, and, or, eq (for equal), and ne (for not equal). No arithmetic operations are supported. The following is a valid filter example: $filter=contains(namE, 'PATTERN') and name ne 'PATTERN-1'. The following is not a valid filter example: $filter=location eq 'westus'.
top - The number of results to return per page for the list operation. Valid range for top parameter is 1 to 100. If not specified, the default number of results to be returned is 20 items per page.
context - The context to associate with this operation.

Returns:

result of the List EventSubscriptions operation as paginated response with PagedIterable<T>.

update

public abstract EventSubscriptionInner update(String resourceGroupName, String domainName, String topicName, String eventSubscriptionName, EventSubscriptionUpdateParameters eventSubscriptionUpdateParameters)

Update a nested event subscription for a domain topic. Update an existing event subscription for a domain topic.

Parameters:

resourceGroupName - The name of the resource group within the user's subscription.
domainName - Name of the domain.
topicName - Name of the topic.
eventSubscriptionName - Name of the event subscription to be updated.
eventSubscriptionUpdateParameters - Updated event subscription information.

Returns:

event Subscription.

update

public abstract EventSubscriptionInner update(String resourceGroupName, String domainName, String topicName, String eventSubscriptionName, EventSubscriptionUpdateParameters eventSubscriptionUpdateParameters, Context context)

Update a nested event subscription for a domain topic. Update an existing event subscription for a domain topic.

Parameters:

resourceGroupName - The name of the resource group within the user's subscription.
domainName - Name of the domain.
topicName - Name of the topic.
eventSubscriptionName - Name of the event subscription to be updated.
eventSubscriptionUpdateParameters - Updated event subscription information.
context - The context to associate with this operation.

Returns:

event Subscription.

Applies to

Azure SDK for Java

Preview