NamespaceTopicEventSubscriptionsOperations Class
Warning
DO NOT instantiate this class directly.
Instead, you should access the following operations through
<xref:namespace_topic_event_subscriptions> attribute.
- Inheritance
-
builtins.objectNamespaceTopicEventSubscriptionsOperations
Constructor
NamespaceTopicEventSubscriptionsOperations(*args, **kwargs)
Methods
begin_create_or_update |
Create or update an event subscription of a namespace topic. Asynchronously creates or updates an event subscription of a namespace topic with the specified parameters. Existing event subscriptions will be updated with this API. |
begin_delete |
Delete an event subscription of a namespace topic. Delete an existing event subscription of a namespace topic. |
begin_update |
Update event subscription of a namespace topic. Update an existing event subscription of a namespace topic. |
get |
Get an event subscription of a namespace topic. Get properties of an event subscription of a namespace topic. |
get_delivery_attributes |
Get delivery attributes for an event subscription of a namespace topic. Get all delivery attributes for an event subscription of a namespace topic. |
get_full_url |
Get full URL of an event subscription of a namespace topic. Get the full endpoint URL for an event subscription of a namespace topic. |
list_by_namespace_topic |
List event subscriptions of a namespace topic. List event subscriptions that belong to a specific namespace topic. |
begin_create_or_update
Create or update an event subscription of a namespace topic.
Asynchronously creates or updates an event subscription of a namespace topic with the specified parameters. Existing event subscriptions will be updated with this API.
begin_create_or_update(resource_group_name: str, namespace_name: str, topic_name: str, event_subscription_name: str, event_subscription_info: _models.Subscription, *, content_type: str = 'application/json', **kwargs: Any) -> LROPoller[_models.Subscription]
Parameters
Name | Description |
---|---|
resource_group_name
Required
|
The name of the resource group within the user's subscription. Required. |
namespace_name
Required
|
Name of the namespace. Required. |
topic_name
Required
|
Name of the namespace topic. Required. |
event_subscription_name
Required
|
Name of the event subscription to be created. Event subscription names must be between 3 and 50 characters in length and use alphanumeric letters only. Required. |
event_subscription_info
Required
|
Event subscription properties containing the delivery mode, filter information, and others. Is either a Subscription type or a IO[bytes] type. Required. |
Returns
Type | Description |
---|---|
An instance of LROPoller that returns either Subscription or the result of cls(response) |
Exceptions
Type | Description |
---|---|
begin_delete
Delete an event subscription of a namespace topic.
Delete an existing event subscription of a namespace topic.
begin_delete(resource_group_name: str, namespace_name: str, topic_name: str, event_subscription_name: str, **kwargs: Any) -> LROPoller[None]
Parameters
Name | Description |
---|---|
resource_group_name
Required
|
The name of the resource group within the user's subscription. Required. |
namespace_name
Required
|
Name of the namespace. Required. |
topic_name
Required
|
Name of the namespace topic. Required. |
event_subscription_name
Required
|
Name of the event subscription to be deleted. Required. |
Returns
Type | Description |
---|---|
An instance of LROPoller that returns either None or the result of cls(response) |
Exceptions
Type | Description |
---|---|
begin_update
Update event subscription of a namespace topic.
Update an existing event subscription of a namespace topic.
begin_update(resource_group_name: str, namespace_name: str, topic_name: str, event_subscription_name: str, event_subscription_update_parameters: _models.SubscriptionUpdateParameters, *, content_type: str = 'application/json', **kwargs: Any) -> LROPoller[_models.Subscription]
Parameters
Name | Description |
---|---|
resource_group_name
Required
|
The name of the resource group within the user's subscription. Required. |
namespace_name
Required
|
Name of the namespace. Required. |
topic_name
Required
|
Name of the namespace topic. Required. |
event_subscription_name
Required
|
Name of the event subscription to be updated. Required. |
event_subscription_update_parameters
Required
|
Updated event subscription information. Is either a SubscriptionUpdateParameters type or a IO[bytes] type. Required. |
Returns
Type | Description |
---|---|
An instance of LROPoller that returns either Subscription or the result of cls(response) |
Exceptions
Type | Description |
---|---|
get
Get an event subscription of a namespace topic.
Get properties of an event subscription of a namespace topic.
get(resource_group_name: str, namespace_name: str, topic_name: str, event_subscription_name: str, **kwargs: Any) -> Subscription
Parameters
Name | Description |
---|---|
resource_group_name
Required
|
The name of the resource group within the user's subscription. Required. |
namespace_name
Required
|
Name of the namespace. Required. |
topic_name
Required
|
Name of the namespace topic. Required. |
event_subscription_name
Required
|
Name of the event subscription to be found. Required. |
Returns
Type | Description |
---|---|
Subscription or the result of cls(response) |
Exceptions
Type | Description |
---|---|
get_delivery_attributes
Get delivery attributes for an event subscription of a namespace topic.
Get all delivery attributes for an event subscription of a namespace topic.
get_delivery_attributes(resource_group_name: str, namespace_name: str, topic_name: str, event_subscription_name: str, **kwargs: Any) -> DeliveryAttributeListResult
Parameters
Name | Description |
---|---|
resource_group_name
Required
|
The name of the resource group within the user's subscription. Required. |
namespace_name
Required
|
Name of the namespace. Required. |
topic_name
Required
|
Name of the namespace topic. Required. |
event_subscription_name
Required
|
Name of the event subscription. Required. |
Returns
Type | Description |
---|---|
DeliveryAttributeListResult or the result of cls(response) |
Exceptions
Type | Description |
---|---|
get_full_url
Get full URL of an event subscription of a namespace topic.
Get the full endpoint URL for an event subscription of a namespace topic.
get_full_url(resource_group_name: str, namespace_name: str, topic_name: str, event_subscription_name: str, **kwargs: Any) -> SubscriptionFullUrl
Parameters
Name | Description |
---|---|
resource_group_name
Required
|
The name of the resource group within the user's subscription. Required. |
namespace_name
Required
|
Name of the namespace. Required. |
topic_name
Required
|
Name of the namespace topic. Required. |
event_subscription_name
Required
|
Name of the event subscription. Required. |
Returns
Type | Description |
---|---|
SubscriptionFullUrl or the result of cls(response) |
Exceptions
Type | Description |
---|---|
list_by_namespace_topic
List event subscriptions of a namespace topic.
List event subscriptions that belong to a specific namespace topic.
list_by_namespace_topic(resource_group_name: str, namespace_name: str, topic_name: str, filter: str | None = None, top: int | None = None, **kwargs: Any) -> Iterable[Subscription]
Parameters
Name | Description |
---|---|
resource_group_name
Required
|
The name of the resource group within the user's subscription. Required. |
namespace_name
Required
|
Name of the namespace. Required. |
topic_name
Required
|
Name of the namespace topic. Required. |
filter
Required
|
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'. Default value is None. |
top
Required
|
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. Default value is None. |
Returns
Type | Description |
---|---|
An iterator like instance of either Subscription or the result of cls(response) |
Exceptions
Type | Description |
---|---|
Attributes
models
models = <module 'azure.mgmt.eventgrid.models' from 'C:\\hostedtoolcache\\windows\\Python\\3.11.9\\x64\\Lib\\site-packages\\azure\\mgmt\\eventgrid\\models\\__init__.py'>
Azure SDK for Python