workspace_git_repo_management
Creates, updates, deletes, gets or lists a workspace_git_repo_management resource.
Overview
| Name | workspace_git_repo_management |
| Type | Resource |
| Id | azure.synapse_artifacts.workspace_git_repo_management |
Fields
The following fields are returned by SELECT queries:
- get_github_access_token
| Name | Datatype | Description |
|---|---|---|
gitHubAccessToken | string | :vartype git_hub_access_token: str |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_github_access_token | select | endpoint | x-ms-client-request-id | Get 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.
| Name | Datatype | Description |
|---|---|---|
endpoint | string | The service endpoint host (no scheme). (default: ) |
x-ms-client-request-id | string | Can provide a guid, which is helpful for debugging and to provide better customer support. Default value is None. |
SELECT examples
- get_github_access_token
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 }}'
;