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

The following fields are returned by SELECT queries:

Successful response

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

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
organizations_get_runtime_configselectorganizationsIdGet 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.

NameDatatypeDescription
organizationsIdstring

SELECT examples

Get runtime config for an organization.

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