import * as pulumi from "@pulumi/pulumi"; /** * LocalUserGroup data source */ export declare function getLocalUserGroup(args: GetLocalUserGroupArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getLocalUserGroup. */ export interface GetLocalUserGroupArgs { /** * The device in which the resource is defined */ device?: string; folder?: string; /** * The UUID of the local user group */ id: string; name?: string; snippet?: string; } /** * A collection of values returned by getLocalUserGroup. */ export interface GetLocalUserGroupResult { /** * The device in which the resource is defined */ readonly device: string; readonly folder: string; /** * The UUID of the local user group */ readonly id: string; readonly name: string; readonly snippet: string; readonly tfid: string; readonly users: string[]; } /** * LocalUserGroup data source */ export declare function getLocalUserGroupOutput(args: GetLocalUserGroupOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getLocalUserGroup. */ export interface GetLocalUserGroupOutputArgs { /** * The device in which the resource is defined */ device?: pulumi.Input; folder?: pulumi.Input; /** * The UUID of the local user group */ id: pulumi.Input; name?: pulumi.Input; snippet?: pulumi.Input; } //# sourceMappingURL=getLocalUserGroup.d.ts.map