Class: Google::Apis::MonitoringV3::Option

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Option

Returns a new instance of Option.



1039
1040
1041
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1039

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

Instance Attribute Details

#nameString

The option's name. For example, "java_package". Corresponds to the JSON property name

Returns:

  • (String)


1037
1038
1039
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1037

def name
  @name
end

#valueHash<String,Object>

The option's value. For example, "com.google.protobuf". Corresponds to the JSON property value

Returns:

  • (Hash<String,Object>)


1032
1033
1034
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1032

def value
  @value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1044
1045
1046
1047
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1044

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