Class: Google::Apis::DataflowV1b3::GetDebugConfigRequest
- Inherits:
-
Object
- Object
- Google::Apis::DataflowV1b3::GetDebugConfigRequest
- 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 get updated debug configuration for component.
Instance Attribute Summary collapse
-
#component_id ⇒ String
The internal component id for which debug configuration is requested.
-
#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) ⇒ GetDebugConfigRequest
constructor
A new instance of GetDebugConfigRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GetDebugConfigRequest
Returns a new instance of GetDebugConfigRequest.
1663 1664 1665 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 1663 def initialize(**args) update!(**args) end |
Instance Attribute Details
#component_id ⇒ String
The internal component id for which debug configuration is requested.
Corresponds to the JSON property componentId
1650 1651 1652 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 1650 def component_id @component_id end |
#location ⇒ String
The regional endpoint that contains the job specified by job_id.
Corresponds to the JSON property location
1656 1657 1658 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 1656 def location @location end |
#worker_id ⇒ String
The worker id, i.e., VM hostname.
Corresponds to the JSON property workerId
1661 1662 1663 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 1661 def worker_id @worker_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1668 1669 1670 1671 1672 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 1668 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 |