Class: Google::Apis::MlV1::GoogleIamV1LogConfigCounterOptions

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/ml_v1/classes.rb,
generated/google/apis/ml_v1/representations.rb,
generated/google/apis/ml_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) ⇒ GoogleIamV1LogConfigCounterOptions

Returns a new instance of GoogleIamV1LogConfigCounterOptions



2315
2316
2317
# File 'generated/google/apis/ml_v1/classes.rb', line 2315

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

Instance Attribute Details

#fieldString

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

Returns:

  • (String)


2313
2314
2315
# File 'generated/google/apis/ml_v1/classes.rb', line 2313

def field
  @field
end

#metricString

The metric to update. Corresponds to the JSON property metric

Returns:

  • (String)


2308
2309
2310
# File 'generated/google/apis/ml_v1/classes.rb', line 2308

def metric
  @metric
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2320
2321
2322
2323
# File 'generated/google/apis/ml_v1/classes.rb', line 2320

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