import * as pulumi from "@pulumi/pulumi"; /** * This data source can read the Topology Group . * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = sdwan.getTopologyGroup({ * id: "f6b2c44c-693c-4763-b010-895aa3d236bd", * }); * ``` */ export declare function getTopologyGroup(args: GetTopologyGroupArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getTopologyGroup. */ export interface GetTopologyGroupArgs { /** * The id of the object */ id: string; } /** * A collection of values returned by getTopologyGroup. */ export interface GetTopologyGroupResult { /** * Description */ readonly description: string; /** * List of feature profile IDs */ readonly featureProfileIds: string[]; /** * List of all associated feature versions */ readonly featureVersions: string[]; /** * The id of the object */ readonly id: string; /** * The name of the topology group */ readonly name: string; /** * Type of solution */ readonly solution: string; } /** * This data source can read the Topology Group . * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = sdwan.getTopologyGroup({ * id: "f6b2c44c-693c-4763-b010-895aa3d236bd", * }); * ``` */ export declare function getTopologyGroupOutput(args: GetTopologyGroupOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getTopologyGroup. */ export interface GetTopologyGroupOutputArgs { /** * The id of the object */ id: pulumi.Input; } //# sourceMappingURL=getTopologyGroup.d.ts.map