Class: Google::Apis::ServicenetworkingV1beta::EnumValue
- Inherits:
-
Object
- Object
- Google::Apis::ServicenetworkingV1beta::EnumValue
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/servicenetworking_v1beta/classes.rb,
lib/google/apis/servicenetworking_v1beta/representations.rb,
lib/google/apis/servicenetworking_v1beta/representations.rb
Overview
Enum value definition.
Instance Attribute Summary collapse
-
#name ⇒ String
Enum value name.
-
#number ⇒ Fixnum
Enum value number.
-
#options ⇒ Array<Google::Apis::ServicenetworkingV1beta::Option>
Protocol buffer options.
Instance Method Summary collapse
-
#initialize(**args) ⇒ EnumValue
constructor
A new instance of EnumValue.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ EnumValue
Returns a new instance of EnumValue.
1569 1570 1571 |
# File 'lib/google/apis/servicenetworking_v1beta/classes.rb', line 1569 def initialize(**args) update!(**args) end |
Instance Attribute Details
#name ⇒ String
Enum value name.
Corresponds to the JSON property name
1557 1558 1559 |
# File 'lib/google/apis/servicenetworking_v1beta/classes.rb', line 1557 def name @name end |
#number ⇒ Fixnum
Enum value number.
Corresponds to the JSON property number
1562 1563 1564 |
# File 'lib/google/apis/servicenetworking_v1beta/classes.rb', line 1562 def number @number end |
#options ⇒ Array<Google::Apis::ServicenetworkingV1beta::Option>
Protocol buffer options.
Corresponds to the JSON property options
1567 1568 1569 |
# File 'lib/google/apis/servicenetworking_v1beta/classes.rb', line 1567 def @options end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1574 1575 1576 1577 1578 |
# File 'lib/google/apis/servicenetworking_v1beta/classes.rb', line 1574 def update!(**args) @name = args[:name] if args.key?(:name) @number = args[:number] if args.key?(:number) @options = args[:options] if args.key?(:options) end |