Skip to main content

git_lab_subgroups

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

Overview

Namegit_lab_subgroups
TypeResource
Idazure.security.git_lab_subgroups

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
nextLinkstringThe link to the next page of items.
valuearrayThe GitLabGroup items on this page.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectresource_group_name, security_connector_name, group_fq_name, subscription_idGets 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.

NameDatatypeDescription
group_fq_namestringRequired.
resource_group_namestringThe name of the resource group. The name is case insensitive. Required.
security_connector_namestringThe security connector name. Required.
subscription_idstring

SELECT examples

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
;