Skip to main content

workspaces_file_git_statuses

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

Overview

Nameworkspaces_file_git_statuses
TypeResource
Idgoogle.dataform.workspaces_file_git_statuses

Fields

NameDatatypeDescription
uncommittedFileChangesarrayA list of all files which have uncommitted Git changes. There will only be a single entry for any given file.

Methods

NameAccessible byRequired ParamsDescription
fetch_file_git_statusesSELECTlocationsId, projectsId, repositoriesId, workspacesIdFetches Git statuses for the files in a Workspace.

SELECT examples

Fetches Git statuses for the files in a Workspace.

SELECT
uncommittedFileChanges
FROM google.dataform.workspaces_file_git_statuses
WHERE locationsId = '{{ locationsId }}'
AND projectsId = '{{ projectsId }}'
AND repositoriesId = '{{ repositoriesId }}'
AND workspacesId = '{{ workspacesId }}';