UNPKG

@formalco/pulumi

Version:

A Pulumi package for creating and managing Formal resources.

49 lines (48 loc) 1.17 kB
import * as pulumi from "@pulumi/pulumi"; /** * Data source for looking up a Group by name. */ export declare function getGroup(args: GetGroupArgs, opts?: pulumi.InvokeOptions): Promise<GetGroupResult>; /** * A collection of arguments for invoking getGroup. */ export interface GetGroupArgs { /** * The name of the Group. */ name: string; } /** * A collection of values returned by getGroup. */ export interface GetGroupResult { /** * Description for this Group. */ readonly description: string; /** * The Formal ID for this Group. */ readonly id: string; /** * The name of the Group. */ readonly name: string; /** * If set to true, this Group cannot be deleted. */ readonly terminationProtection: boolean; } /** * Data source for looking up a Group by name. */ export declare function getGroupOutput(args: GetGroupOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetGroupResult>; /** * A collection of arguments for invoking getGroup. */ export interface GetGroupOutputArgs { /** * The name of the Group. */ name: pulumi.Input<string>; }