import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * SyslogServerProfile data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * // * // Data source to retrieve a single SCM Syslog Server Profile object by its ID. * // * // Replace the ID with the UUID of the SCM Syslog Server Profile you want to find. * const scmSyslogServerProf = scm.getSyslogServerProfile({ * id: "69f7ee97-7c0a-416d-a28d-d45929851f6e", * }); * export const scmSyslogServerProfileDetails = { * profileId: scmSyslogServerProf.then(scmSyslogServerProf => scmSyslogServerProf.id), * folder: scmSyslogServerProf.then(scmSyslogServerProf => scmSyslogServerProf.folder), * name: scmSyslogServerProf.then(scmSyslogServerProf => scmSyslogServerProf.name), * }; * ``` */ export declare function getSyslogServerProfile(args: GetSyslogServerProfileArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getSyslogServerProfile. */ export interface GetSyslogServerProfileArgs { /** * The device in which the resource is defined */ device?: string; folder?: string; /** * The UUID of the syslog server profile */ id: string; name?: string; snippet?: 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; readonly name: string; readonly servers: outputs.GetSyslogServerProfileServer[]; readonly snippet: string; readonly tfid: string; } /** * SyslogServerProfile data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * // * // Data source to retrieve a single SCM Syslog Server Profile object by its ID. * // * // Replace the ID with the UUID of the SCM Syslog Server Profile you want to find. * const scmSyslogServerProf = scm.getSyslogServerProfile({ * id: "69f7ee97-7c0a-416d-a28d-d45929851f6e", * }); * export const scmSyslogServerProfileDetails = { * profileId: scmSyslogServerProf.then(scmSyslogServerProf => scmSyslogServerProf.id), * folder: scmSyslogServerProf.then(scmSyslogServerProf => scmSyslogServerProf.folder), * name: scmSyslogServerProf.then(scmSyslogServerProf => scmSyslogServerProf.name), * }; * ``` */ export declare function getSyslogServerProfileOutput(args: GetSyslogServerProfileOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getSyslogServerProfile. */ export interface GetSyslogServerProfileOutputArgs { /** * The device in which the resource is defined */ device?: pulumi.Input; folder?: pulumi.Input; /** * The UUID of the syslog server profile */ id: pulumi.Input; name?: pulumi.Input; snippet?: pulumi.Input; } //# sourceMappingURL=getSyslogServerProfile.d.ts.map