environments_deployed_config
Creates, updates, deletes, gets or lists a environments_deployed_config
resource.
Overview
Name | environments_deployed_config |
Type | Resource |
Id | google.apigee.environments_deployed_config |
Fields
Name | Datatype | Description |
---|---|---|
name | string | Name of the environment configuration in the following format: organizations/{org}/environments/{env}/configs/{config} |
addonsConfig | object | RuntimeAddonsConfig defines the runtime configurations for add-ons in an environment. |
arcConfigLocation | string | The 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. |
createTime | string | Time that the environment configuration was created. |
dataCollectors | array | List of data collectors used by the deployments in the environment. |
debugMask | object | |
deploymentGroups | array | List of deployment groups in the environment. |
deployments | array | List of deployments in the environment. |
envScopedRevisionId | string | 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. |
featureFlags | object | Feature flags inherited from the organization and environment. |
flowhooks | array | List of flow hooks in the environment. |
forwardProxyUri | string | The 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. |
gatewayConfigLocation | string | The location for the gateway config blob as a URI, e.g. a Cloud Storage URI. This is only used by Envoy-based gateways. |
keystores | array | List of keystores in the environment. |
provider | string | Used by the Control plane to add context information to help detect the source of the document during diagnostics and debugging. |
pubsubTopic | string | Name of the PubSub topic for the environment. |
resourceReferences | array | List of resource references in the environment. |
resources | array | List of resource versions in the environment. |
revisionId | string | Revision ID of the environment configuration. The higher the value, the more recently the configuration was deployed. |
sequenceNumber | string | DEPRECATED: Use revision_id. |
targets | array | List of target servers in the environment. Disabled target servers are not displayed. |
traceConfig | object | NEXT ID: 8 RuntimeTraceConfig defines the configurations for distributed trace in an environment. |
uid | string | Unique ID for the environment configuration. The ID will only change if the environment is deleted and recreated. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
organizations_environments_get_deployed_config | SELECT | environmentsId, organizationsId | Gets the deployed configuration for an environment. |
SELECT
examples
Gets the deployed configuration for an environment.
SELECT
name,
addonsConfig,
arcConfigLocation,
createTime,
dataCollectors,
debugMask,
deploymentGroups,
deployments,
envScopedRevisionId,
featureFlags,
flowhooks,
forwardProxyUri,
gatewayConfigLocation,
keystores,
provider,
pubsubTopic,
resourceReferences,
resources,
revisionId,
sequenceNumber,
targets,
traceConfig,
uid
FROM google.apigee.environments_deployed_config
WHERE environmentsId = '{{ environmentsId }}'
AND organizationsId = '{{ organizationsId }}';