Skip to main content

partners

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

Overview

Namepartners
TypeResource
Idazure_extras.management_partner.partners

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringIdentifier of the partner.
namestringName of the partner.
createdTimestring (date-time)This is the DateTime when the partner was created.
etagintegerType of the partner.
objectIdstringThis is the object id.
partnerIdstringThis is the partner id.
partnerNamestringThis is the partner name.
statestringThis is the partner state. Known values are: "Active" and "Deleted".
tenantIdstringThis is the tenant id.
typestringType of resource. "Microsoft.ManagementPartner/partners".
updatedTimestring (date-time)This is the DateTime when the partner was updated.
versionintegerThis is the version.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectGet a specific Partner. Get the management partner using the objectId and tenantId.

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

SELECT examples

Get a specific Partner. Get the management partner using the objectId and tenantId.

SELECT
id,
name,
createdTime,
etag,
objectId,
partnerId,
partnerName,
state,
tenantId,
type,
updatedTime,
version
FROM azure_extras.management_partner.partners
;