partners
Creates, updates, deletes, gets or lists a partners resource.
Overview
| Name | partners |
| Type | Resource |
| Id | azure_extras.management_partner.partners |
Fields
The following fields are returned by SELECT queries:
- get
| Name | Datatype | Description |
|---|---|---|
id | string | Identifier of the partner. |
name | string | Name of the partner. |
createdTime | string (date-time) | This is the DateTime when the partner was created. |
etag | integer | Type of the partner. |
objectId | string | This is the object id. |
partnerId | string | This is the partner id. |
partnerName | string | This is the partner name. |
state | string | This is the partner state. Known values are: "Active" and "Deleted". |
tenantId | string | This is the tenant id. |
type | string | Type of resource. "Microsoft.ManagementPartner/partners". |
updatedTime | string (date-time) | This is the DateTime when the partner was updated. |
version | integer | This is the version. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | Get 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.
| Name | Datatype | Description |
|---|
SELECT examples
- get
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
;