UNPKG

@pulumi/azure-native

Version:

[![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com) [![NPM version](https://badge.fury.io/js/%40pulumi%2Fazure-native.svg)](https://npmjs.com/package/@pulumi/azure-native) [![Python version](https://badge.fury.io/py/pu

60 lines (59 loc) 2.3 kB
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>; }