Class: Google::Apis::ServicemanagementV1::CounterOptions

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

Overview

Options for counters

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

Returns a new instance of CounterOptions



3333
3334
3335
# File 'generated/google/apis/servicemanagement_v1/classes.rb', line 3333

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

Instance Attribute Details

#fieldString

The field value to attribute. Corresponds to the JSON property field

Returns:

  • (String)


3331
3332
3333
# File 'generated/google/apis/servicemanagement_v1/classes.rb', line 3331

def field
  @field
end

#metricString

The metric to update. Corresponds to the JSON property metric

Returns:

  • (String)


3326
3327
3328
# File 'generated/google/apis/servicemanagement_v1/classes.rb', line 3326

def metric
  @metric
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3338
3339
3340
3341
# File 'generated/google/apis/servicemanagement_v1/classes.rb', line 3338

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