debug
Creates, updates, deletes, gets or lists a debug resource.
Overview
| Name | debug |
| Type | Resource |
| Id | google.dataflow.debug |
Fields
The following fields are returned by SELECT queries:
SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
projects_jobs_debug_send_capture | exec | projectId, jobId | Send encoded debug capture data for component. | |
projects_locations_jobs_debug_send_capture | exec | projectId, location, jobId | Send encoded debug capture data for component. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
jobId | string | |
location | string | |
projectId | string |
Lifecycle Methods
- projects_jobs_debug_send_capture
- projects_locations_jobs_debug_send_capture
Send encoded debug capture data for component.
EXEC google.dataflow.debug.projects_jobs_debug_send_capture
@projectId='{{ projectId }}' --required,
@jobId='{{ jobId }}' --required
@@json=
'{
"workerId": "{{ workerId }}",
"componentId": "{{ componentId }}",
"data": "{{ data }}",
"dataFormat": "{{ dataFormat }}",
"location": "{{ location }}"
}'
;
Send encoded debug capture data for component.
EXEC google.dataflow.debug.projects_locations_jobs_debug_send_capture
@projectId='{{ projectId }}' --required,
@location='{{ location }}' --required,
@jobId='{{ jobId }}' --required
@@json=
'{
"workerId": "{{ workerId }}",
"componentId": "{{ componentId }}",
"data": "{{ data }}",
"dataFormat": "{{ dataFormat }}",
"location": "{{ location }}"
}'
;