Class: Google::Apis::DataflowV1b3::CounterStructuredNameAndMetadata

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

A single message which encapsulates structured name and metadata for a given counter.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ CounterStructuredNameAndMetadata

Returns a new instance of CounterStructuredNameAndMetadata.



684
685
686
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 684

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

Instance Attribute Details

#metadataGoogle::Apis::DataflowV1b3::CounterMetadata

CounterMetadata includes all static non-name non-value counter attributes. Corresponds to the JSON property metadata



676
677
678
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 676

def 
  @metadata
end

#nameGoogle::Apis::DataflowV1b3::CounterStructuredName

Identifies a counter within a per-job namespace. Counters whose structured names are the same get merged into a single value for the job. Corresponds to the JSON property name



682
683
684
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 682

def name
  @name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



689
690
691
692
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 689

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