Skip to main content

environment_config

Creates, updates, deletes, gets or lists an environment_config resource.

Overview

Nameenvironment_config
TypeResource
Idgoogle.apigee.environment_config

Fields

The following fields are returned by SELECT queries:

Successful response

NameDatatypeDescription
namestringName of the environment configuration in the following format: organizations/{org}/environments/{env}/configs/{config}
addonsConfigobjectThe latest runtime configurations for add-ons. (id: GoogleCloudApigeeV1RuntimeAddonsConfig)
arcConfigLocationstringThe location for the config blob of API Runtime Control, aka Envoy Adapter, for op-based authentication as a URI, e.g. a Cloud Storage URI. This is only used by Envoy-based gateways.
clientIpResolutionConfigobjectThe algorithm to resolve IP. (id: GoogleCloudApigeeV1EnvironmentConfigClientIPResolutionConfig)
createTimestring (google-datetime)Time that the environment configuration was created.
dataCollectorsarrayList of data collectors used by the deployments in the environment.
debugMaskobjectDebug mask that applies to all deployments in the environment. (id: GoogleCloudApigeeV1DebugMask)
deploymentGroupsarrayList of deployment groups in the environment.
deploymentsarrayList of deployments in the environment.
envScopedRevisionIdstring (int64)Revision ID for environment-scoped resources (e.g. target servers, keystores) in this config. This ID will increment any time a resource not scoped to a deployment group changes.
featureFlagsobjectFeature flags inherited from the organization and environment.
flowhooksarrayList of flow hooks in the environment.
forwardProxyUristringThe forward proxy's url to be used by the runtime. When set, runtime will send requests to the target via the given forward proxy. This is only used by programmable gateways.
gatewayConfigLocationstringThe location for the gateway config blob as a URI, e.g. a Cloud Storage URI. This is only used by Envoy-based gateways.
keystoresarrayList of keystores in the environment.
providerstringUsed by the Control plane to add context information to help detect the source of the document during diagnostics and debugging.
pubsubTopicstringName of the PubSub topic for the environment.
resourceReferencesarrayList of resource references in the environment.
resourcesarrayList of resource versions in the environment.
revisionIdstring (int64)Revision ID of the environment configuration. The higher the value, the more recently the configuration was deployed.
sequenceNumberstring (int64)DEPRECATED: Use revision_id.
targetsarrayList of target servers in the environment. Disabled target servers are not displayed.
traceConfigobjectTrace configurations. Contains config for the environment and config overrides for specific API proxies. (id: GoogleCloudApigeeV1RuntimeTraceConfig)
uidstringUnique ID for the environment configuration. The ID will only change if the environment is deleted and recreated.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
organizations_environments_get_deployed_configselectorganizationsId, environmentsIdGets the deployed configuration for an environment.

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
environmentsIdstring
organizationsIdstring

SELECT examples

Gets the deployed configuration for an environment.

SELECT
name,
addonsConfig,
arcConfigLocation,
clientIpResolutionConfig,
createTime,
dataCollectors,
debugMask,
deploymentGroups,
deployments,
envScopedRevisionId,
featureFlags,
flowhooks,
forwardProxyUri,
gatewayConfigLocation,
keystores,
provider,
pubsubTopic,
resourceReferences,
resources,
revisionId,
sequenceNumber,
targets,
traceConfig,
uid
FROM google.apigee.environment_config
WHERE organizationsId = '{{ organizationsId }}' -- required
AND environmentsId = '{{ environmentsId }}' -- required;