@pulumi/scm
Version:
A Pulumi package for managing resources on Strata Cloud Manager.. Based on terraform-provider-scm: version v0.2.1
112 lines (111 loc) • 3.5 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 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 TACACS+ server profile
*/
id: string;
/**
* The name of the TACACS+ server profile
*/
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 getTacacsServerProfile.
*/
export interface GetTacacsServerProfileResult {
/**
* 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 TACACS+ server profile
*/
readonly id: string;
/**
* The name of the TACACS+ server profile
*/
readonly name: string;
/**
* The TACACS+ authentication protocol
*/
readonly protocol: string;
/**
* The TACACS+ server configuration
*/
readonly servers: outputs.GetTacacsServerProfileServer[];
/**
* 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 TACACS+ timeout (seconds)
*/
readonly timeout: number;
/**
* Use a single TACACS+ connection?
*/
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 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 TACACS+ server profile
*/
id: pulumi.Input<string>;
/**
* The name of the TACACS+ server profile
*/
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>;
}