Skip to main content

ingress_config

Creates, updates, deletes, gets or lists an ingress_config resource.

Overview

Nameingress_config
TypeResource
Idgoogle.apigee.ingress_config

Fields

The following fields are returned by SELECT queries:

Successful response

NameDatatypeDescription
namestringName of the resource in the following format: organizations/{org}/deployedIngressConfig.
environmentGroupsarrayList of environment groups in the organization.
revisionCreateTimestring (google-datetime)Time at which the IngressConfig revision was created.
revisionIdstring (int64)Revision id that defines the ordering on IngressConfig resources. The higher the revision, the more recently the configuration was deployed.
uidstringA 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:

NameAccessible byRequired ParamsOptional ParamsDescription
organizations_get_deployed_ingress_configselectorganizationsIdviewGets 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.

NameDatatypeDescription
organizationsIdstring
viewstring

SELECT examples

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 }}';