@pulumi/sdwan 0.3.0-alpha.1736849988 → 0.3.0-alpha.1737094531
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/getServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature.d.ts +104 -0
- package/getServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature.js +62 -0
- package/getServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature.js.map +1 -0
- package/getServiceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeature.d.ts +104 -0
- package/getServiceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeature.js +62 -0
- package/getServiceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeature.js.map +1 -0
- package/getTransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature.d.ts +104 -0
- package/getTransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature.js +62 -0
- package/getTransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature.js.map +1 -0
- package/getTransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature.d.ts +104 -0
- package/getTransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature.js +62 -0
- package/getTransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature.js.map +1 -0
- package/getTransportWanVpnInterfaceGreFeatureAssociateTrackerFeature.d.ts +104 -0
- package/getTransportWanVpnInterfaceGreFeatureAssociateTrackerFeature.js +62 -0
- package/getTransportWanVpnInterfaceGreFeatureAssociateTrackerFeature.js.map +1 -0
- package/getTransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature.d.ts +104 -0
- package/getTransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature.js +62 -0
- package/getTransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature.js.map +1 -0
- package/index.d.ts +36 -0
- package/index.js +56 -8
- package/index.js.map +1 -1
- package/package.json +2 -2
- package/serviceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature.d.ts +108 -0
- package/serviceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature.js +91 -0
- package/serviceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature.js.map +1 -0
- package/serviceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeature.d.ts +108 -0
- package/serviceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeature.js +91 -0
- package/serviceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeature.js.map +1 -0
- package/transportWanVpnInterfaceCellularFeatureAssociateTrackerFeature.d.ts +108 -0
- package/transportWanVpnInterfaceCellularFeatureAssociateTrackerFeature.js +91 -0
- package/transportWanVpnInterfaceCellularFeatureAssociateTrackerFeature.js.map +1 -0
- package/transportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature.d.ts +108 -0
- package/transportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature.js +91 -0
- package/transportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature.js.map +1 -0
- package/transportWanVpnInterfaceGreFeatureAssociateTrackerFeature.d.ts +108 -0
- package/transportWanVpnInterfaceGreFeatureAssociateTrackerFeature.js +91 -0
- package/transportWanVpnInterfaceGreFeatureAssociateTrackerFeature.js.map +1 -0
- package/transportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature.d.ts +108 -0
- package/transportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature.js +91 -0
- package/transportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature.js.map +1 -0
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* This resource can manage a Transport WAN VPN Interface Cellular Feature Associate Tracker Group Feature .
|
|
4
|
+
* - Minimum SD-WAN Manager version: `20.12.0`
|
|
5
|
+
*
|
|
6
|
+
* ## Example Usage
|
|
7
|
+
*
|
|
8
|
+
* ```typescript
|
|
9
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
10
|
+
* import * as sdwan from "@pulumi/sdwan";
|
|
11
|
+
*
|
|
12
|
+
* const example = new sdwan.TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature("example", {
|
|
13
|
+
* featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
|
|
14
|
+
* transportWanVpnFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
|
|
15
|
+
* transportWanVpnInterfaceCellularFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
|
|
16
|
+
* transportTrackerGroupFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
|
|
17
|
+
* });
|
|
18
|
+
* ```
|
|
19
|
+
*
|
|
20
|
+
* ## Import
|
|
21
|
+
*
|
|
22
|
+
* ```sh
|
|
23
|
+
* $ pulumi import sdwan:index/transportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature:TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd"
|
|
24
|
+
* ```
|
|
25
|
+
*/
|
|
26
|
+
export declare class TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature extends pulumi.CustomResource {
|
|
27
|
+
/**
|
|
28
|
+
* Get an existing TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature resource's state with the given name, ID, and optional extra
|
|
29
|
+
* properties used to qualify the lookup.
|
|
30
|
+
*
|
|
31
|
+
* @param name The _unique_ name of the resulting resource.
|
|
32
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
33
|
+
* @param state Any extra arguments used during the lookup.
|
|
34
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
35
|
+
*/
|
|
36
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeatureState, opts?: pulumi.CustomResourceOptions): TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature;
|
|
37
|
+
/**
|
|
38
|
+
* Returns true if the given object is an instance of TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature. This is designed to work even
|
|
39
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
40
|
+
*/
|
|
41
|
+
static isInstance(obj: any): obj is TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature;
|
|
42
|
+
/**
|
|
43
|
+
* Feature Profile ID
|
|
44
|
+
*/
|
|
45
|
+
readonly featureProfileId: pulumi.Output<string>;
|
|
46
|
+
/**
|
|
47
|
+
* Transport Tracker Group Feature ID
|
|
48
|
+
*/
|
|
49
|
+
readonly transportTrackerGroupFeatureId: pulumi.Output<string>;
|
|
50
|
+
/**
|
|
51
|
+
* Transport WAN VPN Feature ID
|
|
52
|
+
*/
|
|
53
|
+
readonly transportWanVpnFeatureId: pulumi.Output<string>;
|
|
54
|
+
/**
|
|
55
|
+
* Transport WAN VPN Interface Cellular Feature ID
|
|
56
|
+
*/
|
|
57
|
+
readonly transportWanVpnInterfaceCellularFeatureId: pulumi.Output<string>;
|
|
58
|
+
/**
|
|
59
|
+
* Create a TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature resource with the given unique name, arguments, and options.
|
|
60
|
+
*
|
|
61
|
+
* @param name The _unique_ name of the resource.
|
|
62
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
63
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
64
|
+
*/
|
|
65
|
+
constructor(name: string, args: TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeatureArgs, opts?: pulumi.CustomResourceOptions);
|
|
66
|
+
}
|
|
67
|
+
/**
|
|
68
|
+
* Input properties used for looking up and filtering TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature resources.
|
|
69
|
+
*/
|
|
70
|
+
export interface TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeatureState {
|
|
71
|
+
/**
|
|
72
|
+
* Feature Profile ID
|
|
73
|
+
*/
|
|
74
|
+
featureProfileId?: pulumi.Input<string>;
|
|
75
|
+
/**
|
|
76
|
+
* Transport Tracker Group Feature ID
|
|
77
|
+
*/
|
|
78
|
+
transportTrackerGroupFeatureId?: pulumi.Input<string>;
|
|
79
|
+
/**
|
|
80
|
+
* Transport WAN VPN Feature ID
|
|
81
|
+
*/
|
|
82
|
+
transportWanVpnFeatureId?: pulumi.Input<string>;
|
|
83
|
+
/**
|
|
84
|
+
* Transport WAN VPN Interface Cellular Feature ID
|
|
85
|
+
*/
|
|
86
|
+
transportWanVpnInterfaceCellularFeatureId?: pulumi.Input<string>;
|
|
87
|
+
}
|
|
88
|
+
/**
|
|
89
|
+
* The set of arguments for constructing a TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature resource.
|
|
90
|
+
*/
|
|
91
|
+
export interface TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeatureArgs {
|
|
92
|
+
/**
|
|
93
|
+
* Feature Profile ID
|
|
94
|
+
*/
|
|
95
|
+
featureProfileId: pulumi.Input<string>;
|
|
96
|
+
/**
|
|
97
|
+
* Transport Tracker Group Feature ID
|
|
98
|
+
*/
|
|
99
|
+
transportTrackerGroupFeatureId: pulumi.Input<string>;
|
|
100
|
+
/**
|
|
101
|
+
* Transport WAN VPN Feature ID
|
|
102
|
+
*/
|
|
103
|
+
transportWanVpnFeatureId: pulumi.Input<string>;
|
|
104
|
+
/**
|
|
105
|
+
* Transport WAN VPN Interface Cellular Feature ID
|
|
106
|
+
*/
|
|
107
|
+
transportWanVpnInterfaceCellularFeatureId: pulumi.Input<string>;
|
|
108
|
+
}
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* This resource can manage a Transport WAN VPN Interface Cellular Feature Associate Tracker Group Feature .
|
|
10
|
+
* - Minimum SD-WAN Manager version: `20.12.0`
|
|
11
|
+
*
|
|
12
|
+
* ## Example Usage
|
|
13
|
+
*
|
|
14
|
+
* ```typescript
|
|
15
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
16
|
+
* import * as sdwan from "@pulumi/sdwan";
|
|
17
|
+
*
|
|
18
|
+
* const example = new sdwan.TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature("example", {
|
|
19
|
+
* featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
|
|
20
|
+
* transportWanVpnFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
|
|
21
|
+
* transportWanVpnInterfaceCellularFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
|
|
22
|
+
* transportTrackerGroupFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
|
|
23
|
+
* });
|
|
24
|
+
* ```
|
|
25
|
+
*
|
|
26
|
+
* ## Import
|
|
27
|
+
*
|
|
28
|
+
* ```sh
|
|
29
|
+
* $ pulumi import sdwan:index/transportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature:TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd"
|
|
30
|
+
* ```
|
|
31
|
+
*/
|
|
32
|
+
class TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature extends pulumi.CustomResource {
|
|
33
|
+
/**
|
|
34
|
+
* Get an existing TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature resource's state with the given name, ID, and optional extra
|
|
35
|
+
* properties used to qualify the lookup.
|
|
36
|
+
*
|
|
37
|
+
* @param name The _unique_ name of the resulting resource.
|
|
38
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
39
|
+
* @param state Any extra arguments used during the lookup.
|
|
40
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
41
|
+
*/
|
|
42
|
+
static get(name, id, state, opts) {
|
|
43
|
+
return new TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
44
|
+
}
|
|
45
|
+
/**
|
|
46
|
+
* Returns true if the given object is an instance of TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature. This is designed to work even
|
|
47
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
48
|
+
*/
|
|
49
|
+
static isInstance(obj) {
|
|
50
|
+
if (obj === undefined || obj === null) {
|
|
51
|
+
return false;
|
|
52
|
+
}
|
|
53
|
+
return obj['__pulumiType'] === TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature.__pulumiType;
|
|
54
|
+
}
|
|
55
|
+
constructor(name, argsOrState, opts) {
|
|
56
|
+
let resourceInputs = {};
|
|
57
|
+
opts = opts || {};
|
|
58
|
+
if (opts.id) {
|
|
59
|
+
const state = argsOrState;
|
|
60
|
+
resourceInputs["featureProfileId"] = state ? state.featureProfileId : undefined;
|
|
61
|
+
resourceInputs["transportTrackerGroupFeatureId"] = state ? state.transportTrackerGroupFeatureId : undefined;
|
|
62
|
+
resourceInputs["transportWanVpnFeatureId"] = state ? state.transportWanVpnFeatureId : undefined;
|
|
63
|
+
resourceInputs["transportWanVpnInterfaceCellularFeatureId"] = state ? state.transportWanVpnInterfaceCellularFeatureId : undefined;
|
|
64
|
+
}
|
|
65
|
+
else {
|
|
66
|
+
const args = argsOrState;
|
|
67
|
+
if ((!args || args.featureProfileId === undefined) && !opts.urn) {
|
|
68
|
+
throw new Error("Missing required property 'featureProfileId'");
|
|
69
|
+
}
|
|
70
|
+
if ((!args || args.transportTrackerGroupFeatureId === undefined) && !opts.urn) {
|
|
71
|
+
throw new Error("Missing required property 'transportTrackerGroupFeatureId'");
|
|
72
|
+
}
|
|
73
|
+
if ((!args || args.transportWanVpnFeatureId === undefined) && !opts.urn) {
|
|
74
|
+
throw new Error("Missing required property 'transportWanVpnFeatureId'");
|
|
75
|
+
}
|
|
76
|
+
if ((!args || args.transportWanVpnInterfaceCellularFeatureId === undefined) && !opts.urn) {
|
|
77
|
+
throw new Error("Missing required property 'transportWanVpnInterfaceCellularFeatureId'");
|
|
78
|
+
}
|
|
79
|
+
resourceInputs["featureProfileId"] = args ? args.featureProfileId : undefined;
|
|
80
|
+
resourceInputs["transportTrackerGroupFeatureId"] = args ? args.transportTrackerGroupFeatureId : undefined;
|
|
81
|
+
resourceInputs["transportWanVpnFeatureId"] = args ? args.transportWanVpnFeatureId : undefined;
|
|
82
|
+
resourceInputs["transportWanVpnInterfaceCellularFeatureId"] = args ? args.transportWanVpnInterfaceCellularFeatureId : undefined;
|
|
83
|
+
}
|
|
84
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
85
|
+
super(TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature.__pulumiType, name, resourceInputs, opts);
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
exports.TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature = TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature;
|
|
89
|
+
/** @internal */
|
|
90
|
+
TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature.__pulumiType = 'sdwan:index/transportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature:TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature';
|
|
91
|
+
//# sourceMappingURL=transportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"transportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature.js","sourceRoot":"","sources":["../transportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* This resource can manage a Transport WAN VPN Interface GRE Feature Associate Tracker Feature .
|
|
4
|
+
* - Minimum SD-WAN Manager version: `20.12.0`
|
|
5
|
+
*
|
|
6
|
+
* ## Example Usage
|
|
7
|
+
*
|
|
8
|
+
* ```typescript
|
|
9
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
10
|
+
* import * as sdwan from "@pulumi/sdwan";
|
|
11
|
+
*
|
|
12
|
+
* const example = new sdwan.TransportWanVpnInterfaceGreFeatureAssociateTrackerFeature("example", {
|
|
13
|
+
* featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
|
|
14
|
+
* transportWanVpnFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
|
|
15
|
+
* transportWanVpnInterfaceGreFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
|
|
16
|
+
* transportTrackerFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
|
|
17
|
+
* });
|
|
18
|
+
* ```
|
|
19
|
+
*
|
|
20
|
+
* ## Import
|
|
21
|
+
*
|
|
22
|
+
* ```sh
|
|
23
|
+
* $ pulumi import sdwan:index/transportWanVpnInterfaceGreFeatureAssociateTrackerFeature:TransportWanVpnInterfaceGreFeatureAssociateTrackerFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd"
|
|
24
|
+
* ```
|
|
25
|
+
*/
|
|
26
|
+
export declare class TransportWanVpnInterfaceGreFeatureAssociateTrackerFeature extends pulumi.CustomResource {
|
|
27
|
+
/**
|
|
28
|
+
* Get an existing TransportWanVpnInterfaceGreFeatureAssociateTrackerFeature resource's state with the given name, ID, and optional extra
|
|
29
|
+
* properties used to qualify the lookup.
|
|
30
|
+
*
|
|
31
|
+
* @param name The _unique_ name of the resulting resource.
|
|
32
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
33
|
+
* @param state Any extra arguments used during the lookup.
|
|
34
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
35
|
+
*/
|
|
36
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: TransportWanVpnInterfaceGreFeatureAssociateTrackerFeatureState, opts?: pulumi.CustomResourceOptions): TransportWanVpnInterfaceGreFeatureAssociateTrackerFeature;
|
|
37
|
+
/**
|
|
38
|
+
* Returns true if the given object is an instance of TransportWanVpnInterfaceGreFeatureAssociateTrackerFeature. This is designed to work even
|
|
39
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
40
|
+
*/
|
|
41
|
+
static isInstance(obj: any): obj is TransportWanVpnInterfaceGreFeatureAssociateTrackerFeature;
|
|
42
|
+
/**
|
|
43
|
+
* Feature Profile ID
|
|
44
|
+
*/
|
|
45
|
+
readonly featureProfileId: pulumi.Output<string>;
|
|
46
|
+
/**
|
|
47
|
+
* Transport Tracker Feature ID
|
|
48
|
+
*/
|
|
49
|
+
readonly transportTrackerFeatureId: pulumi.Output<string>;
|
|
50
|
+
/**
|
|
51
|
+
* Transport WAN VPN Feature ID
|
|
52
|
+
*/
|
|
53
|
+
readonly transportWanVpnFeatureId: pulumi.Output<string>;
|
|
54
|
+
/**
|
|
55
|
+
* Transport WAN VPN Interface GRE Feature ID
|
|
56
|
+
*/
|
|
57
|
+
readonly transportWanVpnInterfaceGreFeatureId: pulumi.Output<string>;
|
|
58
|
+
/**
|
|
59
|
+
* Create a TransportWanVpnInterfaceGreFeatureAssociateTrackerFeature resource with the given unique name, arguments, and options.
|
|
60
|
+
*
|
|
61
|
+
* @param name The _unique_ name of the resource.
|
|
62
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
63
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
64
|
+
*/
|
|
65
|
+
constructor(name: string, args: TransportWanVpnInterfaceGreFeatureAssociateTrackerFeatureArgs, opts?: pulumi.CustomResourceOptions);
|
|
66
|
+
}
|
|
67
|
+
/**
|
|
68
|
+
* Input properties used for looking up and filtering TransportWanVpnInterfaceGreFeatureAssociateTrackerFeature resources.
|
|
69
|
+
*/
|
|
70
|
+
export interface TransportWanVpnInterfaceGreFeatureAssociateTrackerFeatureState {
|
|
71
|
+
/**
|
|
72
|
+
* Feature Profile ID
|
|
73
|
+
*/
|
|
74
|
+
featureProfileId?: pulumi.Input<string>;
|
|
75
|
+
/**
|
|
76
|
+
* Transport Tracker Feature ID
|
|
77
|
+
*/
|
|
78
|
+
transportTrackerFeatureId?: pulumi.Input<string>;
|
|
79
|
+
/**
|
|
80
|
+
* Transport WAN VPN Feature ID
|
|
81
|
+
*/
|
|
82
|
+
transportWanVpnFeatureId?: pulumi.Input<string>;
|
|
83
|
+
/**
|
|
84
|
+
* Transport WAN VPN Interface GRE Feature ID
|
|
85
|
+
*/
|
|
86
|
+
transportWanVpnInterfaceGreFeatureId?: pulumi.Input<string>;
|
|
87
|
+
}
|
|
88
|
+
/**
|
|
89
|
+
* The set of arguments for constructing a TransportWanVpnInterfaceGreFeatureAssociateTrackerFeature resource.
|
|
90
|
+
*/
|
|
91
|
+
export interface TransportWanVpnInterfaceGreFeatureAssociateTrackerFeatureArgs {
|
|
92
|
+
/**
|
|
93
|
+
* Feature Profile ID
|
|
94
|
+
*/
|
|
95
|
+
featureProfileId: pulumi.Input<string>;
|
|
96
|
+
/**
|
|
97
|
+
* Transport Tracker Feature ID
|
|
98
|
+
*/
|
|
99
|
+
transportTrackerFeatureId: pulumi.Input<string>;
|
|
100
|
+
/**
|
|
101
|
+
* Transport WAN VPN Feature ID
|
|
102
|
+
*/
|
|
103
|
+
transportWanVpnFeatureId: pulumi.Input<string>;
|
|
104
|
+
/**
|
|
105
|
+
* Transport WAN VPN Interface GRE Feature ID
|
|
106
|
+
*/
|
|
107
|
+
transportWanVpnInterfaceGreFeatureId: pulumi.Input<string>;
|
|
108
|
+
}
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.TransportWanVpnInterfaceGreFeatureAssociateTrackerFeature = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* This resource can manage a Transport WAN VPN Interface GRE Feature Associate Tracker Feature .
|
|
10
|
+
* - Minimum SD-WAN Manager version: `20.12.0`
|
|
11
|
+
*
|
|
12
|
+
* ## Example Usage
|
|
13
|
+
*
|
|
14
|
+
* ```typescript
|
|
15
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
16
|
+
* import * as sdwan from "@pulumi/sdwan";
|
|
17
|
+
*
|
|
18
|
+
* const example = new sdwan.TransportWanVpnInterfaceGreFeatureAssociateTrackerFeature("example", {
|
|
19
|
+
* featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
|
|
20
|
+
* transportWanVpnFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
|
|
21
|
+
* transportWanVpnInterfaceGreFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
|
|
22
|
+
* transportTrackerFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
|
|
23
|
+
* });
|
|
24
|
+
* ```
|
|
25
|
+
*
|
|
26
|
+
* ## Import
|
|
27
|
+
*
|
|
28
|
+
* ```sh
|
|
29
|
+
* $ pulumi import sdwan:index/transportWanVpnInterfaceGreFeatureAssociateTrackerFeature:TransportWanVpnInterfaceGreFeatureAssociateTrackerFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd"
|
|
30
|
+
* ```
|
|
31
|
+
*/
|
|
32
|
+
class TransportWanVpnInterfaceGreFeatureAssociateTrackerFeature extends pulumi.CustomResource {
|
|
33
|
+
/**
|
|
34
|
+
* Get an existing TransportWanVpnInterfaceGreFeatureAssociateTrackerFeature resource's state with the given name, ID, and optional extra
|
|
35
|
+
* properties used to qualify the lookup.
|
|
36
|
+
*
|
|
37
|
+
* @param name The _unique_ name of the resulting resource.
|
|
38
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
39
|
+
* @param state Any extra arguments used during the lookup.
|
|
40
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
41
|
+
*/
|
|
42
|
+
static get(name, id, state, opts) {
|
|
43
|
+
return new TransportWanVpnInterfaceGreFeatureAssociateTrackerFeature(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
44
|
+
}
|
|
45
|
+
/**
|
|
46
|
+
* Returns true if the given object is an instance of TransportWanVpnInterfaceGreFeatureAssociateTrackerFeature. This is designed to work even
|
|
47
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
48
|
+
*/
|
|
49
|
+
static isInstance(obj) {
|
|
50
|
+
if (obj === undefined || obj === null) {
|
|
51
|
+
return false;
|
|
52
|
+
}
|
|
53
|
+
return obj['__pulumiType'] === TransportWanVpnInterfaceGreFeatureAssociateTrackerFeature.__pulumiType;
|
|
54
|
+
}
|
|
55
|
+
constructor(name, argsOrState, opts) {
|
|
56
|
+
let resourceInputs = {};
|
|
57
|
+
opts = opts || {};
|
|
58
|
+
if (opts.id) {
|
|
59
|
+
const state = argsOrState;
|
|
60
|
+
resourceInputs["featureProfileId"] = state ? state.featureProfileId : undefined;
|
|
61
|
+
resourceInputs["transportTrackerFeatureId"] = state ? state.transportTrackerFeatureId : undefined;
|
|
62
|
+
resourceInputs["transportWanVpnFeatureId"] = state ? state.transportWanVpnFeatureId : undefined;
|
|
63
|
+
resourceInputs["transportWanVpnInterfaceGreFeatureId"] = state ? state.transportWanVpnInterfaceGreFeatureId : undefined;
|
|
64
|
+
}
|
|
65
|
+
else {
|
|
66
|
+
const args = argsOrState;
|
|
67
|
+
if ((!args || args.featureProfileId === undefined) && !opts.urn) {
|
|
68
|
+
throw new Error("Missing required property 'featureProfileId'");
|
|
69
|
+
}
|
|
70
|
+
if ((!args || args.transportTrackerFeatureId === undefined) && !opts.urn) {
|
|
71
|
+
throw new Error("Missing required property 'transportTrackerFeatureId'");
|
|
72
|
+
}
|
|
73
|
+
if ((!args || args.transportWanVpnFeatureId === undefined) && !opts.urn) {
|
|
74
|
+
throw new Error("Missing required property 'transportWanVpnFeatureId'");
|
|
75
|
+
}
|
|
76
|
+
if ((!args || args.transportWanVpnInterfaceGreFeatureId === undefined) && !opts.urn) {
|
|
77
|
+
throw new Error("Missing required property 'transportWanVpnInterfaceGreFeatureId'");
|
|
78
|
+
}
|
|
79
|
+
resourceInputs["featureProfileId"] = args ? args.featureProfileId : undefined;
|
|
80
|
+
resourceInputs["transportTrackerFeatureId"] = args ? args.transportTrackerFeatureId : undefined;
|
|
81
|
+
resourceInputs["transportWanVpnFeatureId"] = args ? args.transportWanVpnFeatureId : undefined;
|
|
82
|
+
resourceInputs["transportWanVpnInterfaceGreFeatureId"] = args ? args.transportWanVpnInterfaceGreFeatureId : undefined;
|
|
83
|
+
}
|
|
84
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
85
|
+
super(TransportWanVpnInterfaceGreFeatureAssociateTrackerFeature.__pulumiType, name, resourceInputs, opts);
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
exports.TransportWanVpnInterfaceGreFeatureAssociateTrackerFeature = TransportWanVpnInterfaceGreFeatureAssociateTrackerFeature;
|
|
89
|
+
/** @internal */
|
|
90
|
+
TransportWanVpnInterfaceGreFeatureAssociateTrackerFeature.__pulumiType = 'sdwan:index/transportWanVpnInterfaceGreFeatureAssociateTrackerFeature:TransportWanVpnInterfaceGreFeatureAssociateTrackerFeature';
|
|
91
|
+
//# sourceMappingURL=transportWanVpnInterfaceGreFeatureAssociateTrackerFeature.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"transportWanVpnInterfaceGreFeatureAssociateTrackerFeature.js","sourceRoot":"","sources":["../transportWanVpnInterfaceGreFeatureAssociateTrackerFeature.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* This resource can manage a Transport WAN VPN Interface IPSEC Feature Associate Tracker Feature .
|
|
4
|
+
* - Minimum SD-WAN Manager version: `20.12.0`
|
|
5
|
+
*
|
|
6
|
+
* ## Example Usage
|
|
7
|
+
*
|
|
8
|
+
* ```typescript
|
|
9
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
10
|
+
* import * as sdwan from "@pulumi/sdwan";
|
|
11
|
+
*
|
|
12
|
+
* const example = new sdwan.TransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature("example", {
|
|
13
|
+
* featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
|
|
14
|
+
* transportWanVpnFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
|
|
15
|
+
* transportWanVpnInterfaceIpsecFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
|
|
16
|
+
* transportTrackerFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
|
|
17
|
+
* });
|
|
18
|
+
* ```
|
|
19
|
+
*
|
|
20
|
+
* ## Import
|
|
21
|
+
*
|
|
22
|
+
* ```sh
|
|
23
|
+
* $ pulumi import sdwan:index/transportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature:TransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd"
|
|
24
|
+
* ```
|
|
25
|
+
*/
|
|
26
|
+
export declare class TransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature extends pulumi.CustomResource {
|
|
27
|
+
/**
|
|
28
|
+
* Get an existing TransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature resource's state with the given name, ID, and optional extra
|
|
29
|
+
* properties used to qualify the lookup.
|
|
30
|
+
*
|
|
31
|
+
* @param name The _unique_ name of the resulting resource.
|
|
32
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
33
|
+
* @param state Any extra arguments used during the lookup.
|
|
34
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
35
|
+
*/
|
|
36
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: TransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeatureState, opts?: pulumi.CustomResourceOptions): TransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature;
|
|
37
|
+
/**
|
|
38
|
+
* Returns true if the given object is an instance of TransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature. This is designed to work even
|
|
39
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
40
|
+
*/
|
|
41
|
+
static isInstance(obj: any): obj is TransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature;
|
|
42
|
+
/**
|
|
43
|
+
* Feature Profile ID
|
|
44
|
+
*/
|
|
45
|
+
readonly featureProfileId: pulumi.Output<string>;
|
|
46
|
+
/**
|
|
47
|
+
* Transport Tracker Feature ID
|
|
48
|
+
*/
|
|
49
|
+
readonly transportTrackerFeatureId: pulumi.Output<string>;
|
|
50
|
+
/**
|
|
51
|
+
* Transport WAN VPN Feature ID
|
|
52
|
+
*/
|
|
53
|
+
readonly transportWanVpnFeatureId: pulumi.Output<string>;
|
|
54
|
+
/**
|
|
55
|
+
* Transport WAN VPN Interface IPSEC Feature ID
|
|
56
|
+
*/
|
|
57
|
+
readonly transportWanVpnInterfaceIpsecFeatureId: pulumi.Output<string>;
|
|
58
|
+
/**
|
|
59
|
+
* Create a TransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature resource with the given unique name, arguments, and options.
|
|
60
|
+
*
|
|
61
|
+
* @param name The _unique_ name of the resource.
|
|
62
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
63
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
64
|
+
*/
|
|
65
|
+
constructor(name: string, args: TransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeatureArgs, opts?: pulumi.CustomResourceOptions);
|
|
66
|
+
}
|
|
67
|
+
/**
|
|
68
|
+
* Input properties used for looking up and filtering TransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature resources.
|
|
69
|
+
*/
|
|
70
|
+
export interface TransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeatureState {
|
|
71
|
+
/**
|
|
72
|
+
* Feature Profile ID
|
|
73
|
+
*/
|
|
74
|
+
featureProfileId?: pulumi.Input<string>;
|
|
75
|
+
/**
|
|
76
|
+
* Transport Tracker Feature ID
|
|
77
|
+
*/
|
|
78
|
+
transportTrackerFeatureId?: pulumi.Input<string>;
|
|
79
|
+
/**
|
|
80
|
+
* Transport WAN VPN Feature ID
|
|
81
|
+
*/
|
|
82
|
+
transportWanVpnFeatureId?: pulumi.Input<string>;
|
|
83
|
+
/**
|
|
84
|
+
* Transport WAN VPN Interface IPSEC Feature ID
|
|
85
|
+
*/
|
|
86
|
+
transportWanVpnInterfaceIpsecFeatureId?: pulumi.Input<string>;
|
|
87
|
+
}
|
|
88
|
+
/**
|
|
89
|
+
* The set of arguments for constructing a TransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature resource.
|
|
90
|
+
*/
|
|
91
|
+
export interface TransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeatureArgs {
|
|
92
|
+
/**
|
|
93
|
+
* Feature Profile ID
|
|
94
|
+
*/
|
|
95
|
+
featureProfileId: pulumi.Input<string>;
|
|
96
|
+
/**
|
|
97
|
+
* Transport Tracker Feature ID
|
|
98
|
+
*/
|
|
99
|
+
transportTrackerFeatureId: pulumi.Input<string>;
|
|
100
|
+
/**
|
|
101
|
+
* Transport WAN VPN Feature ID
|
|
102
|
+
*/
|
|
103
|
+
transportWanVpnFeatureId: pulumi.Input<string>;
|
|
104
|
+
/**
|
|
105
|
+
* Transport WAN VPN Interface IPSEC Feature ID
|
|
106
|
+
*/
|
|
107
|
+
transportWanVpnInterfaceIpsecFeatureId: pulumi.Input<string>;
|
|
108
|
+
}
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.TransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* This resource can manage a Transport WAN VPN Interface IPSEC Feature Associate Tracker Feature .
|
|
10
|
+
* - Minimum SD-WAN Manager version: `20.12.0`
|
|
11
|
+
*
|
|
12
|
+
* ## Example Usage
|
|
13
|
+
*
|
|
14
|
+
* ```typescript
|
|
15
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
16
|
+
* import * as sdwan from "@pulumi/sdwan";
|
|
17
|
+
*
|
|
18
|
+
* const example = new sdwan.TransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature("example", {
|
|
19
|
+
* featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
|
|
20
|
+
* transportWanVpnFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
|
|
21
|
+
* transportWanVpnInterfaceIpsecFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
|
|
22
|
+
* transportTrackerFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
|
|
23
|
+
* });
|
|
24
|
+
* ```
|
|
25
|
+
*
|
|
26
|
+
* ## Import
|
|
27
|
+
*
|
|
28
|
+
* ```sh
|
|
29
|
+
* $ pulumi import sdwan:index/transportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature:TransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd"
|
|
30
|
+
* ```
|
|
31
|
+
*/
|
|
32
|
+
class TransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature extends pulumi.CustomResource {
|
|
33
|
+
/**
|
|
34
|
+
* Get an existing TransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature resource's state with the given name, ID, and optional extra
|
|
35
|
+
* properties used to qualify the lookup.
|
|
36
|
+
*
|
|
37
|
+
* @param name The _unique_ name of the resulting resource.
|
|
38
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
39
|
+
* @param state Any extra arguments used during the lookup.
|
|
40
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
41
|
+
*/
|
|
42
|
+
static get(name, id, state, opts) {
|
|
43
|
+
return new TransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
44
|
+
}
|
|
45
|
+
/**
|
|
46
|
+
* Returns true if the given object is an instance of TransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature. This is designed to work even
|
|
47
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
48
|
+
*/
|
|
49
|
+
static isInstance(obj) {
|
|
50
|
+
if (obj === undefined || obj === null) {
|
|
51
|
+
return false;
|
|
52
|
+
}
|
|
53
|
+
return obj['__pulumiType'] === TransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature.__pulumiType;
|
|
54
|
+
}
|
|
55
|
+
constructor(name, argsOrState, opts) {
|
|
56
|
+
let resourceInputs = {};
|
|
57
|
+
opts = opts || {};
|
|
58
|
+
if (opts.id) {
|
|
59
|
+
const state = argsOrState;
|
|
60
|
+
resourceInputs["featureProfileId"] = state ? state.featureProfileId : undefined;
|
|
61
|
+
resourceInputs["transportTrackerFeatureId"] = state ? state.transportTrackerFeatureId : undefined;
|
|
62
|
+
resourceInputs["transportWanVpnFeatureId"] = state ? state.transportWanVpnFeatureId : undefined;
|
|
63
|
+
resourceInputs["transportWanVpnInterfaceIpsecFeatureId"] = state ? state.transportWanVpnInterfaceIpsecFeatureId : undefined;
|
|
64
|
+
}
|
|
65
|
+
else {
|
|
66
|
+
const args = argsOrState;
|
|
67
|
+
if ((!args || args.featureProfileId === undefined) && !opts.urn) {
|
|
68
|
+
throw new Error("Missing required property 'featureProfileId'");
|
|
69
|
+
}
|
|
70
|
+
if ((!args || args.transportTrackerFeatureId === undefined) && !opts.urn) {
|
|
71
|
+
throw new Error("Missing required property 'transportTrackerFeatureId'");
|
|
72
|
+
}
|
|
73
|
+
if ((!args || args.transportWanVpnFeatureId === undefined) && !opts.urn) {
|
|
74
|
+
throw new Error("Missing required property 'transportWanVpnFeatureId'");
|
|
75
|
+
}
|
|
76
|
+
if ((!args || args.transportWanVpnInterfaceIpsecFeatureId === undefined) && !opts.urn) {
|
|
77
|
+
throw new Error("Missing required property 'transportWanVpnInterfaceIpsecFeatureId'");
|
|
78
|
+
}
|
|
79
|
+
resourceInputs["featureProfileId"] = args ? args.featureProfileId : undefined;
|
|
80
|
+
resourceInputs["transportTrackerFeatureId"] = args ? args.transportTrackerFeatureId : undefined;
|
|
81
|
+
resourceInputs["transportWanVpnFeatureId"] = args ? args.transportWanVpnFeatureId : undefined;
|
|
82
|
+
resourceInputs["transportWanVpnInterfaceIpsecFeatureId"] = args ? args.transportWanVpnInterfaceIpsecFeatureId : undefined;
|
|
83
|
+
}
|
|
84
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
85
|
+
super(TransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature.__pulumiType, name, resourceInputs, opts);
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
exports.TransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature = TransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature;
|
|
89
|
+
/** @internal */
|
|
90
|
+
TransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature.__pulumiType = 'sdwan:index/transportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature:TransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature';
|
|
91
|
+
//# sourceMappingURL=transportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"transportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature.js","sourceRoot":"","sources":["../transportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature.ts"],"names":[],"mappings":"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"}
|