PartnerDestinationsOperations Class

Warning

DO NOT instantiate this class directly.

Instead, you should access the following operations through

EventGridManagementClient's

<xref:partner_destinations> attribute.

Constructor

PartnerDestinationsOperations(*args, **kwargs)

Methods

activate

Activate a partner destination.

Activate a newly created partner destination.

begin_create_or_update

Create a partner destination.

Asynchronously creates a new partner destination with the specified parameters.

begin_delete

Delete a partner destination.

Delete existing partner destination.

begin_update

Update a partner destination.

Asynchronously updates a partner destination with the specified parameters.

get

Get a partner destination.

Get properties of a partner destination.

list_by_resource_group

List partner destinations under a resource group.

List all the partner destinations under a resource group.

list_by_subscription

List partner destinations under an Azure subscription.

List all the partner destinations under an Azure subscription.

activate

Activate a partner destination.

Activate a newly created partner destination.

async activate(resource_group_name: str, partner_destination_name: str, **kwargs: Any) -> PartnerDestination

Parameters

Name Description
resource_group_name
Required
str

The name of the resource group. The name is case insensitive. Required.

partner_destination_name
Required
str

Name of the partner destination. Required.

Returns

Type Description

PartnerDestination. The PartnerDestination is compatible with MutableMapping

Exceptions

Type Description

begin_create_or_update

Create a partner destination.

Asynchronously creates a new partner destination with the specified parameters.

async begin_create_or_update(resource_group_name: str, partner_destination_name: str, partner_destination: _models.PartnerDestination, *, content_type: str = 'application/json', **kwargs: Any) -> AsyncLROPoller[_models.PartnerDestination]

Parameters

Name Description
resource_group_name
Required
str

The name of the resource group. The name is case insensitive. Required.

partner_destination_name
Required
str

Name of the partner destination. Required.

partner_destination
Required
PartnerDestination or <xref:JSON> or IO[bytes]

Partner destination create information. Is one of the following types: PartnerDestination, JSON, IO[bytes] Required.

Returns

Type Description

An instance of AsyncLROPoller that returns PartnerDestination. The PartnerDestination is compatible with MutableMapping

Exceptions

Type Description

begin_delete

Delete a partner destination.

Delete existing partner destination.

async begin_delete(resource_group_name: str, partner_destination_name: str, **kwargs: Any) -> AsyncLROPoller[None]

Parameters

Name Description
resource_group_name
Required
str

The name of the resource group. The name is case insensitive. Required.

partner_destination_name
Required
str

Name of the partner destination. Required.

Returns

Type Description

An instance of AsyncLROPoller that returns None

Exceptions

Type Description

begin_update

Update a partner destination.

Asynchronously updates a partner destination with the specified parameters.

async begin_update(resource_group_name: str, partner_destination_name: str, partner_destination_update_parameters: _models.PartnerDestinationUpdateParameters, *, content_type: str = 'application/json', **kwargs: Any) -> AsyncLROPoller[_models.PartnerDestination]

Parameters

Name Description
resource_group_name
Required
str

The name of the resource group. The name is case insensitive. Required.

partner_destination_name
Required
str

Name of the partner destination. Required.

partner_destination_update_parameters
Required

Partner destination update information. Is one of the following types: PartnerDestinationUpdateParameters, JSON, IO[bytes] Required.

Returns

Type Description

An instance of AsyncLROPoller that returns PartnerDestination. The PartnerDestination is compatible with MutableMapping

Exceptions

Type Description

get

Get a partner destination.

Get properties of a partner destination.

async get(resource_group_name: str, partner_destination_name: str, **kwargs: Any) -> PartnerDestination

Parameters

Name Description
resource_group_name
Required
str

The name of the resource group. The name is case insensitive. Required.

partner_destination_name
Required
str

Name of the partner destination. Required.

Returns

Type Description

PartnerDestination. The PartnerDestination is compatible with MutableMapping

Exceptions

Type Description

list_by_resource_group

List partner destinations under a resource group.

List all the partner destinations under a resource group.

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

Parameters

Name Description
resource_group_name
Required
str

The name of the resource group. The name is case insensitive. Required.

Keyword-Only Parameters

Name Description
filter
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.

Default value: None
top
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.

Default value: None

Returns

Type Description

An iterator like instance of PartnerDestination

Exceptions

Type Description

list_by_subscription

List partner destinations under an Azure subscription.

List all the partner destinations under an Azure subscription.

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

Keyword-Only Parameters

Name Description
filter
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.

Default value: None
top
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.

Default value: None

Returns

Type Description

An iterator like instance of PartnerDestination

Exceptions

Type Description