Class: Google::Apis::MonitoringV3::Option
- Inherits:
-
Object
- Object
- Google::Apis::MonitoringV3::Option
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/monitoring_v3/classes.rb,
generated/google/apis/monitoring_v3/representations.rb,
generated/google/apis/monitoring_v3/representations.rb
Overview
A protocol buffer option, which can be attached to a message, field, enumeration, etc.
Instance Attribute Summary collapse
-
#name ⇒ String
The option's name.
-
#value ⇒ Hash<String,Object>
The option's value.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Option
constructor
A new instance of Option.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Option
Returns a new instance of Option.
1050 1051 1052 |
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1050 def initialize(**args) update!(**args) end |
Instance Attribute Details
#name ⇒ String
The option's name. For example, "java_package".
Corresponds to the JSON property name
1048 1049 1050 |
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1048 def name @name end |
#value ⇒ Hash<String,Object>
The option's value. For example, "com.google.protobuf".
Corresponds to the JSON property value
1043 1044 1045 |
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1043 def value @value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1055 1056 1057 1058 |
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1055 def update!(**args) @value = args[:value] if args.key?(:value) @name = args[:name] if args.key?(:name) end |