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

Constructor Details

#initialize(**args) ⇒ SendDebugCaptureRequest

Returns a new instance of SendDebugCaptureRequest.



4226
4227
4228
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4226

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)


4208
4209
4210
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4208

def component_id
  @component_id
end

#dataString

The encoded debug information. Corresponds to the JSON property data

Returns:

  • (String)


4213
4214
4215
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4213

def data
  @data
end

#locationString

The regional endpoint that contains the job specified by job_id. Corresponds to the JSON property location

Returns:

  • (String)


4219
4220
4221
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4219

def location
  @location
end

#worker_idString

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

Returns:

  • (String)


4224
4225
4226
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4224

def worker_id
  @worker_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4231
4232
4233
4234
4235
4236
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4231

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