Skip to main content

customers

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

Overview

Namecustomers
TypeResource
Idgoogle.cloudcontrolspartner.customers

Fields

NameDatatypeDescription
namestringIdentifier. Format: organizations/{organization}/locations/{location}/customers/{customer}
customerOnboardingStateobjectContainer for customer onboarding steps
displayNamestringRequired. Display name for the customer
isOnboardedbooleanOutput only. Indicates whether a customer is fully onboarded

Methods

NameAccessible byRequired ParamsDescription
getSELECTcustomersId, locationsId, organizationsIdGets details of a single customer
listSELECTlocationsId, organizationsIdLists customers of a partner identified by its Google Cloud organization ID

SELECT examples

Lists customers of a partner identified by its Google Cloud organization ID

SELECT
name,
customerOnboardingState,
displayName,
isOnboarded
FROM google.cloudcontrolspartner.customers
WHERE locationsId = '{{ locationsId }}'
AND organizationsId = '{{ organizationsId }}';