Class: Google::Apis::ComputeBeta::LogConfigCounterOptions
- Inherits:
-
Object
- Object
- Google::Apis::ComputeBeta::LogConfigCounterOptions
- Defined in:
- generated/google/apis/compute_beta/classes.rb,
generated/google/apis/compute_beta/representations.rb,
generated/google/apis/compute_beta/representations.rb
Overview
Options for counters
Instance Attribute Summary collapse
-
#field ⇒ String
The field value to attribute.
-
#metric ⇒ String
The metric to update.
Instance Method Summary collapse
-
#initialize(**args) ⇒ LogConfigCounterOptions
constructor
A new instance of LogConfigCounterOptions.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ LogConfigCounterOptions
Returns a new instance of LogConfigCounterOptions
7016 7017 7018 |
# File 'generated/google/apis/compute_beta/classes.rb', line 7016 def initialize(**args) update!(**args) end |
Instance Attribute Details
#field ⇒ String
The field value to attribute.
Corresponds to the JSON property field
7009 7010 7011 |
# File 'generated/google/apis/compute_beta/classes.rb', line 7009 def field @field end |
#metric ⇒ String
The metric to update.
Corresponds to the JSON property metric
7014 7015 7016 |
# File 'generated/google/apis/compute_beta/classes.rb', line 7014 def metric @metric end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7021 7022 7023 7024 |
# File 'generated/google/apis/compute_beta/classes.rb', line 7021 def update!(**args) @field = args[:field] if args.key?(:field) @metric = args[:metric] if args.key?(:metric) end |