import * as pulumi from "@pulumi/pulumi"; /** * This resource can manage a Topology Mesh Feature. * - Minimum SD-WAN Manager version: `20.15.0` * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = new sdwan.TopologyMeshFeature("example", { * name: "Example", * description: "My Example", * featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac", * targetVpns: ["service_lan_vpn1"], * hierarchyUuids: ["acb2ea53-4a95-4970-a1ab-9bac15edb961"], * }); * ``` * * ## Import * * The `pulumi import` command can be used, for example: * * Expected import identifier with the format: "topology_mesh_feature_id,feature_profile_id" * * ```sh * $ pulumi import sdwan:index/topologyMeshFeature:TopologyMeshFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd,f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac" * ``` */ export declare class TopologyMeshFeature extends pulumi.CustomResource { /** * Get an existing TopologyMeshFeature resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: TopologyMeshFeatureState, opts?: pulumi.CustomResourceOptions): TopologyMeshFeature; /** * Returns true if the given object is an instance of TopologyMeshFeature. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is TopologyMeshFeature; /** * The description of the Feature */ readonly description: pulumi.Output; /** * Feature Profile ID */ readonly featureProfileId: pulumi.Output; /** * Network hierarchy UUIDs, Attribute conditional on SD-WAN Manager version `20.18.1` or higher */ readonly hierarchyUuids: pulumi.Output; /** * The name of the Feature */ readonly name: pulumi.Output; /** * Site list */ readonly sites: pulumi.Output; /** * Target VPN list */ readonly targetVpns: pulumi.Output; /** * The version of the Feature */ readonly version: pulumi.Output; /** * Create a TopologyMeshFeature resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: TopologyMeshFeatureArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering TopologyMeshFeature resources. */ export interface TopologyMeshFeatureState { /** * The description of the Feature */ description?: pulumi.Input; /** * Feature Profile ID */ featureProfileId?: pulumi.Input; /** * Network hierarchy UUIDs, Attribute conditional on SD-WAN Manager version `20.18.1` or higher */ hierarchyUuids?: pulumi.Input[] | undefined>; /** * The name of the Feature */ name?: pulumi.Input; /** * Site list */ sites?: pulumi.Input[] | undefined>; /** * Target VPN list */ targetVpns?: pulumi.Input[] | undefined>; /** * The version of the Feature */ version?: pulumi.Input; } /** * The set of arguments for constructing a TopologyMeshFeature resource. */ export interface TopologyMeshFeatureArgs { /** * The description of the Feature */ description?: pulumi.Input; /** * Feature Profile ID */ featureProfileId: pulumi.Input; /** * Network hierarchy UUIDs, Attribute conditional on SD-WAN Manager version `20.18.1` or higher */ hierarchyUuids?: pulumi.Input[] | undefined>; /** * The name of the Feature */ name?: pulumi.Input; /** * Site list */ sites?: pulumi.Input[] | undefined>; /** * Target VPN list */ targetVpns: pulumi.Input[]>; } //# sourceMappingURL=topologyMeshFeature.d.ts.map