git_lab_subgroups
Creates, updates, deletes, gets or lists a git_lab_subgroups resource.
Overview
| Name | git_lab_subgroups |
| Type | Resource |
| Id | azure.security.git_lab_subgroups |
Fields
The following fields are returned by SELECT queries:
- list
| Name | Datatype | Description |
|---|---|---|
nextLink | string | The link to the next page of items. |
value | array | The GitLabGroup items on this page. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | resource_group_name, security_connector_name, group_fq_name, subscription_id | Gets nested subgroups of given GitLab Group which are onboarded to the connector. Gets nested subgroups of given GitLab Group which are onboarded to the connector. |
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 |
|---|---|---|
group_fq_name | string | Required. |
resource_group_name | string | The name of the resource group. The name is case insensitive. Required. |
security_connector_name | string | The security connector name. Required. |
subscription_id | string |
SELECT examples
- list
Gets nested subgroups of given GitLab Group which are onboarded to the connector. Gets nested subgroups of given GitLab Group which are onboarded to the connector.
SELECT
nextLink,
value
FROM azure.security.git_lab_subgroups
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND security_connector_name = '{{ security_connector_name }}' -- required
AND group_fq_name = '{{ group_fq_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;