import * as pulumi from "@pulumi/pulumi"; /** * This data source can read the Topology Feature Profile . * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = sdwan.getTopologyFeatureProfile({ * id: "f6b2c44c-693c-4763-b010-895aa3d236bd", * }); * ``` */ export declare function getTopologyFeatureProfile(args: GetTopologyFeatureProfileArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getTopologyFeatureProfile. */ export interface GetTopologyFeatureProfileArgs { /** * The id of the object */ id: string; } /** * A collection of values returned by getTopologyFeatureProfile. */ export interface GetTopologyFeatureProfileResult { /** * Description */ readonly description: string; /** * The id of the object */ readonly id: string; /** * The name of the topology feature profile */ readonly name: string; } /** * This data source can read the Topology Feature Profile . * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = sdwan.getTopologyFeatureProfile({ * id: "f6b2c44c-693c-4763-b010-895aa3d236bd", * }); * ``` */ export declare function getTopologyFeatureProfileOutput(args: GetTopologyFeatureProfileOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getTopologyFeatureProfile. */ export interface GetTopologyFeatureProfileOutputArgs { /** * The id of the object */ id: pulumi.Input; } //# sourceMappingURL=getTopologyFeatureProfile.d.ts.map