import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * ServiceRoute data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * const settingsData = scm.getServiceRoute({ * id: "a232c048-98d6-4507-a299-bb10f66fca01", * }); * export const fetchedSettings = settingsData; * ``` */ export declare function getServiceRoute(args: GetServiceRouteArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getServiceRoute. */ export interface GetServiceRouteArgs { /** * 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 getServiceRoute. */ export interface GetServiceRouteResult { /** * The device in which the resource is defined */ readonly device: string; readonly folder: string; /** * UUID of the resource */ readonly id: string; readonly route: outputs.GetServiceRouteRoute; readonly snippet: string; readonly tfid: string; } /** * ServiceRoute data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * const settingsData = scm.getServiceRoute({ * id: "a232c048-98d6-4507-a299-bb10f66fca01", * }); * export const fetchedSettings = settingsData; * ``` */ export declare function getServiceRouteOutput(args: GetServiceRouteOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getServiceRoute. */ export interface GetServiceRouteOutputArgs { /** * 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=getServiceRoute.d.ts.map