@pulumiverse/harbor
Version:
A Pulumi package for creating and managing Harbor resources.
55 lines (54 loc) • 1.35 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "./types/output";
/**
* ## Example Usage
*/
export declare function getUsers(args?: GetUsersArgs, opts?: pulumi.InvokeOptions): Promise<GetUsersResult>;
/**
* A collection of arguments for invoking getUsers.
*/
export interface GetUsersArgs {
/**
* The email of the user to filter by.
*/
email?: string;
/**
* The name of the user to filter by.
*/
username?: string;
}
/**
* A collection of values returned by getUsers.
*/
export interface GetUsersResult {
/**
* The email of the user to filter by.
*/
readonly email?: string;
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
/**
* The name of the user to filter by.
*/
readonly username?: string;
readonly users: outputs.GetUsersUser[];
}
/**
* ## Example Usage
*/
export declare function getUsersOutput(args?: GetUsersOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetUsersResult>;
/**
* A collection of arguments for invoking getUsers.
*/
export interface GetUsersOutputArgs {
/**
* The email of the user to filter by.
*/
email?: pulumi.Input<string>;
/**
* The name of the user to filter by.
*/
username?: pulumi.Input<string>;
}