Skip to main content

workspace_git_repo_management

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

Overview

Nameworkspace_git_repo_management
TypeResource
Idazure.synapse_artifacts.workspace_git_repo_management

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
gitHubAccessTokenstring:vartype git_hub_access_token: str

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_github_access_tokenselectendpointx-ms-client-request-idGet the GitHub access token.

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
endpointstringThe service endpoint host (no scheme). (default: )
x-ms-client-request-idstringCan provide a guid, which is helpful for debugging and to provide better customer support. Default value is None.

SELECT examples

Get the GitHub access token.

SELECT
gitHubAccessToken
FROM azure.synapse_artifacts.workspace_git_repo_management
WHERE endpoint = '{{ endpoint }}' -- required
AND x-ms-client-request-id = '{{ x-ms-client-request-id }}'
;