VerifiedPartnersOperations Class

Warning

DO NOT instantiate this class directly.

Instead, you should access the following operations through

EventGridManagementClient's

<xref:verified_partners> attribute.

Inheritance
builtins.object
VerifiedPartnersOperations

Constructor

VerifiedPartnersOperations(*args, **kwargs)

Methods

get

Get a verified partner.

Get properties of a verified partner.

list

List all verified partners.

Get a list of all verified partners.

get

Get a verified partner.

Get properties of a verified partner.

async get(verified_partner_name: str, **kwargs: Any) -> VerifiedPartner

Parameters

Name Description
verified_partner_name
Required
str

Name of the verified partner. Required.

Returns

Type Description

VerifiedPartner or the result of cls(response)

Exceptions

Type Description

list

List all verified partners.

Get a list of all verified partners.

list(filter: str | None = None, top: int | None = None, **kwargs: Any) -> AsyncIterable[VerifiedPartner]

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 VerifiedPartner 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'>