Class: Google::Apis::DeploymentmanagerV2::LogConfigCounterOptions

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ LogConfigCounterOptions

Returns a new instance of LogConfigCounterOptions



532
533
534
# File 'generated/google/apis/deploymentmanager_v2/classes.rb', line 532

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

Instance Attribute Details

#fieldString

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

Returns:

  • (String)


525
526
527
# File 'generated/google/apis/deploymentmanager_v2/classes.rb', line 525

def field
  @field
end

#metricString

The metric to update. Corresponds to the JSON property metric

Returns:

  • (String)


530
531
532
# File 'generated/google/apis/deploymentmanager_v2/classes.rb', line 530

def metric
  @metric
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



537
538
539
540
# File 'generated/google/apis/deploymentmanager_v2/classes.rb', line 537

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