import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * QosProfile data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * // * // Data source to retrieve a single SCM QoS Profile object by its ID. * // * // Replace the ID with the UUID of the QoS Profile you want to find. * const scmQosProf = scm.getQosProfile({ * id: "cffecf78-b3b1-4b01-ad31-c69bf839850b", * }); * export const scmQosProfileDetails = { * id: scmQosProf.then(scmQosProf => scmQosProf.id), * folder: scmQosProf.then(scmQosProf => scmQosProf.folder), * name: scmQosProf.then(scmQosProf => scmQosProf.name), * }; * ``` */ export declare function getQosProfile(args: GetQosProfileArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getQosProfile. */ export interface GetQosProfileArgs { /** * The device in which the resource is defined */ device?: string; folder?: string; /** * UUID of the resource */ id: string; name?: string; snippet?: string; } /** * A collection of values returned by getQosProfile. */ export interface GetQosProfileResult { readonly aggregateBandwidth: outputs.GetQosProfileAggregateBandwidth; readonly classBandwidthType: outputs.GetQosProfileClassBandwidthType; /** * The device in which the resource is defined */ readonly device: string; readonly folder: string; /** * UUID of the resource */ readonly id: string; readonly name: string; readonly snippet: string; readonly tfid: string; } /** * QosProfile data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * // * // Data source to retrieve a single SCM QoS Profile object by its ID. * // * // Replace the ID with the UUID of the QoS Profile you want to find. * const scmQosProf = scm.getQosProfile({ * id: "cffecf78-b3b1-4b01-ad31-c69bf839850b", * }); * export const scmQosProfileDetails = { * id: scmQosProf.then(scmQosProf => scmQosProf.id), * folder: scmQosProf.then(scmQosProf => scmQosProf.folder), * name: scmQosProf.then(scmQosProf => scmQosProf.name), * }; * ``` */ export declare function getQosProfileOutput(args: GetQosProfileOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getQosProfile. */ export interface GetQosProfileOutputArgs { /** * The device in which the resource is defined */ device?: pulumi.Input; folder?: pulumi.Input; /** * UUID of the resource */ id: pulumi.Input; name?: pulumi.Input; snippet?: pulumi.Input; } //# sourceMappingURL=getQosProfile.d.ts.map