Skip to main content

deployed_ingress_config

Creates, updates, deletes, gets or lists a deployed_ingress_config resource.

Overview

Namedeployed_ingress_config
TypeResource
Idgoogle.apigee.deployed_ingress_config

Fields

NameDatatypeDescription
namestringName of the resource in the following format: organizations/{org}/deployedIngressConfig.
environmentGroupsarrayList of environment groups in the organization.
revisionCreateTimestringTime at which the IngressConfig revision was created.
revisionIdstringRevision 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

NameAccessible byRequired ParamsDescription
organizations_get_deployed_ingress_configSELECTorganizationsIdGets 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 }}';