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:

Provides a list of GitLab Group details for subgroups

NameDatatypeDescription
propertiesobjectGitLab Group properties.
systemDataobjectMetadata pertaining to creation and last modification of the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId, resourceGroupName, securityConnectorName, groupFQName

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
groupFQNamestringThe GitLab group fully-qualified name.
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
securityConnectorNamestringThe security connector name.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

SELECT examples

Provides a list of GitLab Group details for subgroups

SELECT
properties,
systemData
FROM azure.security.git_lab_subgroups
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND securityConnectorName = '{{ securityConnectorName }}' -- required
AND groupFQName = '{{ groupFQName }}' -- required
;