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.



1009
1010
1011
# File 'lib/google/apis/apigee_v1/classes.rb', line 1009

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>)


984
985
986
# File 'lib/google/apis/apigee_v1/classes.rb', line 984

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)


990
991
992
# File 'lib/google/apis/apigee_v1/classes.rb', line 990

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)


996
997
998
# File 'lib/google/apis/apigee_v1/classes.rb', line 996

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)


1002
1003
1004
# File 'lib/google/apis/apigee_v1/classes.rb', line 1002

def uid
  @uid
end

#update_timeString

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

Returns:

  • (String)


1007
1008
1009
# File 'lib/google/apis/apigee_v1/classes.rb', line 1007

def update_time
  @update_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1014
1015
1016
1017
1018
1019
1020
# File 'lib/google/apis/apigee_v1/classes.rb', line 1014

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