Class: Google::Apis::DataflowV1b3::SendDebugCaptureRequest
- Inherits:
-
Object
- Object
- Google::Apis::DataflowV1b3::SendDebugCaptureRequest
- 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
Request to send encoded debug information. Next ID: 8
Instance Attribute Summary collapse
-
#component_id ⇒ String
The internal component id for which debug information is sent.
-
#data ⇒ String
The encoded debug information.
-
#data_format ⇒ String
Format for the data field above (id=5).
-
#location ⇒ String
The regional endpoint that contains the job specified by job_id.
-
#worker_id ⇒ String
The worker id, i.e., VM hostname.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SendDebugCaptureRequest
constructor
A new instance of SendDebugCaptureRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SendDebugCaptureRequest
Returns a new instance of SendDebugCaptureRequest.
4331 4332 4333 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 4331 def initialize(**args) update!(**args) end |
Instance Attribute Details
#component_id ⇒ String
The internal component id for which debug information is sent.
Corresponds to the JSON property componentId
4308 4309 4310 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 4308 def component_id @component_id end |
#data ⇒ String
The encoded debug information.
Corresponds to the JSON property data
4313 4314 4315 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 4313 def data @data end |
#data_format ⇒ String
Format for the data field above (id=5).
Corresponds to the JSON property dataFormat
4318 4319 4320 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 4318 def data_format @data_format end |
#location ⇒ String
The regional endpoint that contains the job specified by job_id.
Corresponds to the JSON property location
4324 4325 4326 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 4324 def location @location end |
#worker_id ⇒ String
The worker id, i.e., VM hostname.
Corresponds to the JSON property workerId
4329 4330 4331 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 4329 def worker_id @worker_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4336 4337 4338 4339 4340 4341 4342 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 4336 def update!(**args) @component_id = args[:component_id] if args.key?(:component_id) @data = args[:data] if args.key?(:data) @data_format = args[:data_format] if args.key?(:data_format) @location = args[:location] if args.key?(:location) @worker_id = args[:worker_id] if args.key?(:worker_id) end |