Class: Google::Apis::SpannerV1::CounterOptions
- Inherits:
-
Object
- Object
- Google::Apis::SpannerV1::CounterOptions
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/spanner_v1/classes.rb,
generated/google/apis/spanner_v1/representations.rb,
generated/google/apis/spanner_v1/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 Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ CounterOptions
Returns a new instance of CounterOptions
1202 1203 1204 |
# File 'generated/google/apis/spanner_v1/classes.rb', line 1202 def initialize(**args) update!(**args) end |
Instance Attribute Details
#field ⇒ String
The field value to attribute.
Corresponds to the JSON property field
1200 1201 1202 |
# File 'generated/google/apis/spanner_v1/classes.rb', line 1200 def field @field end |
#metric ⇒ String
The metric to update.
Corresponds to the JSON property metric
1195 1196 1197 |
# File 'generated/google/apis/spanner_v1/classes.rb', line 1195 def metric @metric end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1207 1208 1209 1210 |
# File 'generated/google/apis/spanner_v1/classes.rb', line 1207 def update!(**args) @metric = args[:metric] if args.key?(:metric) @field = args[:field] if args.key?(:field) end |