@pulumi/scm
Version:
A Pulumi package for managing resources on Strata Cloud Manager.. Based on terraform-provider-scm: version v0.2.1
57 lines (56 loc) • 1.45 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* LocalUserGroup data source
*/
export declare function getLocalUserGroup(args: GetLocalUserGroupArgs, opts?: pulumi.InvokeOptions): Promise<GetLocalUserGroupResult>;
/**
* A collection of arguments for invoking getLocalUserGroup.
*/
export interface GetLocalUserGroupArgs {
/**
* The UUID of the local user group
*/
id: string;
/**
* The name of the local user group
*/
name?: 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;
/**
* The name of the local user group
*/
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<GetLocalUserGroupResult>;
/**
* A collection of arguments for invoking getLocalUserGroup.
*/
export interface GetLocalUserGroupOutputArgs {
/**
* The UUID of the local user group
*/
id: pulumi.Input<string>;
/**
* The name of the local user group
*/
name?: pulumi.Input<string>;
}