source_control_repositories
Creates, updates, deletes, gets or lists a source_control_repositories
resource.
Overview
Name | source_control_repositories |
Type | Resource |
Id | azure.sentinel.source_control_repositories |
Fields
Name | Datatype | Description |
---|---|---|
branches | array | Array of branches. |
fullName | string | The name of the repository. |
installationId | integer | The installation id of the repository. |
url | string | The url to access the repository. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | resourceGroupName, subscriptionId, workspaceName, data__properties | Gets a list of repositories metadata. |
SELECT
examples
Gets a list of repositories metadata.
SELECT
branches,
fullName,
installationId,
url
FROM azure.sentinel.source_control_repositories
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workspaceName = '{{ workspaceName }}'
AND data__properties = '{{ data__properties }}';