ingress_config
Creates, updates, deletes, gets or lists an ingress_config
resource.
Overview
Name | ingress_config |
Type | Resource |
Id | google.apigee.ingress_config |
Fields
The following fields are returned by SELECT
queries:
- organizations_get_deployed_ingress_config
Successful response
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 (google-datetime) | Time at which the IngressConfig revision was created. |
revisionId | string (int64) | 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
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
organizations_get_deployed_ingress_config | select | organizationsId | view | Gets the deployed ingress configuration for an organization. |
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 |
---|---|---|
organizationsId | string | |
view | string |
SELECT
examples
- organizations_get_deployed_ingress_config
Gets the deployed ingress configuration for an organization.
SELECT
name,
environmentGroups,
revisionCreateTime,
revisionId,
uid
FROM google.apigee.ingress_config
WHERE organizationsId = '{{ organizationsId }}' -- required
AND view = '{{ view }}';