Class: Google::Apis::CloudkmsV1beta1::CounterOptions
- Inherits:
-
Object
- Object
- Google::Apis::CloudkmsV1beta1::CounterOptions
- Defined in:
- generated/google/apis/cloudkms_v1beta1/classes.rb,
generated/google/apis/cloudkms_v1beta1/representations.rb,
generated/google/apis/cloudkms_v1beta1/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) ⇒ CounterOptions
constructor
A new instance of CounterOptions.
-
#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) ⇒ CounterOptions
Returns a new instance of CounterOptions
565 566 567 |
# File 'generated/google/apis/cloudkms_v1beta1/classes.rb', line 565 def initialize(**args) update!(**args) end |
Instance Attribute Details
#field ⇒ String
The field value to attribute.
Corresponds to the JSON property field
563 564 565 |
# File 'generated/google/apis/cloudkms_v1beta1/classes.rb', line 563 def field @field end |
#metric ⇒ String
The metric to update.
Corresponds to the JSON property metric
558 559 560 |
# File 'generated/google/apis/cloudkms_v1beta1/classes.rb', line 558 def metric @metric end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
570 571 572 573 |
# File 'generated/google/apis/cloudkms_v1beta1/classes.rb', line 570 def update!(**args) @metric = args[:metric] if args.key?(:metric) @field = args[:field] if args.key?(:field) end |