@pulumi/scm
Version:
A Pulumi package for managing resources on Strata Cloud Manager.. Based on terraform-provider-scm: version v0.2.1
61 lines (60 loc) • 1.45 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* LocalUser data source
*/
export declare function getLocalUser(args: GetLocalUserArgs, opts?: pulumi.InvokeOptions): Promise<GetLocalUserResult>;
/**
* A collection of arguments for invoking getLocalUser.
*/
export interface GetLocalUserArgs {
/**
* The UUID of the local user
*/
id: string;
/**
* The name of the local user
*/
name?: string;
}
/**
* A collection of values returned by getLocalUser.
*/
export interface GetLocalUserResult {
/**
* The device in which the resource is defined
*/
readonly device: string;
readonly disabled: boolean;
readonly encryptedValues: {
[key: string]: string;
};
readonly folder: string;
/**
* The UUID of the local user
*/
readonly id: string;
/**
* The name of the local user
*/
readonly name: string;
readonly password: string;
readonly snippet: string;
readonly tfid: string;
}
/**
* LocalUser data source
*/
export declare function getLocalUserOutput(args: GetLocalUserOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetLocalUserResult>;
/**
* A collection of arguments for invoking getLocalUser.
*/
export interface GetLocalUserOutputArgs {
/**
* The UUID of the local user
*/
id: pulumi.Input<string>;
/**
* The name of the local user
*/
name?: pulumi.Input<string>;
}