Class: Google::Apis::ServicecontrolV1::AttributeValue

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/servicecontrol_v1/classes.rb,
generated/google/apis/servicecontrol_v1/representations.rb,
generated/google/apis/servicecontrol_v1/representations.rb

Overview

The allowed types for [VALUE] in a [KEY]:[VALUE] attribute.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ AttributeValue

Returns a new instance of AttributeValue.



144
145
146
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 144

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

Instance Attribute Details

#bool_valueBoolean Also known as: bool_value?

A Boolean value represented by true or false. Corresponds to the JSON property boolValue

Returns:

  • (Boolean)


131
132
133
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 131

def bool_value
  @bool_value
end

#int_valueFixnum

A 64-bit signed integer. Corresponds to the JSON property intValue

Returns:

  • (Fixnum)


137
138
139
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 137

def int_value
  @int_value
end

#string_valueGoogle::Apis::ServicecontrolV1::TruncatableString

Represents a string that might be shortened to a specified length. Corresponds to the JSON property stringValue



142
143
144
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 142

def string_value
  @string_value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



149
150
151
152
153
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 149

def update!(**args)
  @bool_value = args[:bool_value] if args.key?(:bool_value)
  @int_value = args[:int_value] if args.key?(:int_value)
  @string_value = args[:string_value] if args.key?(:string_value)
end