Skip to main content

git_lab_groups

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

Overview

Namegit_lab_groups
TypeResource
Idazure.security.git_lab_groups

Fields

The following fields are returned by SELECT queries:

Provides GitLab Group details

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
getselectsubscriptionId, resourceGroupName, securityConnectorName, groupFQName
listselectsubscriptionId, resourceGroupName, securityConnectorName

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 GitLab Group details

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