Skip to main content

partner

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

Overview

Namepartner
TypeResource
Idgoogle.cloudcontrolspartner.partner

Fields

The following fields are returned by SELECT queries:

Successful response

NameDatatypeDescription
namestringIdentifier. The resource name of the partner. Format: organizations/{organization}/locations/{location}/partner Example: "organizations/123456/locations/us-central1/partner"
createTimestring (google-datetime)Output only. Time the resource was created
ekmSolutionsarrayList of Google Cloud supported EKM partners supported by the partner
operatedCloudRegionsarrayList 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
partnerProjectIdstringGoogle Cloud project ID in the partner's Google Cloud organization for receiving enhanced Logs for Partners.
skusarrayList of SKUs the partner is offering
updateTimestring (google-datetime)Output only. The last time the resource was updated

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_partnerselectorganizationsId, locationsIdGet 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.

NameDatatypeDescription
locationsIdstring
organizationsIdstring

SELECT examples

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;