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
Provides a list of GitLab Group details for subgroups
Name | Datatype | Description |
---|---|---|
properties | object | GitLab Group properties. |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | subscriptionId , 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.
Name | Datatype | Description |
---|---|---|
groupFQName | string | The GitLab group fully-qualified name. |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
securityConnectorName | string | The security connector name. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
SELECT
examples
- list
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
;