import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * This resource can manage a Topology Custom Control 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.TopologyCustomControlFeature("example", { * name: "Example", * description: "My Example", * featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac", * defaultAction: "reject", * targetLevel: "SITE", * targetInboundHierarchyUuids: ["acb2ea53-4a95-4970-a1ab-9bac15edb961"], * targetOutboundHierarchyUuids: ["acb2ea53-4a95-4970-a1ab-9bac15edb961"], * sequences: [{ * id: 1, * name: "Rule1", * baseAction: "accept", * type: "route", * ipType: "ipv4", * matchEntries: [{ * ompTag: 100, * origin: "connected", * originator: "1.2.3.4", * hierarchyUuids: ["c446d770-2ac0-4e2c-9a64-345d562a4ac7"], * tlocIp: "1.2.3.4", * tlocColor: "bronze", * tlocEncapsulation: "ipsec", * }], * actionEntries: [{ * setParameters: [{ * preference: 100, * ompTag: 100, * }], * }], * }], * }); * ``` * * ## Import * * The `pulumi import` command can be used, for example: * * Expected import identifier with the format: "topology_custom_control_feature_id,feature_profile_id" * * ```sh * $ pulumi import sdwan:index/topologyCustomControlFeature:TopologyCustomControlFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd,f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac" * ``` */ export declare class TopologyCustomControlFeature extends pulumi.CustomResource { /** * Get an existing TopologyCustomControlFeature 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?: TopologyCustomControlFeatureState, opts?: pulumi.CustomResourceOptions): TopologyCustomControlFeature; /** * Returns true if the given object is an instance of TopologyCustomControlFeature. 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 TopologyCustomControlFeature; /** * Default Action * - Choices: `reject`, `accept` */ readonly defaultAction: pulumi.Output; /** * The description of the Feature */ readonly description: pulumi.Output; /** * Feature Profile ID */ readonly featureProfileId: pulumi.Output; /** * The name of the Feature */ readonly name: pulumi.Output; /** * Sequence list */ readonly sequences: pulumi.Output; /** * Inbound network hierarchy UUIDs, Attribute conditional on `targetLevel` equal to `SITE` and SD-WAN Manager version `20.18.1` or higher and `targetInboundSites` not being set and `targetOutboundSites` not being set */ readonly targetInboundHierarchyUuids: pulumi.Output; /** * , Attribute conditional on `targetLevel` equal to `REGION` or `targetLevel` equal to `SUB_REGION` */ readonly targetInboundRegions: pulumi.Output; /** * , Attribute conditional on `targetLevel` equal to `SITE` and `targetInboundHierarchyUuids` not being set and `targetOutboundHierarchyUuids` not being set */ readonly targetInboundSites: pulumi.Output; /** * - Choices: `SITE`, `REGION`, `SUB_REGION` */ readonly targetLevel: pulumi.Output; /** * Outbound network hierarchy UUIDs, Attribute conditional on `targetLevel` equal to `SITE` and SD-WAN Manager version `20.18.1` or higher and `targetOutboundSites` not being set and `targetInboundSites` not being set */ readonly targetOutboundHierarchyUuids: pulumi.Output; /** * , Attribute conditional on `targetLevel` equal to `REGION` or `targetLevel` equal to `SUB_REGION` */ readonly targetOutboundRegions: pulumi.Output; /** * , Attribute conditional on `targetLevel` equal to `SITE` and `targetOutboundHierarchyUuids` not being set and `targetInboundHierarchyUuids` not being set */ readonly targetOutboundSites: pulumi.Output; /** * - Choices: `edge-router`, `border-router` */ readonly targetRole: pulumi.Output; readonly targetVpns: pulumi.Output; /** * The version of the Feature */ readonly version: pulumi.Output; /** * Create a TopologyCustomControlFeature 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: TopologyCustomControlFeatureArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering TopologyCustomControlFeature resources. */ export interface TopologyCustomControlFeatureState { /** * Default Action * - Choices: `reject`, `accept` */ defaultAction?: pulumi.Input; /** * The description of the Feature */ description?: pulumi.Input; /** * Feature Profile ID */ featureProfileId?: pulumi.Input; /** * The name of the Feature */ name?: pulumi.Input; /** * Sequence list */ sequences?: pulumi.Input[] | undefined>; /** * Inbound network hierarchy UUIDs, Attribute conditional on `targetLevel` equal to `SITE` and SD-WAN Manager version `20.18.1` or higher and `targetInboundSites` not being set and `targetOutboundSites` not being set */ targetInboundHierarchyUuids?: pulumi.Input[] | undefined>; /** * , Attribute conditional on `targetLevel` equal to `REGION` or `targetLevel` equal to `SUB_REGION` */ targetInboundRegions?: pulumi.Input[] | undefined>; /** * , Attribute conditional on `targetLevel` equal to `SITE` and `targetInboundHierarchyUuids` not being set and `targetOutboundHierarchyUuids` not being set */ targetInboundSites?: pulumi.Input[] | undefined>; /** * - Choices: `SITE`, `REGION`, `SUB_REGION` */ targetLevel?: pulumi.Input; /** * Outbound network hierarchy UUIDs, Attribute conditional on `targetLevel` equal to `SITE` and SD-WAN Manager version `20.18.1` or higher and `targetOutboundSites` not being set and `targetInboundSites` not being set */ targetOutboundHierarchyUuids?: pulumi.Input[] | undefined>; /** * , Attribute conditional on `targetLevel` equal to `REGION` or `targetLevel` equal to `SUB_REGION` */ targetOutboundRegions?: pulumi.Input[] | undefined>; /** * , Attribute conditional on `targetLevel` equal to `SITE` and `targetOutboundHierarchyUuids` not being set and `targetInboundHierarchyUuids` not being set */ targetOutboundSites?: pulumi.Input[] | undefined>; /** * - Choices: `edge-router`, `border-router` */ targetRole?: pulumi.Input; targetVpns?: pulumi.Input[] | undefined>; /** * The version of the Feature */ version?: pulumi.Input; } /** * The set of arguments for constructing a TopologyCustomControlFeature resource. */ export interface TopologyCustomControlFeatureArgs { /** * Default Action * - Choices: `reject`, `accept` */ defaultAction: pulumi.Input; /** * The description of the Feature */ description?: pulumi.Input; /** * Feature Profile ID */ featureProfileId: pulumi.Input; /** * The name of the Feature */ name?: pulumi.Input; /** * Sequence list */ sequences?: pulumi.Input[] | undefined>; /** * Inbound network hierarchy UUIDs, Attribute conditional on `targetLevel` equal to `SITE` and SD-WAN Manager version `20.18.1` or higher and `targetInboundSites` not being set and `targetOutboundSites` not being set */ targetInboundHierarchyUuids?: pulumi.Input[] | undefined>; /** * , Attribute conditional on `targetLevel` equal to `REGION` or `targetLevel` equal to `SUB_REGION` */ targetInboundRegions?: pulumi.Input[] | undefined>; /** * , Attribute conditional on `targetLevel` equal to `SITE` and `targetInboundHierarchyUuids` not being set and `targetOutboundHierarchyUuids` not being set */ targetInboundSites?: pulumi.Input[] | undefined>; /** * - Choices: `SITE`, `REGION`, `SUB_REGION` */ targetLevel: pulumi.Input; /** * Outbound network hierarchy UUIDs, Attribute conditional on `targetLevel` equal to `SITE` and SD-WAN Manager version `20.18.1` or higher and `targetOutboundSites` not being set and `targetInboundSites` not being set */ targetOutboundHierarchyUuids?: pulumi.Input[] | undefined>; /** * , Attribute conditional on `targetLevel` equal to `REGION` or `targetLevel` equal to `SUB_REGION` */ targetOutboundRegions?: pulumi.Input[] | undefined>; /** * , Attribute conditional on `targetLevel` equal to `SITE` and `targetOutboundHierarchyUuids` not being set and `targetInboundHierarchyUuids` not being set */ targetOutboundSites?: pulumi.Input[] | undefined>; /** * - Choices: `edge-router`, `border-router` */ targetRole?: pulumi.Input; targetVpns?: pulumi.Input[] | undefined>; } //# sourceMappingURL=topologyCustomControlFeature.d.ts.map