class Google::Apis::DataflowV1b3::GetDebugConfigRequest
Request to get updated debug configuration for component.
Attributes
component_id[RW]
The internal component id for which debug configuration is requested. Corresponds to the JSON property `componentId` @return [String]
location[RW]
The [regional endpoint] (cloud.google.com/dataflow/docs/concepts/ regional-endpoints) that contains the job specified by job_id. Corresponds to the JSON property `location` @return [String]
worker_id[RW]
The worker id, i.e., VM hostname. Corresponds to the JSON property `workerId` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dataflow_v1b3/classes.rb, line 1698 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/dataflow_v1b3/classes.rb, line 1703 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