environments_api_security_runtime_config
Creates, updates, deletes, gets or lists a environments_api_security_runtime_config
resource.
Overview
Name | environments_api_security_runtime_config |
Type | Resource |
Id | google.apigee.environments_api_security_runtime_config |
Fields
Name | Datatype | Description |
---|---|---|
name | string | Name of the environment API Security Runtime configuration resource. Format: organizations/{org}/environments/{env}/apiSecurityRuntimeConfig |
location | array | A list of up to 5 Cloud Storage Blobs that contain SecurityActions. |
revisionId | string | Revision ID of the API Security Runtime configuration. The higher the value, the more recently the configuration was deployed. |
uid | string | Unique ID for the API Security Runtime configuration. The ID will only change if the environment is deleted and recreated. |
updateTime | string | Time that the API Security Runtime configuration was updated. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
organizations_environments_get_api_security_runtime_config | SELECT | environmentsId, organizationsId | Gets 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 }}';