Class: Google::Apis::DataflowV1b3::GetDebugConfigRequest

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 get updated debug configuration for component.

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

Returns a new instance of GetDebugConfigRequest.



1477
1478
1479
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1477

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

Instance Attribute Details

#component_idString

The internal component id for which debug configuration is requested. Corresponds to the JSON property componentId

Returns:

  • (String)


1463
1464
1465
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1463

def component_id
  @component_id
end

#locationString

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

Returns:

  • (String)


1470
1471
1472
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1470

def location
  @location
end

#worker_idString

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

Returns:

  • (String)


1475
1476
1477
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1475

def worker_id
  @worker_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1482
1483
1484
1485
1486
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1482

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