@pulumi/scm
Version:
A Pulumi package for managing resources on Strata Cloud Manager.. Based on terraform-provider-scm: version v0.2.1
99 lines (98 loc) • 3.05 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 device in which the resource is defined
* > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`.
*/
device?: string;
/**
* The folder in which the resource is defined
* > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`.
*/
folder?: string;
/**
* The UUID of the local user group
*/
id: string;
/**
* The name of the local user group
*/
name?: string;
/**
* The snippet in which the resource is defined
* > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`.
*/
snippet?: string;
}
/**
* A collection of values returned by getLocalUserGroup.
*/
export interface GetLocalUserGroupResult {
/**
* The device in which the resource is defined
* > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`.
*/
readonly device: string;
/**
* The folder in which the resource is defined
* > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`.
*/
readonly folder: string;
/**
* The UUID of the local user group
*/
readonly id: string;
/**
* The name of the local user group
*/
readonly name: string;
/**
* The snippet in which the resource is defined
* > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`.
*/
readonly snippet: string;
readonly tfid: string;
/**
* The local user group users
*/
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 device in which the resource is defined
* > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`.
*/
device?: pulumi.Input<string>;
/**
* The folder in which the resource is defined
* > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`.
*/
folder?: pulumi.Input<string>;
/**
* The UUID of the local user group
*/
id: pulumi.Input<string>;
/**
* The name of the local user group
*/
name?: pulumi.Input<string>;
/**
* The snippet in which the resource is defined
* > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`.
*/
snippet?: pulumi.Input<string>;
}