Skip to main content

debug_config

Creates, updates, deletes, gets or lists a debug_config resource.

Overview

Namedebug_config
TypeResource
Idgoogle.dataflow.debug_config

Fields

The following fields are returned by SELECT queries:

Successful response

NameDatatypeDescription
configstringThe encoded debug configuration for the requested component.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
projects_locations_jobs_debug_get_configselectprojectId, location, jobIdGet encoded debug configuration for component. Not cacheable.
projects_jobs_debug_get_configselectprojectId, jobIdGet 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.

NameDatatypeDescription
jobIdstring
locationstring
projectIdstring

SELECT examples

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;