Class: Google::Apis::DataflowV1b3::SendDebugCaptureRequest

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

Request to send encoded debug information.

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) ⇒ SendDebugCaptureRequest

Returns a new instance of SendDebugCaptureRequest



3016
3017
3018
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3016

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

Instance Attribute Details

#component_idString

The internal component id for which debug information is sent. Corresponds to the JSON property componentId

Returns:

  • (String)


2999
3000
3001
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2999

def component_id
  @component_id
end

#dataString

The encoded debug information. Corresponds to the JSON property data

Returns:

  • (String)


3004
3005
3006
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3004

def data
  @data
end

#locationString

The location which contains the job specified by job_id. Corresponds to the JSON property location

Returns:

  • (String)


3009
3010
3011
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3009

def location
  @location
end

#worker_idString

The worker id, i.e., VM hostname. Corresponds to the JSON property workerId

Returns:

  • (String)


3014
3015
3016
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3014

def worker_id
  @worker_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3021
3022
3023
3024
3025
3026
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3021

def update!(**args)
  @component_id = args[:component_id] if args.key?(:component_id)
  @data = args[:data] if args.key?(:data)
  @location = args[:location] if args.key?(:location)
  @worker_id = args[:worker_id] if args.key?(:worker_id)
end