class Google::Apis::ApigeeV1::GoogleCloudApigeeV1AccessSet

Set action. For example, “Set” : ` “name” : “target.name”, “success” : true, “ value” : “default” `

Attributes

name[RW]

Corresponds to the JSON property `name` @return [String]

success[RW]

Corresponds to the JSON property `success` @return [Boolean]

success?[RW]

Corresponds to the JSON property `success` @return [Boolean]

value[RW]

Corresponds to the JSON property `value` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/apigee_v1/classes.rb, line 226
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# 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