@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 2.3 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* List of RP resources which supports pagination.
*
* Uses Azure REST API version 2024-04-01.
*
* Other available API versions: 2023-09-01-preview, 2024-05-15-preview, 2025-03-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native security [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare function listGitLabSubgroup(args: ListGitLabSubgroupArgs, opts?: pulumi.InvokeOptions): Promise<ListGitLabSubgroupResult>;
export interface ListGitLabSubgroupArgs {
/**
* The GitLab group fully-qualified name.
*/
groupFQName: string;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: string;
/**
* The security connector name.
*/
securityConnectorName: string;
}
/**
* List of RP resources which supports pagination.
*/
export interface ListGitLabSubgroupResult {
/**
* Gets or sets next link to scroll over the results.
*/
readonly nextLink?: string;
/**
* Gets or sets list of resources.
*/
readonly value?: outputs.security.GitLabGroupResponse[];
}
/**
* List of RP resources which supports pagination.
*
* Uses Azure REST API version 2024-04-01.
*
* Other available API versions: 2023-09-01-preview, 2024-05-15-preview, 2025-03-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native security [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare function listGitLabSubgroupOutput(args: ListGitLabSubgroupOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListGitLabSubgroupResult>;
export interface ListGitLabSubgroupOutputArgs {
/**
* The GitLab group fully-qualified name.
*/
groupFQName: pulumi.Input<string>;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: pulumi.Input<string>;
/**
* The security connector name.
*/
securityConnectorName: pulumi.Input<string>;
}