Class: Google::Apis::DataflowV1b3::CounterMetadata

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/dataflow_v1b3/classes.rb,
generated/google/apis/dataflow_v1b3/representations.rb,
generated/google/apis/dataflow_v1b3/representations.rb

Overview

CounterMetadata includes all static non-name non-value counter attributes.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ CounterMetadata

Returns a new instance of CounterMetadata.



574
575
576
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 574

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

Instance Attribute Details

#descriptionString

Human-readable description of the counter semantics. Corresponds to the JSON property description

Returns:

  • (String)


557
558
559
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 557

def description
  @description
end

#kindString

Counter aggregation kind. Corresponds to the JSON property kind

Returns:

  • (String)


562
563
564
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 562

def kind
  @kind
end

#other_unitsString

A string referring to the unit type. Corresponds to the JSON property otherUnits

Returns:

  • (String)


567
568
569
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 567

def other_units
  @other_units
end

#standard_unitsString

System defined Units, see above enum. Corresponds to the JSON property standardUnits

Returns:

  • (String)


572
573
574
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 572

def standard_units
  @standard_units
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



579
580
581
582
583
584
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 579

def update!(**args)
  @description = args[:description] if args.key?(:description)
  @kind = args[:kind] if args.key?(:kind)
  @other_units = args[:other_units] if args.key?(:other_units)
  @standard_units = args[:standard_units] if args.key?(:standard_units)
end