envgroup_config
Creates, updates, deletes, gets or lists an envgroup_config
resource.
Overview
Name | envgroup_config |
Type | Resource |
Id | google.apigee.envgroup_config |
Fields
The following fields are returned by SELECT
queries:
- organizations_envgroups_get_deployed_ingress_config
Successful response
Name | Datatype | Description |
---|---|---|
name | string | Name of the environment group in the following format: organizations/{org}/envgroups/{envgroup} . |
endpointChainingRules | array | A list of proxies in each deployment group for proxy chaining calls. |
hostnames | array | Host names for the environment group. |
location | string | When this message appears in the top-level IngressConfig, this field will be populated in lieu of the inlined routing_rules and hostnames fields. Some URL for downloading the full EnvironmentGroupConfig for this group. |
revisionId | string (int64) | Revision id that defines the ordering of the EnvironmentGroupConfig resource. The higher the revision, the more recently the configuration was deployed. |
routingRules | array | Ordered list of routing rules defining how traffic to this environment group's hostnames should be routed to different environments. |
uid | string | A unique id for the environment group config that will only change if the environment group is deleted and recreated. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
organizations_envgroups_get_deployed_ingress_config | select | organizationsId , envgroupsId | view | Gets the deployed ingress configuration for an environment group. |
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 |
---|---|---|
envgroupsId | string | |
organizationsId | string | |
view | string |
SELECT
examples
- organizations_envgroups_get_deployed_ingress_config
Gets the deployed ingress configuration for an environment group.
SELECT
name,
endpointChainingRules,
hostnames,
location,
revisionId,
routingRules,
uid
FROM google.apigee.envgroup_config
WHERE organizationsId = '{{ organizationsId }}' -- required
AND envgroupsId = '{{ envgroupsId }}' -- required
AND view = '{{ view }}';