partner
Creates, updates, deletes, gets or lists a partner
resource.
Overview
Name | partner |
Type | Resource |
Id | google.cloudcontrolspartner.partner |
Fields
Name | Datatype | Description |
---|---|---|
name | string | Identifier. The resource name of the partner. Format: organizations/{organization}/locations/{location}/partner Example: "organizations/123456/locations/us-central1/partner" |
createTime | string | Output only. Time the resource was created |
ekmSolutions | array | List of Google Cloud supported EKM partners supported by the partner |
operatedCloudRegions | array | List of Google Cloud regions that the partner sells services to customers. Valid Google Cloud regions found here: https://cloud.google.com/compute/docs/regions-zones |
partnerProjectId | string | Google Cloud project ID in the partner's Google Cloud organization for receiving enhanced Logs for Partners. |
skus | array | List of SKUs the partner is offering |
updateTime | string | Output only. The last time the resource was updated |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get_partner | SELECT | locationsId, organizationsId | Get details of a Partner. |
SELECT
examples
Get details of a Partner.
SELECT
name,
createTime,
ekmSolutions,
operatedCloudRegions,
partnerProjectId,
skus,
updateTime
FROM google.cloudcontrolspartner.partner
WHERE locationsId = '{{ locationsId }}'
AND organizationsId = '{{ organizationsId }}';