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

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ CounterMetadata

Returns a new instance of CounterMetadata.



1606
1607
1608
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1606

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)


1594
1595
1596
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1594

def description
  @description
end

#kindString

Counter aggregation kind. Corresponds to the JSON property kind

Returns:

  • (String)


1589
1590
1591
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1589

def kind
  @kind
end

#other_unitsString

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

Returns:

  • (String)


1604
1605
1606
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1604

def other_units
  @other_units
end

#standard_unitsString

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

Returns:

  • (String)


1599
1600
1601
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1599

def standard_units
  @standard_units
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1611
1612
1613
1614
1615
1616
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1611

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