customers
Creates, updates, deletes, gets or lists a customers
resource.
Overview
Name | customers |
Type | Resource |
Id | google.cloudcontrolspartner.customers |
Fields
Name | Datatype | Description |
---|---|---|
name | string | Identifier. Format: organizations/{organization}/locations/{location}/customers/{customer} |
customerOnboardingState | object | Container for customer onboarding steps |
displayName | string | Required. Display name for the customer |
isOnboarded | boolean | Output only. Indicates whether a customer is fully onboarded |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | customersId, locationsId, organizationsId | Gets details of a single customer |
list | SELECT | locationsId, organizationsId | Lists 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 }}';