@pulumi/scm
Version:
A Pulumi package for managing resources on Strata Cloud Manager.. Based on terraform-provider-scm: version v0.2.1
59 lines (58 loc) • 1.68 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "./types/output";
/**
* SyslogServerProfile data source
*/
export declare function getSyslogServerProfile(args: GetSyslogServerProfileArgs, opts?: pulumi.InvokeOptions): Promise<GetSyslogServerProfileResult>;
/**
* A collection of arguments for invoking getSyslogServerProfile.
*/
export interface GetSyslogServerProfileArgs {
/**
* The UUID of the syslog server profile
*/
id: string;
/**
* The name of the syslog server profile
*/
name?: string;
}
/**
* A collection of values returned by getSyslogServerProfile.
*/
export interface GetSyslogServerProfileResult {
/**
* The device in which the resource is defined
*/
readonly device: string;
readonly folder: string;
readonly format: outputs.GetSyslogServerProfileFormat;
/**
* The UUID of the syslog server profile
*/
readonly id: string;
/**
* The name of the syslog server profile
*/
readonly name: string;
readonly servers: outputs.GetSyslogServerProfileServers;
readonly snippet: string;
readonly tfid: string;
}
/**
* SyslogServerProfile data source
*/
export declare function getSyslogServerProfileOutput(args: GetSyslogServerProfileOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSyslogServerProfileResult>;
/**
* A collection of arguments for invoking getSyslogServerProfile.
*/
export interface GetSyslogServerProfileOutputArgs {
/**
* The UUID of the syslog server profile
*/
id: pulumi.Input<string>;
/**
* The name of the syslog server profile
*/
name?: pulumi.Input<string>;
}