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.



1050
1051
1052
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1050

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)


1048
1049
1050
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1048

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>)


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