Skip to main content

environments_api_security_runtime_config

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

Overview

Nameenvironments_api_security_runtime_config
TypeResource
Idgoogle.apigee.environments_api_security_runtime_config

Fields

NameDatatypeDescription
namestringName of the environment API Security Runtime configuration resource. Format: organizations/{org}/environments/{env}/apiSecurityRuntimeConfig
locationarrayA list of up to 5 Cloud Storage Blobs that contain SecurityActions.
revisionIdstringRevision ID of the API Security Runtime configuration. The higher the value, the more recently the configuration was deployed.
uidstringUnique ID for the API Security Runtime configuration. The ID will only change if the environment is deleted and recreated.
updateTimestringTime that the API Security Runtime configuration was updated.

Methods

NameAccessible byRequired ParamsDescription
organizations_environments_get_api_security_runtime_configSELECTenvironmentsId, organizationsIdGets the API Security runtime configuration for an environment. This named ApiSecurityRuntimeConfig to prevent conflicts with ApiSecurityConfig from addon config.

SELECT examples

Gets the API Security runtime configuration for an environment. This named ApiSecurityRuntimeConfig to prevent conflicts with ApiSecurityConfig from addon config.

SELECT
name,
location,
revisionId,
uid,
updateTime
FROM google.apigee.environments_api_security_runtime_config
WHERE environmentsId = '{{ environmentsId }}'
AND organizationsId = '{{ organizationsId }}';