@pulumiverse/harbor
Version:
A Pulumi package for creating and managing Harbor resources.
43 lines (42 loc) • 1.3 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "./types/output";
/**
* ## Example Usage
*/
export declare function getProjectMemberGroups(args: GetProjectMemberGroupsArgs, opts?: pulumi.InvokeOptions): Promise<GetProjectMemberGroupsResult>;
/**
* A collection of arguments for invoking getProjectMemberGroups.
*/
export interface GetProjectMemberGroupsArgs {
/**
* The id of the project within harbor.
*/
projectId: string;
}
/**
* A collection of values returned by getProjectMemberGroups.
*/
export interface GetProjectMemberGroupsResult {
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
/**
* The id of the project within harbor.
*/
readonly projectId: string;
readonly projectMemberGroups: outputs.GetProjectMemberGroupsProjectMemberGroup[];
}
/**
* ## Example Usage
*/
export declare function getProjectMemberGroupsOutput(args: GetProjectMemberGroupsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetProjectMemberGroupsResult>;
/**
* A collection of arguments for invoking getProjectMemberGroups.
*/
export interface GetProjectMemberGroupsOutputArgs {
/**
* The id of the project within harbor.
*/
projectId: pulumi.Input<string>;
}