partner
Creates, updates, deletes, gets or lists a partner
resource.
Overview
Name | partner |
Type | Resource |
Id | google.cloudcontrolspartner.partner |
Fields
The following fields are returned by SELECT
queries:
- get_partner
Successful response
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 (google-datetime) | 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 (google-datetime) | Output only. The last time the resource was updated |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get_partner | select | organizationsId , locationsId | Get details of a Partner. |
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 |
---|---|---|
locationsId | string | |
organizationsId | string |
SELECT
examples
- get_partner
Get details of a Partner.
SELECT
name,
createTime,
ekmSolutions,
operatedCloudRegions,
partnerProjectId,
skus,
updateTime
FROM google.cloudcontrolspartner.partner
WHERE organizationsId = '{{ organizationsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required;