Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1AccessSet

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

Set action. For example, "Set" : "name" : "target.name", "success" : true, " value" : "default"

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudApigeeV1AccessSet

Returns a new instance of GoogleCloudApigeeV1AccessSet.



226
227
228
# File 'lib/google/apis/apigee_v1/classes.rb', line 226

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

Instance Attribute Details

#nameString

Corresponds to the JSON property name

Returns:

  • (String)


213
214
215
# File 'lib/google/apis/apigee_v1/classes.rb', line 213

def name
  @name
end

#successBoolean Also known as: success?

Corresponds to the JSON property success

Returns:

  • (Boolean)


218
219
220
# File 'lib/google/apis/apigee_v1/classes.rb', line 218

def success
  @success
end

#valueString

Corresponds to the JSON property value

Returns:

  • (String)


224
225
226
# File 'lib/google/apis/apigee_v1/classes.rb', line 224

def value
  @value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



231
232
233
234
235
# File 'lib/google/apis/apigee_v1/classes.rb', line 231

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