Class: Google::Apis::DataflowV1b3::MetricShortId

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

Overview

The metric short id is returned to the user alongside an offset into ReportWorkItemStatusRequest

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ MetricShortId

Returns a new instance of MetricShortId.



3019
3020
3021
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 3019

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

Instance Attribute Details

#metric_indexFixnum

The index of the corresponding metric in the ReportWorkItemStatusRequest. Required. Corresponds to the JSON property metricIndex

Returns:

  • (Fixnum)


3012
3013
3014
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 3012

def metric_index
  @metric_index
end

#short_idFixnum

The service-generated short identifier for the metric. Corresponds to the JSON property shortId

Returns:

  • (Fixnum)


3017
3018
3019
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 3017

def short_id
  @short_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3024
3025
3026
3027
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 3024

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