Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ApiSecurityRuntimeConfig
- Inherits:
-
Object
- Object
- Google::Apis::ApigeeV1::GoogleCloudApigeeV1ApiSecurityRuntimeConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/apigee_v1/classes.rb,
lib/google/apis/apigee_v1/representations.rb,
lib/google/apis/apigee_v1/representations.rb
Overview
Response for GetApiSecurityRuntimeConfig[EnvironmentService. GetApiSecurityRuntimeConfig].
Instance Attribute Summary collapse
-
#location ⇒ Array<String>
A list of up to 5 Cloud Storage Blobs that contain SecurityActions.
-
#name ⇒ String
Name of the environment API Security Runtime configuration resource.
-
#revision_id ⇒ Fixnum
Revision ID of the API Security Runtime configuration.
-
#uid ⇒ String
Unique ID for the API Security Runtime configuration.
-
#update_time ⇒ String
Time that the API Security Runtime configuration was updated.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudApigeeV1ApiSecurityRuntimeConfig
constructor
A new instance of GoogleCloudApigeeV1ApiSecurityRuntimeConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudApigeeV1ApiSecurityRuntimeConfig
Returns a new instance of GoogleCloudApigeeV1ApiSecurityRuntimeConfig.
1374 1375 1376 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 1374 def initialize(**args) update!(**args) end |
Instance Attribute Details
#location ⇒ Array<String>
A list of up to 5 Cloud Storage Blobs that contain SecurityActions.
Corresponds to the JSON property location
1349 1350 1351 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 1349 def location @location end |
#name ⇒ String
Name of the environment API Security Runtime configuration resource. Format:
organizations/
org/environments/
env/apiSecurityRuntimeConfig
Corresponds to the JSON property name
1355 1356 1357 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 1355 def name @name end |
#revision_id ⇒ Fixnum
Revision ID of the API Security Runtime configuration. The higher the value,
the more recently the configuration was deployed.
Corresponds to the JSON property revisionId
1361 1362 1363 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 1361 def revision_id @revision_id end |
#uid ⇒ String
Unique ID for the API Security Runtime configuration. The ID will only change
if the environment is deleted and recreated.
Corresponds to the JSON property uid
1367 1368 1369 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 1367 def uid @uid end |
#update_time ⇒ String
Time that the API Security Runtime configuration was updated.
Corresponds to the JSON property updateTime
1372 1373 1374 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 1372 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1379 1380 1381 1382 1383 1384 1385 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 1379 def update!(**args) @location = args[:location] if args.key?(:location) @name = args[:name] if args.key?(:name) @revision_id = args[:revision_id] if args.key?(:revision_id) @uid = args[:uid] if args.key?(:uid) @update_time = args[:update_time] if args.key?(:update_time) end |