PartnerTopicsOperations Class

Warning

DO NOT instantiate this class directly.

Instead, you should access the following operations through

EventGridManagementClient's

<xref:partner_topics> attribute.

Inheritance
builtins.object
PartnerTopicsOperations

Constructor

PartnerTopicsOperations(*args, **kwargs)

Methods

activate

Activate a partner topic.

Activate a newly created partner topic.

begin_delete

Delete a partner topic.

Delete existing partner topic.

create_or_update

Create a partner topic.

Asynchronously creates a new partner topic with the specified parameters.

deactivate

Deactivate a partner topic.

Deactivate specific partner topic.

get

Get a partner topic.

Get properties of a partner topic.

list_by_resource_group

List partner topics under a resource group.

List all the partner topics under a resource group.

list_by_subscription

List partner topics under an Azure subscription.

List all the partner topics under an Azure subscription.

update

Update a partner topic.

Asynchronously updates a partner topic with the specified parameters.

activate

Activate a partner topic.

Activate a newly created partner topic.

activate(resource_group_name: str, partner_topic_name: str, **kwargs: Any) -> PartnerTopic

Parameters

Name Description
resource_group_name
Required
str

The name of the resource group within the user's subscription. Required.

partner_topic_name
Required
str

Name of the partner topic. Required.

Returns

Type Description

PartnerTopic or the result of cls(response)

Exceptions

Type Description

begin_delete

Delete a partner topic.

Delete existing partner topic.

begin_delete(resource_group_name: str, partner_topic_name: str, **kwargs: Any) -> LROPoller[None]

Parameters

Name Description
resource_group_name
Required
str

The name of the resource group within the user's subscription. Required.

partner_topic_name
Required
str

Name of the partner topic. Required.

Returns

Type Description

An instance of LROPoller that returns either None or the result of cls(response)

Exceptions

Type Description

create_or_update

Create a partner topic.

Asynchronously creates a new partner topic with the specified parameters.

create_or_update(resource_group_name: str, partner_topic_name: str, partner_topic_info: _models.PartnerTopic, *, content_type: str = 'application/json', **kwargs: Any) -> _models.PartnerTopic

Parameters

Name Description
resource_group_name
Required
str

The name of the resource group within the user's subscription. Required.

partner_topic_name
Required
str

Name of the partner topic. Required.

partner_topic_info
Required

Partner Topic information. Is either a PartnerTopic type or a IO[bytes] type. Required.

Returns

Type Description

PartnerTopic or the result of cls(response)

Exceptions

Type Description

deactivate

Deactivate a partner topic.

Deactivate specific partner topic.

deactivate(resource_group_name: str, partner_topic_name: str, **kwargs: Any) -> PartnerTopic

Parameters

Name Description
resource_group_name
Required
str

The name of the resource group within the user's subscription. Required.

partner_topic_name
Required
str

Name of the partner topic. Required.

Returns

Type Description

PartnerTopic or the result of cls(response)

Exceptions

Type Description

get

Get a partner topic.

Get properties of a partner topic.

get(resource_group_name: str, partner_topic_name: str, **kwargs: Any) -> PartnerTopic

Parameters

Name Description
resource_group_name
Required
str

The name of the resource group within the user's subscription. Required.

partner_topic_name
Required
str

Name of the partner topic. Required.

Returns

Type Description

PartnerTopic or the result of cls(response)

Exceptions

Type Description

list_by_resource_group

List partner topics under a resource group.

List all the partner topics under a resource group.

list_by_resource_group(resource_group_name: str, filter: str | None = None, top: int | None = None, **kwargs: Any) -> Iterable[PartnerTopic]

Parameters

Name Description
resource_group_name
Required
str

The name of the resource group within the user's subscription. Required.

filter
Required
str

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
int

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 PartnerTopic or the result of cls(response)

Exceptions

Type Description

list_by_subscription

List partner topics under an Azure subscription.

List all the partner topics under an Azure subscription.

list_by_subscription(filter: str | None = None, top: int | None = None, **kwargs: Any) -> Iterable[PartnerTopic]

Parameters

Name Description
filter
Required
str

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
int

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 PartnerTopic or the result of cls(response)

Exceptions

Type Description

update

Update a partner topic.

Asynchronously updates a partner topic with the specified parameters.

update(resource_group_name: str, partner_topic_name: str, partner_topic_update_parameters: _models.PartnerTopicUpdateParameters, *, content_type: str = 'application/json', **kwargs: Any) -> _models.PartnerTopic | None

Parameters

Name Description
resource_group_name
Required
str

The name of the resource group within the user's subscription. Required.

partner_topic_name
Required
str

Name of the partner topic. Required.

partner_topic_update_parameters
Required

PartnerTopic update information. Is either a PartnerTopicUpdateParameters type or a IO[bytes] type. Required.

Returns

Type Description

PartnerTopic or None 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'>