@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.74 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "./types/output";
/**
* TacacsServerProfile data source
*/
export declare function getTacacsServerProfile(args: GetTacacsServerProfileArgs, opts?: pulumi.InvokeOptions): Promise<GetTacacsServerProfileResult>;
/**
* A collection of arguments for invoking getTacacsServerProfile.
*/
export interface GetTacacsServerProfileArgs {
/**
* The UUID of the TACACS+ server profile
*/
id: string;
/**
* The name of the TACACS+ server profile
*/
name?: string;
}
/**
* A collection of values returned by getTacacsServerProfile.
*/
export interface GetTacacsServerProfileResult {
/**
* The device in which the resource is defined
*/
readonly device: string;
readonly folder: string;
/**
* The UUID of the TACACS+ server profile
*/
readonly id: string;
/**
* The name of the TACACS+ server profile
*/
readonly name: string;
readonly protocol: string;
readonly servers: outputs.GetTacacsServerProfileServer[];
readonly snippet: string;
readonly tfid: string;
readonly timeout: number;
readonly useSingleConnection: boolean;
}
/**
* TacacsServerProfile data source
*/
export declare function getTacacsServerProfileOutput(args: GetTacacsServerProfileOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetTacacsServerProfileResult>;
/**
* A collection of arguments for invoking getTacacsServerProfile.
*/
export interface GetTacacsServerProfileOutputArgs {
/**
* The UUID of the TACACS+ server profile
*/
id: pulumi.Input<string>;
/**
* The name of the TACACS+ server profile
*/
name?: pulumi.Input<string>;
}