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.
1534 1535 1536 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 1534 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
1509 1510 1511 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 1509 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
1515 1516 1517 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 1515 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
1521 1522 1523 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 1521 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
1527 1528 1529 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 1527 def uid @uid end |
#update_time ⇒ String
Time that the API Security Runtime configuration was updated.
Corresponds to the JSON property updateTime
1532 1533 1534 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 1532 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1539 1540 1541 1542 1543 1544 1545 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 1539 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 |