runtime_config
Creates, updates, deletes, gets or lists a runtime_config
resource.
Overview
Name | runtime_config |
Type | Resource |
Id | google.apigee.runtime_config |
Fields
The following fields are returned by SELECT
queries:
- organizations_get_runtime_config
Successful response
Name | Datatype | Description |
---|---|---|
name | string | Name of the resource in the following format: organizations/{org}/runtimeConfig . |
analyticsBucket | string | Cloud Storage bucket used for uploading Analytics records. |
tenantProjectId | string | Output only. Tenant project ID associated with the Apigee organization. The tenant project is used to host Google-managed resources that are dedicated to this Apigee organization. Clients have limited access to resources within the tenant project used to support Apigee runtime instances. Access to the tenant project is managed using SetSyncAuthorization. It can be empty if the tenant project hasn't been created yet. |
traceBucket | string | Cloud Storage bucket used for uploading Trace records. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
organizations_get_runtime_config | select | organizationsId | Get runtime config for an 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_runtime_config
Get runtime config for an organization.
SELECT
name,
analyticsBucket,
tenantProjectId,
traceBucket
FROM google.apigee.runtime_config
WHERE organizationsId = '{{ organizationsId }}' -- required;