import * as pulumi from "@pulumi/pulumi"; /** * This data source can read the Class Map Policy Object . * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = sdwan.getClassMapPolicyObject({ * id: "f6b2c44c-693c-4763-b010-895aa3d236bd", * }); * ``` */ export declare function getClassMapPolicyObject(args: GetClassMapPolicyObjectArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getClassMapPolicyObject. */ export interface GetClassMapPolicyObjectArgs { /** * The id of the object */ id: string; } /** * A collection of values returned by getClassMapPolicyObject. */ export interface GetClassMapPolicyObjectResult { /** * The id of the object */ readonly id: string; /** * The name of the policy object */ readonly name: string; /** * Queue */ readonly queue: number; /** * The version of the object */ readonly version: number; } /** * This data source can read the Class Map Policy Object . * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = sdwan.getClassMapPolicyObject({ * id: "f6b2c44c-693c-4763-b010-895aa3d236bd", * }); * ``` */ export declare function getClassMapPolicyObjectOutput(args: GetClassMapPolicyObjectOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getClassMapPolicyObject. */ export interface GetClassMapPolicyObjectOutputArgs { /** * The id of the object */ id: pulumi.Input; } //# sourceMappingURL=getClassMapPolicyObject.d.ts.map