deployed_ingress_config
Creates, updates, deletes, gets or lists a deployed_ingress_config
resource.
Overview
Name | deployed_ingress_config |
Type | Resource |
Id | google.apigee.deployed_ingress_config |
Fields
Name | Datatype | Description |
---|---|---|
name | string | Name of the resource in the following format: organizations/{org}/deployedIngressConfig . |
environmentGroups | array | List of environment groups in the organization. |
revisionCreateTime | string | Time at which the IngressConfig revision was created. |
revisionId | string | Revision id that defines the ordering on IngressConfig resources. The higher the revision, the more recently the configuration was deployed. |
uid | string | A unique id for the ingress config that will only change if the organization is deleted and recreated. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
organizations_get_deployed_ingress_config | SELECT | organizationsId | Gets the deployed ingress configuration for an organization. |
SELECT
examples
Gets the deployed ingress configuration for an organization.
SELECT
name,
environmentGroups,
revisionCreateTime,
revisionId,
uid
FROM google.apigee.deployed_ingress_config
WHERE organizationsId = '{{ organizationsId }}';