project_mapping
Creates, updates, deletes, gets or lists a project_mapping
resource.
Overview
Name | project_mapping |
Type | Resource |
Id | google.apigee.project_mapping |
Fields
The following fields are returned by SELECT
queries:
- organizations_get_project_mapping
Successful response
Name | Datatype | Description |
---|---|---|
location | string | Output only. The Google Cloud region where control plane data is located. For more information, see https://cloud.google.com/about/locations/. |
organization | string | Name of the Apigee organization. |
projectId | string | Google Cloud project associated with the Apigee organization |
projectIds | array | DEPRECATED: Use project_id . An Apigee Organization is mapped to a single project. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
organizations_get_project_mapping | select | organizationsId | Gets the project ID and region for an Apigee organization. |
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 |
---|---|---|
organizationsId | string |
SELECT
examples
- organizations_get_project_mapping
Gets the project ID and region for an Apigee organization.
SELECT
location,
organization,
projectId,
projectIds
FROM google.apigee.project_mapping
WHERE organizationsId = '{{ organizationsId }}' -- required;