Class: Google::Apis::DeploymentmanagerV2::LogConfigCounterOptions
- Inherits:
-
Object
- Object
- Google::Apis::DeploymentmanagerV2::LogConfigCounterOptions
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/deploymentmanager_v2/classes.rb,
generated/google/apis/deploymentmanager_v2/representations.rb,
generated/google/apis/deploymentmanager_v2/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 Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ LogConfigCounterOptions
Returns a new instance of LogConfigCounterOptions.
477 478 479 |
# File 'generated/google/apis/deploymentmanager_v2/classes.rb', line 477 def initialize(**args) update!(**args) end |
Instance Attribute Details
#field ⇒ String
The field value to attribute.
Corresponds to the JSON property field
470 471 472 |
# File 'generated/google/apis/deploymentmanager_v2/classes.rb', line 470 def field @field end |
#metric ⇒ String
The metric to update.
Corresponds to the JSON property metric
475 476 477 |
# File 'generated/google/apis/deploymentmanager_v2/classes.rb', line 475 def metric @metric end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
482 483 484 485 |
# File 'generated/google/apis/deploymentmanager_v2/classes.rb', line 482 def update!(**args) @field = args[:field] if args.key?(:field) @metric = args[:metric] if args.key?(:metric) end |