debug_config
Creates, updates, deletes, gets or lists a debug_config resource.
Overview
| Name | debug_config |
| Type | Resource |
| Id | google.dataflow.debug_config |
Fields
The following fields are returned by SELECT queries:
- projects_locations_jobs_debug_get_config
- projects_jobs_debug_get_config
| Name | Datatype | Description |
|---|---|---|
config | string | The encoded debug configuration for the requested component. |
| Name | Datatype | Description |
|---|---|---|
config | string | The encoded debug configuration for the requested component. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
projects_locations_jobs_debug_get_config | select | projectId, location, jobId | Get encoded debug configuration for component. Not cacheable. | |
projects_jobs_debug_get_config | select | projectId, jobId | Get encoded debug configuration for component. Not cacheable. |
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 |
SELECT examples
- projects_locations_jobs_debug_get_config
- projects_jobs_debug_get_config
Get encoded debug configuration for component. Not cacheable.
SELECT
config
FROM google.dataflow.debug_config
WHERE projectId = '{{ projectId }}' -- required
AND location = '{{ location }}' -- required
AND jobId = '{{ jobId }}' -- required
;
Get encoded debug configuration for component. Not cacheable.
SELECT
config
FROM google.dataflow.debug_config
WHERE projectId = '{{ projectId }}' -- required
AND jobId = '{{ jobId }}' -- required
;