Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1AccessGet

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

Get action. For example, "Get" : "name" : "target.name", "value" : "default"

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudApigeeV1AccessGet

Returns a new instance of GoogleCloudApigeeV1AccessGet.



243
244
245
# File 'lib/google/apis/apigee_v1/classes.rb', line 243

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#nameString

Corresponds to the JSON property name

Returns:

  • (String)


236
237
238
# File 'lib/google/apis/apigee_v1/classes.rb', line 236

def name
  @name
end

#valueString

Corresponds to the JSON property value

Returns:

  • (String)


241
242
243
# File 'lib/google/apis/apigee_v1/classes.rb', line 241

def value
  @value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



248
249
250
251
# File 'lib/google/apis/apigee_v1/classes.rb', line 248

def update!(**args)
  @name = args[:name] if args.key?(:name)
  @value = args[:value] if args.key?(:value)
end