envgroups_deployed_ingress_config
Creates, updates, deletes, gets or lists a envgroups_deployed_ingress_config
resource.
Overview
Name | envgroups_deployed_ingress_config |
Type | Resource |
Id | google.apigee.envgroups_deployed_ingress_config |
Fields
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 | 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
Name | Accessible by | Required Params | Description |
---|---|---|---|
organizations_envgroups_get_deployed_ingress_config | SELECT | envgroupsId, organizationsId | Gets the deployed ingress configuration for an environment group. |
SELECT
examples
Gets the deployed ingress configuration for an environment group.
SELECT
name,
endpointChainingRules,
hostnames,
location,
revisionId,
routingRules,
uid
FROM google.apigee.envgroups_deployed_ingress_config
WHERE envgroupsId = '{{ envgroupsId }}'
AND organizationsId = '{{ organizationsId }}';