Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ApiSecurityRuntimeConfig

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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

#locationArray<String>

A list of up to 5 Cloud Storage Blobs that contain SecurityActions. Corresponds to the JSON property location

Returns:

  • (Array<String>)


1349
1350
1351
# File 'lib/google/apis/apigee_v1/classes.rb', line 1349

def location
  @location
end

#nameString

Name of the environment API Security Runtime configuration resource. Format: organizations/org/environments/env/apiSecurityRuntimeConfig Corresponds to the JSON property name

Returns:

  • (String)


1355
1356
1357
# File 'lib/google/apis/apigee_v1/classes.rb', line 1355

def name
  @name
end

#revision_idFixnum

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

Returns:

  • (Fixnum)


1361
1362
1363
# File 'lib/google/apis/apigee_v1/classes.rb', line 1361

def revision_id
  @revision_id
end

#uidString

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

Returns:

  • (String)


1367
1368
1369
# File 'lib/google/apis/apigee_v1/classes.rb', line 1367

def uid
  @uid
end

#update_timeString

Time that the API Security Runtime configuration was updated. Corresponds to the JSON property updateTime

Returns:

  • (String)


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