UNPKG

@pulumiverse/harbor

Version:

A Pulumi package for creating and managing Harbor resources.

55 lines (54 loc) 1.37 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * ## Example Usage */ export declare function getGroups(args?: GetGroupsArgs, opts?: pulumi.InvokeOptions): Promise<GetGroupsResult>; /** * A collection of arguments for invoking getGroups. */ export interface GetGroupsArgs { /** * The name of the group to filter by. */ groupName?: string; /** * The LDAP group DN to filter by. */ ldapGroupDn?: string; } /** * A collection of values returned by getGroups. */ export interface GetGroupsResult { /** * The name of the group to filter by. */ readonly groupName?: string; readonly groups: outputs.GetGroupsGroup[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The LDAP group DN to filter by. */ readonly ldapGroupDn?: string; } /** * ## Example Usage */ export declare function getGroupsOutput(args?: GetGroupsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetGroupsResult>; /** * A collection of arguments for invoking getGroups. */ export interface GetGroupsOutputArgs { /** * The name of the group to filter by. */ groupName?: pulumi.Input<string>; /** * The LDAP group DN to filter by. */ ldapGroupDn?: pulumi.Input<string>; }