Skip to main content

runtime_config

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

Overview

Nameruntime_config
TypeResource
Idgoogle.apigee.runtime_config

Fields

NameDatatypeDescription
namestringName of the resource in the following format: organizations/{org}/runtimeConfig.
analyticsBucketstringCloud Storage bucket used for uploading Analytics records.
tenantProjectIdstringOutput 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.
traceBucketstringCloud Storage bucket used for uploading Trace records.

Methods

NameAccessible byRequired ParamsDescription
organizations_get_runtime_configSELECTorganizationsIdGet runtime config for an organization.

SELECT examples

Get runtime config for an organization.

SELECT
name,
analyticsBucket,
tenantProjectId,
traceBucket
FROM google.apigee.runtime_config
WHERE organizationsId = '{{ organizationsId }}';