Skip to main content

verified_partners

Creates, updates, deletes, gets or lists a verified_partners resource.

Overview

Nameverified_partners
TypeResource
Idazure.event_grid.verified_partners

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringFully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}.
namestringThe name of the resource.
organizationNamestringOfficial name of the Partner.
partnerDestinationDetailsobjectDetails of the partner destination scenario.
partnerDisplayNamestringDisplay name of the verified partner.
partnerRegistrationImmutableIdstringImmutableId of the corresponding partner registration.
partnerTopicDetailsobjectDetails of the partner topic scenario.
provisioningStatestringProvisioning state of the verified partner. Known values are: "Creating", "Updating", "Deleting", "Succeeded", "Canceled", and "Failed". (Creating, Updating, Deleting, Succeeded, Canceled, Failed)
systemDataobjectAzure Resource Manager metadata containing createdBy and modifiedBy information.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts".

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectverified_partner_nameGet a verified partner. Get properties of a verified partner.
listselect$filter, $topList all verified partners. Get a list of all verified partners.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
verified_partner_namestringName of the verified partner. Required.
$filterstringThe 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.
$topintegerThe 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.

SELECT examples

Get a verified partner. Get properties of a verified partner.

SELECT
id,
name,
organizationName,
partnerDestinationDetails,
partnerDisplayName,
partnerRegistrationImmutableId,
partnerTopicDetails,
provisioningState,
systemData,
type
FROM azure.event_grid.verified_partners
WHERE verified_partner_name = '{{ verified_partner_name }}' -- required
;