@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 Service LAN VPN Interface Ethernet 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.ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature("example", {
|
|
13
|
+
* featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
|
|
14
|
+
* serviceLanVpnFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
|
|
15
|
+
* serviceLanVpnInterfaceEthernetFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
|
|
16
|
+
* serviceTrackerFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
|
|
17
|
+
* });
|
|
18
|
+
* ```
|
|
19
|
+
*
|
|
20
|
+
* ## Import
|
|
21
|
+
*
|
|
22
|
+
* ```sh
|
|
23
|
+
* $ pulumi import sdwan:index/serviceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature:ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd"
|
|
24
|
+
* ```
|
|
25
|
+
*/
|
|
26
|
+
export declare class ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature extends pulumi.CustomResource {
|
|
27
|
+
/**
|
|
28
|
+
* Get an existing ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature 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?: ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeatureState, opts?: pulumi.CustomResourceOptions): ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature;
|
|
37
|
+
/**
|
|
38
|
+
* Returns true if the given object is an instance of ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature. 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 ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature;
|
|
42
|
+
/**
|
|
43
|
+
* Feature Profile ID
|
|
44
|
+
*/
|
|
45
|
+
readonly featureProfileId: pulumi.Output<string>;
|
|
46
|
+
/**
|
|
47
|
+
* Service LAN VPN Feature ID
|
|
48
|
+
*/
|
|
49
|
+
readonly serviceLanVpnFeatureId: pulumi.Output<string>;
|
|
50
|
+
/**
|
|
51
|
+
* Service LAN VPN Interface Ethernet Feature ID
|
|
52
|
+
*/
|
|
53
|
+
readonly serviceLanVpnInterfaceEthernetFeatureId: pulumi.Output<string>;
|
|
54
|
+
/**
|
|
55
|
+
* Service Tracker Feature ID
|
|
56
|
+
*/
|
|
57
|
+
readonly serviceTrackerFeatureId: pulumi.Output<string>;
|
|
58
|
+
/**
|
|
59
|
+
* Create a ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature 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: ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeatureArgs, opts?: pulumi.CustomResourceOptions);
|
|
66
|
+
}
|
|
67
|
+
/**
|
|
68
|
+
* Input properties used for looking up and filtering ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature resources.
|
|
69
|
+
*/
|
|
70
|
+
export interface ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeatureState {
|
|
71
|
+
/**
|
|
72
|
+
* Feature Profile ID
|
|
73
|
+
*/
|
|
74
|
+
featureProfileId?: pulumi.Input<string>;
|
|
75
|
+
/**
|
|
76
|
+
* Service LAN VPN Feature ID
|
|
77
|
+
*/
|
|
78
|
+
serviceLanVpnFeatureId?: pulumi.Input<string>;
|
|
79
|
+
/**
|
|
80
|
+
* Service LAN VPN Interface Ethernet Feature ID
|
|
81
|
+
*/
|
|
82
|
+
serviceLanVpnInterfaceEthernetFeatureId?: pulumi.Input<string>;
|
|
83
|
+
/**
|
|
84
|
+
* Service Tracker Feature ID
|
|
85
|
+
*/
|
|
86
|
+
serviceTrackerFeatureId?: pulumi.Input<string>;
|
|
87
|
+
}
|
|
88
|
+
/**
|
|
89
|
+
* The set of arguments for constructing a ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature resource.
|
|
90
|
+
*/
|
|
91
|
+
export interface ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeatureArgs {
|
|
92
|
+
/**
|
|
93
|
+
* Feature Profile ID
|
|
94
|
+
*/
|
|
95
|
+
featureProfileId: pulumi.Input<string>;
|
|
96
|
+
/**
|
|
97
|
+
* Service LAN VPN Feature ID
|
|
98
|
+
*/
|
|
99
|
+
serviceLanVpnFeatureId: pulumi.Input<string>;
|
|
100
|
+
/**
|
|
101
|
+
* Service LAN VPN Interface Ethernet Feature ID
|
|
102
|
+
*/
|
|
103
|
+
serviceLanVpnInterfaceEthernetFeatureId: pulumi.Input<string>;
|
|
104
|
+
/**
|
|
105
|
+
* Service Tracker Feature ID
|
|
106
|
+
*/
|
|
107
|
+
serviceTrackerFeatureId: 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.ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* This resource can manage a Service LAN VPN Interface Ethernet 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.ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature("example", {
|
|
19
|
+
* featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
|
|
20
|
+
* serviceLanVpnFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
|
|
21
|
+
* serviceLanVpnInterfaceEthernetFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
|
|
22
|
+
* serviceTrackerFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
|
|
23
|
+
* });
|
|
24
|
+
* ```
|
|
25
|
+
*
|
|
26
|
+
* ## Import
|
|
27
|
+
*
|
|
28
|
+
* ```sh
|
|
29
|
+
* $ pulumi import sdwan:index/serviceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature:ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd"
|
|
30
|
+
* ```
|
|
31
|
+
*/
|
|
32
|
+
class ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature extends pulumi.CustomResource {
|
|
33
|
+
/**
|
|
34
|
+
* Get an existing ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature 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 ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
44
|
+
}
|
|
45
|
+
/**
|
|
46
|
+
* Returns true if the given object is an instance of ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature. 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'] === ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature.__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["serviceLanVpnFeatureId"] = state ? state.serviceLanVpnFeatureId : undefined;
|
|
62
|
+
resourceInputs["serviceLanVpnInterfaceEthernetFeatureId"] = state ? state.serviceLanVpnInterfaceEthernetFeatureId : undefined;
|
|
63
|
+
resourceInputs["serviceTrackerFeatureId"] = state ? state.serviceTrackerFeatureId : 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.serviceLanVpnFeatureId === undefined) && !opts.urn) {
|
|
71
|
+
throw new Error("Missing required property 'serviceLanVpnFeatureId'");
|
|
72
|
+
}
|
|
73
|
+
if ((!args || args.serviceLanVpnInterfaceEthernetFeatureId === undefined) && !opts.urn) {
|
|
74
|
+
throw new Error("Missing required property 'serviceLanVpnInterfaceEthernetFeatureId'");
|
|
75
|
+
}
|
|
76
|
+
if ((!args || args.serviceTrackerFeatureId === undefined) && !opts.urn) {
|
|
77
|
+
throw new Error("Missing required property 'serviceTrackerFeatureId'");
|
|
78
|
+
}
|
|
79
|
+
resourceInputs["featureProfileId"] = args ? args.featureProfileId : undefined;
|
|
80
|
+
resourceInputs["serviceLanVpnFeatureId"] = args ? args.serviceLanVpnFeatureId : undefined;
|
|
81
|
+
resourceInputs["serviceLanVpnInterfaceEthernetFeatureId"] = args ? args.serviceLanVpnInterfaceEthernetFeatureId : undefined;
|
|
82
|
+
resourceInputs["serviceTrackerFeatureId"] = args ? args.serviceTrackerFeatureId : undefined;
|
|
83
|
+
}
|
|
84
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
85
|
+
super(ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature.__pulumiType, name, resourceInputs, opts);
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
exports.ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature = ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature;
|
|
89
|
+
/** @internal */
|
|
90
|
+
ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature.__pulumiType = 'sdwan:index/serviceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature:ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature';
|
|
91
|
+
//# sourceMappingURL=serviceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"serviceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature.js","sourceRoot":"","sources":["../serviceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature.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 Service LAN VPN Interface Ethernet 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.ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeature("example", {
|
|
13
|
+
* featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
|
|
14
|
+
* serviceLanVpnFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
|
|
15
|
+
* serviceLanVpnInterfaceEthernetFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
|
|
16
|
+
* serviceTrackerGroupFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
|
|
17
|
+
* });
|
|
18
|
+
* ```
|
|
19
|
+
*
|
|
20
|
+
* ## Import
|
|
21
|
+
*
|
|
22
|
+
* ```sh
|
|
23
|
+
* $ pulumi import sdwan:index/serviceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeature:ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd"
|
|
24
|
+
* ```
|
|
25
|
+
*/
|
|
26
|
+
export declare class ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeature extends pulumi.CustomResource {
|
|
27
|
+
/**
|
|
28
|
+
* Get an existing ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeature 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?: ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeatureState, opts?: pulumi.CustomResourceOptions): ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeature;
|
|
37
|
+
/**
|
|
38
|
+
* Returns true if the given object is an instance of ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeature. 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 ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeature;
|
|
42
|
+
/**
|
|
43
|
+
* Feature Profile ID
|
|
44
|
+
*/
|
|
45
|
+
readonly featureProfileId: pulumi.Output<string>;
|
|
46
|
+
/**
|
|
47
|
+
* Service LAN VPN Feature ID
|
|
48
|
+
*/
|
|
49
|
+
readonly serviceLanVpnFeatureId: pulumi.Output<string>;
|
|
50
|
+
/**
|
|
51
|
+
* Service LAN VPN Interface Ethernet Feature ID
|
|
52
|
+
*/
|
|
53
|
+
readonly serviceLanVpnInterfaceEthernetFeatureId: pulumi.Output<string>;
|
|
54
|
+
/**
|
|
55
|
+
* Service Tracker Group Feature ID
|
|
56
|
+
*/
|
|
57
|
+
readonly serviceTrackerGroupFeatureId: pulumi.Output<string>;
|
|
58
|
+
/**
|
|
59
|
+
* Create a ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeature 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: ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeatureArgs, opts?: pulumi.CustomResourceOptions);
|
|
66
|
+
}
|
|
67
|
+
/**
|
|
68
|
+
* Input properties used for looking up and filtering ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeature resources.
|
|
69
|
+
*/
|
|
70
|
+
export interface ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeatureState {
|
|
71
|
+
/**
|
|
72
|
+
* Feature Profile ID
|
|
73
|
+
*/
|
|
74
|
+
featureProfileId?: pulumi.Input<string>;
|
|
75
|
+
/**
|
|
76
|
+
* Service LAN VPN Feature ID
|
|
77
|
+
*/
|
|
78
|
+
serviceLanVpnFeatureId?: pulumi.Input<string>;
|
|
79
|
+
/**
|
|
80
|
+
* Service LAN VPN Interface Ethernet Feature ID
|
|
81
|
+
*/
|
|
82
|
+
serviceLanVpnInterfaceEthernetFeatureId?: pulumi.Input<string>;
|
|
83
|
+
/**
|
|
84
|
+
* Service Tracker Group Feature ID
|
|
85
|
+
*/
|
|
86
|
+
serviceTrackerGroupFeatureId?: pulumi.Input<string>;
|
|
87
|
+
}
|
|
88
|
+
/**
|
|
89
|
+
* The set of arguments for constructing a ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeature resource.
|
|
90
|
+
*/
|
|
91
|
+
export interface ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeatureArgs {
|
|
92
|
+
/**
|
|
93
|
+
* Feature Profile ID
|
|
94
|
+
*/
|
|
95
|
+
featureProfileId: pulumi.Input<string>;
|
|
96
|
+
/**
|
|
97
|
+
* Service LAN VPN Feature ID
|
|
98
|
+
*/
|
|
99
|
+
serviceLanVpnFeatureId: pulumi.Input<string>;
|
|
100
|
+
/**
|
|
101
|
+
* Service LAN VPN Interface Ethernet Feature ID
|
|
102
|
+
*/
|
|
103
|
+
serviceLanVpnInterfaceEthernetFeatureId: pulumi.Input<string>;
|
|
104
|
+
/**
|
|
105
|
+
* Service Tracker Group Feature ID
|
|
106
|
+
*/
|
|
107
|
+
serviceTrackerGroupFeatureId: 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.ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeature = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* This resource can manage a Service LAN VPN Interface Ethernet 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.ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeature("example", {
|
|
19
|
+
* featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
|
|
20
|
+
* serviceLanVpnFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
|
|
21
|
+
* serviceLanVpnInterfaceEthernetFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
|
|
22
|
+
* serviceTrackerGroupFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
|
|
23
|
+
* });
|
|
24
|
+
* ```
|
|
25
|
+
*
|
|
26
|
+
* ## Import
|
|
27
|
+
*
|
|
28
|
+
* ```sh
|
|
29
|
+
* $ pulumi import sdwan:index/serviceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeature:ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd"
|
|
30
|
+
* ```
|
|
31
|
+
*/
|
|
32
|
+
class ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeature extends pulumi.CustomResource {
|
|
33
|
+
/**
|
|
34
|
+
* Get an existing ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeature 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 ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeature(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
44
|
+
}
|
|
45
|
+
/**
|
|
46
|
+
* Returns true if the given object is an instance of ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeature. 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'] === ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeature.__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["serviceLanVpnFeatureId"] = state ? state.serviceLanVpnFeatureId : undefined;
|
|
62
|
+
resourceInputs["serviceLanVpnInterfaceEthernetFeatureId"] = state ? state.serviceLanVpnInterfaceEthernetFeatureId : undefined;
|
|
63
|
+
resourceInputs["serviceTrackerGroupFeatureId"] = state ? state.serviceTrackerGroupFeatureId : 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.serviceLanVpnFeatureId === undefined) && !opts.urn) {
|
|
71
|
+
throw new Error("Missing required property 'serviceLanVpnFeatureId'");
|
|
72
|
+
}
|
|
73
|
+
if ((!args || args.serviceLanVpnInterfaceEthernetFeatureId === undefined) && !opts.urn) {
|
|
74
|
+
throw new Error("Missing required property 'serviceLanVpnInterfaceEthernetFeatureId'");
|
|
75
|
+
}
|
|
76
|
+
if ((!args || args.serviceTrackerGroupFeatureId === undefined) && !opts.urn) {
|
|
77
|
+
throw new Error("Missing required property 'serviceTrackerGroupFeatureId'");
|
|
78
|
+
}
|
|
79
|
+
resourceInputs["featureProfileId"] = args ? args.featureProfileId : undefined;
|
|
80
|
+
resourceInputs["serviceLanVpnFeatureId"] = args ? args.serviceLanVpnFeatureId : undefined;
|
|
81
|
+
resourceInputs["serviceLanVpnInterfaceEthernetFeatureId"] = args ? args.serviceLanVpnInterfaceEthernetFeatureId : undefined;
|
|
82
|
+
resourceInputs["serviceTrackerGroupFeatureId"] = args ? args.serviceTrackerGroupFeatureId : undefined;
|
|
83
|
+
}
|
|
84
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
85
|
+
super(ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeature.__pulumiType, name, resourceInputs, opts);
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
exports.ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeature = ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeature;
|
|
89
|
+
/** @internal */
|
|
90
|
+
ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeature.__pulumiType = 'sdwan:index/serviceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeature:ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeature';
|
|
91
|
+
//# sourceMappingURL=serviceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeature.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"serviceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeature.js","sourceRoot":"","sources":["../serviceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeature.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 Cellular 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.TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature("example", {
|
|
13
|
+
* featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
|
|
14
|
+
* transportWanVpnFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
|
|
15
|
+
* transportWanVpnInterfaceCellularFeatureId: "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/transportWanVpnInterfaceCellularFeatureAssociateTrackerFeature:TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd"
|
|
24
|
+
* ```
|
|
25
|
+
*/
|
|
26
|
+
export declare class TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature extends pulumi.CustomResource {
|
|
27
|
+
/**
|
|
28
|
+
* Get an existing TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature 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?: TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeatureState, opts?: pulumi.CustomResourceOptions): TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature;
|
|
37
|
+
/**
|
|
38
|
+
* Returns true if the given object is an instance of TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature. 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 TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature;
|
|
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 Cellular Feature ID
|
|
56
|
+
*/
|
|
57
|
+
readonly transportWanVpnInterfaceCellularFeatureId: pulumi.Output<string>;
|
|
58
|
+
/**
|
|
59
|
+
* Create a TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature 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: TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeatureArgs, opts?: pulumi.CustomResourceOptions);
|
|
66
|
+
}
|
|
67
|
+
/**
|
|
68
|
+
* Input properties used for looking up and filtering TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature resources.
|
|
69
|
+
*/
|
|
70
|
+
export interface TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeatureState {
|
|
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 Cellular Feature ID
|
|
85
|
+
*/
|
|
86
|
+
transportWanVpnInterfaceCellularFeatureId?: pulumi.Input<string>;
|
|
87
|
+
}
|
|
88
|
+
/**
|
|
89
|
+
* The set of arguments for constructing a TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature resource.
|
|
90
|
+
*/
|
|
91
|
+
export interface TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeatureArgs {
|
|
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 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.TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature = 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 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.TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature("example", {
|
|
19
|
+
* featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
|
|
20
|
+
* transportWanVpnFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
|
|
21
|
+
* transportWanVpnInterfaceCellularFeatureId: "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/transportWanVpnInterfaceCellularFeatureAssociateTrackerFeature:TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd"
|
|
30
|
+
* ```
|
|
31
|
+
*/
|
|
32
|
+
class TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature extends pulumi.CustomResource {
|
|
33
|
+
/**
|
|
34
|
+
* Get an existing TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature 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 TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
44
|
+
}
|
|
45
|
+
/**
|
|
46
|
+
* Returns true if the given object is an instance of TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature. 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'] === TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature.__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["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.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.transportWanVpnInterfaceCellularFeatureId === undefined) && !opts.urn) {
|
|
77
|
+
throw new Error("Missing required property 'transportWanVpnInterfaceCellularFeatureId'");
|
|
78
|
+
}
|
|
79
|
+
resourceInputs["featureProfileId"] = args ? args.featureProfileId : undefined;
|
|
80
|
+
resourceInputs["transportTrackerFeatureId"] = args ? args.transportTrackerFeatureId : 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(TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature.__pulumiType, name, resourceInputs, opts);
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
exports.TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature = TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature;
|
|
89
|
+
/** @internal */
|
|
90
|
+
TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature.__pulumiType = 'sdwan:index/transportWanVpnInterfaceCellularFeatureAssociateTrackerFeature:TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature';
|
|
91
|
+
//# sourceMappingURL=transportWanVpnInterfaceCellularFeatureAssociateTrackerFeature.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"transportWanVpnInterfaceCellularFeatureAssociateTrackerFeature.js","sourceRoot":"","sources":["../transportWanVpnInterfaceCellularFeatureAssociateTrackerFeature.ts"],"names":[],"mappings":"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"}
|