api_security_runtime_config
Creates, updates, deletes, gets or lists an api_security_runtime_config
resource.
Overview
Name | api_security_runtime_config |
Type | Resource |
Id | google.apigee.api_security_runtime_config |
Fields
The following fields are returned by SELECT
queries:
- organizations_environments_get_api_security_runtime_config
Successful response
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 (int64) | 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 (google-datetime) | Time that the API Security Runtime configuration was updated. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
organizations_environments_get_api_security_runtime_config | select | organizationsId , environmentsId | Gets the API Security runtime configuration for an environment. This named ApiSecurityRuntimeConfig to prevent conflicts with ApiSecurityConfig from addon config. |
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 |
---|---|---|
environmentsId | string | |
organizationsId | string |
SELECT
examples
- organizations_environments_get_api_security_runtime_config
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.api_security_runtime_config
WHERE organizationsId = '{{ organizationsId }}' -- required
AND environmentsId = '{{ environmentsId }}' -- required;