import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * TcpSetting data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * const settingsData = scm.getTcpSetting({ * id: "e7e9b9e1-e8db-4eed-b355-099a36a380c9", * }); * export const fetchedSettings = settingsData; * ``` */ export declare function getTcpSetting(args: GetTcpSettingArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getTcpSetting. */ export interface GetTcpSettingArgs { /** * The device in which the resource is defined */ device?: string; folder?: string; /** * UUID of the resource */ id: string; snippet?: string; } /** * A collection of values returned by getTcpSetting. */ export interface GetTcpSettingResult { /** * The device in which the resource is defined */ readonly device: string; readonly folder: string; /** * UUID of the resource */ readonly id: string; readonly snippet: string; readonly tcp: outputs.GetTcpSettingTcp; readonly tfid: string; } /** * TcpSetting data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * const settingsData = scm.getTcpSetting({ * id: "e7e9b9e1-e8db-4eed-b355-099a36a380c9", * }); * export const fetchedSettings = settingsData; * ``` */ export declare function getTcpSettingOutput(args: GetTcpSettingOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getTcpSetting. */ export interface GetTcpSettingOutputArgs { /** * The device in which the resource is defined */ device?: pulumi.Input; folder?: pulumi.Input; /** * UUID of the resource */ id: pulumi.Input; snippet?: pulumi.Input; } //# sourceMappingURL=getTcpSetting.d.ts.map