@pulumi/sdwan 0.3.0-alpha.1736835519 → 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,62 @@
|
|
|
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.getTransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeatureOutput = exports.getTransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* This data source can read the Transport WAN VPN Interface Cellular Feature Associate Tracker Group Feature .
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as sdwan from "@pulumi/sdwan";
|
|
16
|
+
*
|
|
17
|
+
* const example = sdwan.getTransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature({
|
|
18
|
+
* featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
|
|
19
|
+
* transportWanVpnFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
|
|
20
|
+
* transportWanVpnInterfaceCellularFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
|
|
21
|
+
* id: "f6b2c44c-693c-4763-b010-895aa3d236bd",
|
|
22
|
+
* });
|
|
23
|
+
* ```
|
|
24
|
+
*/
|
|
25
|
+
function getTransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature(args, opts) {
|
|
26
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
27
|
+
return pulumi.runtime.invoke("sdwan:index/getTransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature:getTransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature", {
|
|
28
|
+
"featureProfileId": args.featureProfileId,
|
|
29
|
+
"id": args.id,
|
|
30
|
+
"transportWanVpnFeatureId": args.transportWanVpnFeatureId,
|
|
31
|
+
"transportWanVpnInterfaceCellularFeatureId": args.transportWanVpnInterfaceCellularFeatureId,
|
|
32
|
+
}, opts);
|
|
33
|
+
}
|
|
34
|
+
exports.getTransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature = getTransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature;
|
|
35
|
+
/**
|
|
36
|
+
* This data source can read the Transport WAN VPN Interface Cellular Feature Associate Tracker Group Feature .
|
|
37
|
+
*
|
|
38
|
+
* ## Example Usage
|
|
39
|
+
*
|
|
40
|
+
* ```typescript
|
|
41
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
42
|
+
* import * as sdwan from "@pulumi/sdwan";
|
|
43
|
+
*
|
|
44
|
+
* const example = sdwan.getTransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature({
|
|
45
|
+
* featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
|
|
46
|
+
* transportWanVpnFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
|
|
47
|
+
* transportWanVpnInterfaceCellularFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
|
|
48
|
+
* id: "f6b2c44c-693c-4763-b010-895aa3d236bd",
|
|
49
|
+
* });
|
|
50
|
+
* ```
|
|
51
|
+
*/
|
|
52
|
+
function getTransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeatureOutput(args, opts) {
|
|
53
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
54
|
+
return pulumi.runtime.invokeOutput("sdwan:index/getTransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature:getTransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature", {
|
|
55
|
+
"featureProfileId": args.featureProfileId,
|
|
56
|
+
"id": args.id,
|
|
57
|
+
"transportWanVpnFeatureId": args.transportWanVpnFeatureId,
|
|
58
|
+
"transportWanVpnInterfaceCellularFeatureId": args.transportWanVpnInterfaceCellularFeatureId,
|
|
59
|
+
}, opts);
|
|
60
|
+
}
|
|
61
|
+
exports.getTransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeatureOutput = getTransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeatureOutput;
|
|
62
|
+
//# sourceMappingURL=getTransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getTransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature.js","sourceRoot":"","sources":["../getTransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;GAgBG;AACH,SAAgB,sEAAsE,CAAC,IAAgF,EAAE,IAA2B;IAChM,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,2JAA2J,EAAE;QACtL,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,0BAA0B,EAAE,IAAI,CAAC,wBAAwB;QACzD,2CAA2C,EAAE,IAAI,CAAC,yCAAyC;KAC9F,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,wJAQC;AAiDD;;;;;;;;;;;;;;;;GAgBG;AACH,SAAgB,4EAA4E,CAAC,IAAsF,EAAE,IAAiC;IAClN,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,2JAA2J,EAAE;QAC5L,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,0BAA0B,EAAE,IAAI,CAAC,wBAAwB;QACzD,2CAA2C,EAAE,IAAI,CAAC,yCAAyC;KAC9F,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,oKAQC"}
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* This data source can read the Transport WAN VPN Interface GRE Feature Associate Tracker Feature .
|
|
4
|
+
*
|
|
5
|
+
* ## Example Usage
|
|
6
|
+
*
|
|
7
|
+
* ```typescript
|
|
8
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
9
|
+
* import * as sdwan from "@pulumi/sdwan";
|
|
10
|
+
*
|
|
11
|
+
* const example = sdwan.getTransportWanVpnInterfaceGreFeatureAssociateTrackerFeature({
|
|
12
|
+
* featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
|
|
13
|
+
* transportWanVpnFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
|
|
14
|
+
* transportWanVpnInterfaceGreFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
|
|
15
|
+
* id: "f6b2c44c-693c-4763-b010-895aa3d236bd",
|
|
16
|
+
* });
|
|
17
|
+
* ```
|
|
18
|
+
*/
|
|
19
|
+
export declare function getTransportWanVpnInterfaceGreFeatureAssociateTrackerFeature(args: GetTransportWanVpnInterfaceGreFeatureAssociateTrackerFeatureArgs, opts?: pulumi.InvokeOptions): Promise<GetTransportWanVpnInterfaceGreFeatureAssociateTrackerFeatureResult>;
|
|
20
|
+
/**
|
|
21
|
+
* A collection of arguments for invoking getTransportWanVpnInterfaceGreFeatureAssociateTrackerFeature.
|
|
22
|
+
*/
|
|
23
|
+
export interface GetTransportWanVpnInterfaceGreFeatureAssociateTrackerFeatureArgs {
|
|
24
|
+
/**
|
|
25
|
+
* Feature Profile ID
|
|
26
|
+
*/
|
|
27
|
+
featureProfileId: string;
|
|
28
|
+
/**
|
|
29
|
+
* The id of the object
|
|
30
|
+
*/
|
|
31
|
+
id: string;
|
|
32
|
+
/**
|
|
33
|
+
* Transport WAN VPN Feature ID
|
|
34
|
+
*/
|
|
35
|
+
transportWanVpnFeatureId: string;
|
|
36
|
+
/**
|
|
37
|
+
* Transport WAN VPN Interface GRE Feature ID
|
|
38
|
+
*/
|
|
39
|
+
transportWanVpnInterfaceGreFeatureId: string;
|
|
40
|
+
}
|
|
41
|
+
/**
|
|
42
|
+
* A collection of values returned by getTransportWanVpnInterfaceGreFeatureAssociateTrackerFeature.
|
|
43
|
+
*/
|
|
44
|
+
export interface GetTransportWanVpnInterfaceGreFeatureAssociateTrackerFeatureResult {
|
|
45
|
+
/**
|
|
46
|
+
* Feature Profile ID
|
|
47
|
+
*/
|
|
48
|
+
readonly featureProfileId: string;
|
|
49
|
+
/**
|
|
50
|
+
* The id of the object
|
|
51
|
+
*/
|
|
52
|
+
readonly id: string;
|
|
53
|
+
/**
|
|
54
|
+
* Transport Tracker Feature ID
|
|
55
|
+
*/
|
|
56
|
+
readonly transportTrackerFeatureId: string;
|
|
57
|
+
/**
|
|
58
|
+
* Transport WAN VPN Feature ID
|
|
59
|
+
*/
|
|
60
|
+
readonly transportWanVpnFeatureId: string;
|
|
61
|
+
/**
|
|
62
|
+
* Transport WAN VPN Interface GRE Feature ID
|
|
63
|
+
*/
|
|
64
|
+
readonly transportWanVpnInterfaceGreFeatureId: string;
|
|
65
|
+
}
|
|
66
|
+
/**
|
|
67
|
+
* This data source can read the Transport WAN VPN Interface GRE Feature Associate Tracker Feature .
|
|
68
|
+
*
|
|
69
|
+
* ## Example Usage
|
|
70
|
+
*
|
|
71
|
+
* ```typescript
|
|
72
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
73
|
+
* import * as sdwan from "@pulumi/sdwan";
|
|
74
|
+
*
|
|
75
|
+
* const example = sdwan.getTransportWanVpnInterfaceGreFeatureAssociateTrackerFeature({
|
|
76
|
+
* featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
|
|
77
|
+
* transportWanVpnFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
|
|
78
|
+
* transportWanVpnInterfaceGreFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
|
|
79
|
+
* id: "f6b2c44c-693c-4763-b010-895aa3d236bd",
|
|
80
|
+
* });
|
|
81
|
+
* ```
|
|
82
|
+
*/
|
|
83
|
+
export declare function getTransportWanVpnInterfaceGreFeatureAssociateTrackerFeatureOutput(args: GetTransportWanVpnInterfaceGreFeatureAssociateTrackerFeatureOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetTransportWanVpnInterfaceGreFeatureAssociateTrackerFeatureResult>;
|
|
84
|
+
/**
|
|
85
|
+
* A collection of arguments for invoking getTransportWanVpnInterfaceGreFeatureAssociateTrackerFeature.
|
|
86
|
+
*/
|
|
87
|
+
export interface GetTransportWanVpnInterfaceGreFeatureAssociateTrackerFeatureOutputArgs {
|
|
88
|
+
/**
|
|
89
|
+
* Feature Profile ID
|
|
90
|
+
*/
|
|
91
|
+
featureProfileId: pulumi.Input<string>;
|
|
92
|
+
/**
|
|
93
|
+
* The id of the object
|
|
94
|
+
*/
|
|
95
|
+
id: pulumi.Input<string>;
|
|
96
|
+
/**
|
|
97
|
+
* Transport WAN VPN Feature ID
|
|
98
|
+
*/
|
|
99
|
+
transportWanVpnFeatureId: pulumi.Input<string>;
|
|
100
|
+
/**
|
|
101
|
+
* Transport WAN VPN Interface GRE Feature ID
|
|
102
|
+
*/
|
|
103
|
+
transportWanVpnInterfaceGreFeatureId: pulumi.Input<string>;
|
|
104
|
+
}
|
|
@@ -0,0 +1,62 @@
|
|
|
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.getTransportWanVpnInterfaceGreFeatureAssociateTrackerFeatureOutput = exports.getTransportWanVpnInterfaceGreFeatureAssociateTrackerFeature = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* This data source can read the Transport WAN VPN Interface GRE Feature Associate Tracker Feature .
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as sdwan from "@pulumi/sdwan";
|
|
16
|
+
*
|
|
17
|
+
* const example = sdwan.getTransportWanVpnInterfaceGreFeatureAssociateTrackerFeature({
|
|
18
|
+
* featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
|
|
19
|
+
* transportWanVpnFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
|
|
20
|
+
* transportWanVpnInterfaceGreFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
|
|
21
|
+
* id: "f6b2c44c-693c-4763-b010-895aa3d236bd",
|
|
22
|
+
* });
|
|
23
|
+
* ```
|
|
24
|
+
*/
|
|
25
|
+
function getTransportWanVpnInterfaceGreFeatureAssociateTrackerFeature(args, opts) {
|
|
26
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
27
|
+
return pulumi.runtime.invoke("sdwan:index/getTransportWanVpnInterfaceGreFeatureAssociateTrackerFeature:getTransportWanVpnInterfaceGreFeatureAssociateTrackerFeature", {
|
|
28
|
+
"featureProfileId": args.featureProfileId,
|
|
29
|
+
"id": args.id,
|
|
30
|
+
"transportWanVpnFeatureId": args.transportWanVpnFeatureId,
|
|
31
|
+
"transportWanVpnInterfaceGreFeatureId": args.transportWanVpnInterfaceGreFeatureId,
|
|
32
|
+
}, opts);
|
|
33
|
+
}
|
|
34
|
+
exports.getTransportWanVpnInterfaceGreFeatureAssociateTrackerFeature = getTransportWanVpnInterfaceGreFeatureAssociateTrackerFeature;
|
|
35
|
+
/**
|
|
36
|
+
* This data source can read the Transport WAN VPN Interface GRE Feature Associate Tracker Feature .
|
|
37
|
+
*
|
|
38
|
+
* ## Example Usage
|
|
39
|
+
*
|
|
40
|
+
* ```typescript
|
|
41
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
42
|
+
* import * as sdwan from "@pulumi/sdwan";
|
|
43
|
+
*
|
|
44
|
+
* const example = sdwan.getTransportWanVpnInterfaceGreFeatureAssociateTrackerFeature({
|
|
45
|
+
* featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
|
|
46
|
+
* transportWanVpnFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
|
|
47
|
+
* transportWanVpnInterfaceGreFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
|
|
48
|
+
* id: "f6b2c44c-693c-4763-b010-895aa3d236bd",
|
|
49
|
+
* });
|
|
50
|
+
* ```
|
|
51
|
+
*/
|
|
52
|
+
function getTransportWanVpnInterfaceGreFeatureAssociateTrackerFeatureOutput(args, opts) {
|
|
53
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
54
|
+
return pulumi.runtime.invokeOutput("sdwan:index/getTransportWanVpnInterfaceGreFeatureAssociateTrackerFeature:getTransportWanVpnInterfaceGreFeatureAssociateTrackerFeature", {
|
|
55
|
+
"featureProfileId": args.featureProfileId,
|
|
56
|
+
"id": args.id,
|
|
57
|
+
"transportWanVpnFeatureId": args.transportWanVpnFeatureId,
|
|
58
|
+
"transportWanVpnInterfaceGreFeatureId": args.transportWanVpnInterfaceGreFeatureId,
|
|
59
|
+
}, opts);
|
|
60
|
+
}
|
|
61
|
+
exports.getTransportWanVpnInterfaceGreFeatureAssociateTrackerFeatureOutput = getTransportWanVpnInterfaceGreFeatureAssociateTrackerFeatureOutput;
|
|
62
|
+
//# sourceMappingURL=getTransportWanVpnInterfaceGreFeatureAssociateTrackerFeature.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getTransportWanVpnInterfaceGreFeatureAssociateTrackerFeature.js","sourceRoot":"","sources":["../getTransportWanVpnInterfaceGreFeatureAssociateTrackerFeature.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;GAgBG;AACH,SAAgB,4DAA4D,CAAC,IAAsE,EAAE,IAA2B;IAC5K,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,uIAAuI,EAAE;QAClK,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,0BAA0B,EAAE,IAAI,CAAC,wBAAwB;QACzD,sCAAsC,EAAE,IAAI,CAAC,oCAAoC;KACpF,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,oIAQC;AAiDD;;;;;;;;;;;;;;;;GAgBG;AACH,SAAgB,kEAAkE,CAAC,IAA4E,EAAE,IAAiC;IAC9L,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,uIAAuI,EAAE;QACxK,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,0BAA0B,EAAE,IAAI,CAAC,wBAAwB;QACzD,sCAAsC,EAAE,IAAI,CAAC,oCAAoC;KACpF,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,gJAQC"}
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* This data source can read the Transport WAN VPN Interface IPSEC Feature Associate Tracker Feature .
|
|
4
|
+
*
|
|
5
|
+
* ## Example Usage
|
|
6
|
+
*
|
|
7
|
+
* ```typescript
|
|
8
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
9
|
+
* import * as sdwan from "@pulumi/sdwan";
|
|
10
|
+
*
|
|
11
|
+
* const example = sdwan.getTransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature({
|
|
12
|
+
* featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
|
|
13
|
+
* transportWanVpnFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
|
|
14
|
+
* transportWanVpnInterfaceIpsecFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
|
|
15
|
+
* id: "f6b2c44c-693c-4763-b010-895aa3d236bd",
|
|
16
|
+
* });
|
|
17
|
+
* ```
|
|
18
|
+
*/
|
|
19
|
+
export declare function getTransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature(args: GetTransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeatureArgs, opts?: pulumi.InvokeOptions): Promise<GetTransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeatureResult>;
|
|
20
|
+
/**
|
|
21
|
+
* A collection of arguments for invoking getTransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature.
|
|
22
|
+
*/
|
|
23
|
+
export interface GetTransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeatureArgs {
|
|
24
|
+
/**
|
|
25
|
+
* Feature Profile ID
|
|
26
|
+
*/
|
|
27
|
+
featureProfileId: string;
|
|
28
|
+
/**
|
|
29
|
+
* The id of the object
|
|
30
|
+
*/
|
|
31
|
+
id: string;
|
|
32
|
+
/**
|
|
33
|
+
* Transport WAN VPN Feature ID
|
|
34
|
+
*/
|
|
35
|
+
transportWanVpnFeatureId: string;
|
|
36
|
+
/**
|
|
37
|
+
* Transport WAN VPN Interface IPSEC Feature ID
|
|
38
|
+
*/
|
|
39
|
+
transportWanVpnInterfaceIpsecFeatureId: string;
|
|
40
|
+
}
|
|
41
|
+
/**
|
|
42
|
+
* A collection of values returned by getTransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature.
|
|
43
|
+
*/
|
|
44
|
+
export interface GetTransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeatureResult {
|
|
45
|
+
/**
|
|
46
|
+
* Feature Profile ID
|
|
47
|
+
*/
|
|
48
|
+
readonly featureProfileId: string;
|
|
49
|
+
/**
|
|
50
|
+
* The id of the object
|
|
51
|
+
*/
|
|
52
|
+
readonly id: string;
|
|
53
|
+
/**
|
|
54
|
+
* Transport Tracker Feature ID
|
|
55
|
+
*/
|
|
56
|
+
readonly transportTrackerFeatureId: string;
|
|
57
|
+
/**
|
|
58
|
+
* Transport WAN VPN Feature ID
|
|
59
|
+
*/
|
|
60
|
+
readonly transportWanVpnFeatureId: string;
|
|
61
|
+
/**
|
|
62
|
+
* Transport WAN VPN Interface IPSEC Feature ID
|
|
63
|
+
*/
|
|
64
|
+
readonly transportWanVpnInterfaceIpsecFeatureId: string;
|
|
65
|
+
}
|
|
66
|
+
/**
|
|
67
|
+
* This data source can read the Transport WAN VPN Interface IPSEC Feature Associate Tracker Feature .
|
|
68
|
+
*
|
|
69
|
+
* ## Example Usage
|
|
70
|
+
*
|
|
71
|
+
* ```typescript
|
|
72
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
73
|
+
* import * as sdwan from "@pulumi/sdwan";
|
|
74
|
+
*
|
|
75
|
+
* const example = sdwan.getTransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature({
|
|
76
|
+
* featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
|
|
77
|
+
* transportWanVpnFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
|
|
78
|
+
* transportWanVpnInterfaceIpsecFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
|
|
79
|
+
* id: "f6b2c44c-693c-4763-b010-895aa3d236bd",
|
|
80
|
+
* });
|
|
81
|
+
* ```
|
|
82
|
+
*/
|
|
83
|
+
export declare function getTransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeatureOutput(args: GetTransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeatureOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetTransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeatureResult>;
|
|
84
|
+
/**
|
|
85
|
+
* A collection of arguments for invoking getTransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature.
|
|
86
|
+
*/
|
|
87
|
+
export interface GetTransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeatureOutputArgs {
|
|
88
|
+
/**
|
|
89
|
+
* Feature Profile ID
|
|
90
|
+
*/
|
|
91
|
+
featureProfileId: pulumi.Input<string>;
|
|
92
|
+
/**
|
|
93
|
+
* The id of the object
|
|
94
|
+
*/
|
|
95
|
+
id: pulumi.Input<string>;
|
|
96
|
+
/**
|
|
97
|
+
* Transport WAN VPN Feature ID
|
|
98
|
+
*/
|
|
99
|
+
transportWanVpnFeatureId: pulumi.Input<string>;
|
|
100
|
+
/**
|
|
101
|
+
* Transport WAN VPN Interface IPSEC Feature ID
|
|
102
|
+
*/
|
|
103
|
+
transportWanVpnInterfaceIpsecFeatureId: pulumi.Input<string>;
|
|
104
|
+
}
|
|
@@ -0,0 +1,62 @@
|
|
|
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.getTransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeatureOutput = exports.getTransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* This data source can read the Transport WAN VPN Interface IPSEC Feature Associate Tracker Feature .
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as sdwan from "@pulumi/sdwan";
|
|
16
|
+
*
|
|
17
|
+
* const example = sdwan.getTransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature({
|
|
18
|
+
* featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
|
|
19
|
+
* transportWanVpnFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
|
|
20
|
+
* transportWanVpnInterfaceIpsecFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
|
|
21
|
+
* id: "f6b2c44c-693c-4763-b010-895aa3d236bd",
|
|
22
|
+
* });
|
|
23
|
+
* ```
|
|
24
|
+
*/
|
|
25
|
+
function getTransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature(args, opts) {
|
|
26
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
27
|
+
return pulumi.runtime.invoke("sdwan:index/getTransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature:getTransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature", {
|
|
28
|
+
"featureProfileId": args.featureProfileId,
|
|
29
|
+
"id": args.id,
|
|
30
|
+
"transportWanVpnFeatureId": args.transportWanVpnFeatureId,
|
|
31
|
+
"transportWanVpnInterfaceIpsecFeatureId": args.transportWanVpnInterfaceIpsecFeatureId,
|
|
32
|
+
}, opts);
|
|
33
|
+
}
|
|
34
|
+
exports.getTransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature = getTransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature;
|
|
35
|
+
/**
|
|
36
|
+
* This data source can read the Transport WAN VPN Interface IPSEC Feature Associate Tracker Feature .
|
|
37
|
+
*
|
|
38
|
+
* ## Example Usage
|
|
39
|
+
*
|
|
40
|
+
* ```typescript
|
|
41
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
42
|
+
* import * as sdwan from "@pulumi/sdwan";
|
|
43
|
+
*
|
|
44
|
+
* const example = sdwan.getTransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature({
|
|
45
|
+
* featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
|
|
46
|
+
* transportWanVpnFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
|
|
47
|
+
* transportWanVpnInterfaceIpsecFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
|
|
48
|
+
* id: "f6b2c44c-693c-4763-b010-895aa3d236bd",
|
|
49
|
+
* });
|
|
50
|
+
* ```
|
|
51
|
+
*/
|
|
52
|
+
function getTransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeatureOutput(args, opts) {
|
|
53
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
54
|
+
return pulumi.runtime.invokeOutput("sdwan:index/getTransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature:getTransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature", {
|
|
55
|
+
"featureProfileId": args.featureProfileId,
|
|
56
|
+
"id": args.id,
|
|
57
|
+
"transportWanVpnFeatureId": args.transportWanVpnFeatureId,
|
|
58
|
+
"transportWanVpnInterfaceIpsecFeatureId": args.transportWanVpnInterfaceIpsecFeatureId,
|
|
59
|
+
}, opts);
|
|
60
|
+
}
|
|
61
|
+
exports.getTransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeatureOutput = getTransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeatureOutput;
|
|
62
|
+
//# sourceMappingURL=getTransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getTransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature.js","sourceRoot":"","sources":["../getTransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;GAgBG;AACH,SAAgB,8DAA8D,CAAC,IAAwE,EAAE,IAA2B;IAChL,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,2IAA2I,EAAE;QACtK,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,0BAA0B,EAAE,IAAI,CAAC,wBAAwB;QACzD,wCAAwC,EAAE,IAAI,CAAC,sCAAsC;KACxF,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,wIAQC;AAiDD;;;;;;;;;;;;;;;;GAgBG;AACH,SAAgB,oEAAoE,CAAC,IAA8E,EAAE,IAAiC;IAClM,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,2IAA2I,EAAE;QAC5K,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,0BAA0B,EAAE,IAAI,CAAC,wBAAwB;QACzD,wCAAwC,EAAE,IAAI,CAAC,sCAAsC;KACxF,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,oJAQC"}
|
package/index.d.ts
CHANGED
|
@@ -595,6 +595,12 @@ export declare const getServiceLanVpnInterfaceEthernetFeatureOutput: typeof impo
|
|
|
595
595
|
export { GetServiceLanVpnInterfaceEthernetFeatureAssociateDhcpServerFeatureArgs, GetServiceLanVpnInterfaceEthernetFeatureAssociateDhcpServerFeatureResult, GetServiceLanVpnInterfaceEthernetFeatureAssociateDhcpServerFeatureOutputArgs } from "./getServiceLanVpnInterfaceEthernetFeatureAssociateDhcpServerFeature";
|
|
596
596
|
export declare const getServiceLanVpnInterfaceEthernetFeatureAssociateDhcpServerFeature: typeof import("./getServiceLanVpnInterfaceEthernetFeatureAssociateDhcpServerFeature").getServiceLanVpnInterfaceEthernetFeatureAssociateDhcpServerFeature;
|
|
597
597
|
export declare const getServiceLanVpnInterfaceEthernetFeatureAssociateDhcpServerFeatureOutput: typeof import("./getServiceLanVpnInterfaceEthernetFeatureAssociateDhcpServerFeature").getServiceLanVpnInterfaceEthernetFeatureAssociateDhcpServerFeatureOutput;
|
|
598
|
+
export { GetServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeatureArgs, GetServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeatureResult, GetServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeatureOutputArgs } from "./getServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature";
|
|
599
|
+
export declare const getServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature: typeof import("./getServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature").getServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature;
|
|
600
|
+
export declare const getServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeatureOutput: typeof import("./getServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature").getServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeatureOutput;
|
|
601
|
+
export { GetServiceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeatureArgs, GetServiceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeatureResult, GetServiceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeatureOutputArgs } from "./getServiceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeature";
|
|
602
|
+
export declare const getServiceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeature: typeof import("./getServiceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeature").getServiceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeature;
|
|
603
|
+
export declare const getServiceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeatureOutput: typeof import("./getServiceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeature").getServiceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeatureOutput;
|
|
598
604
|
export { GetServiceLanVpnInterfaceGreFeatureArgs, GetServiceLanVpnInterfaceGreFeatureResult, GetServiceLanVpnInterfaceGreFeatureOutputArgs } from "./getServiceLanVpnInterfaceGreFeature";
|
|
599
605
|
export declare const getServiceLanVpnInterfaceGreFeature: typeof import("./getServiceLanVpnInterfaceGreFeature").getServiceLanVpnInterfaceGreFeature;
|
|
600
606
|
export declare const getServiceLanVpnInterfaceGreFeatureOutput: typeof import("./getServiceLanVpnInterfaceGreFeature").getServiceLanVpnInterfaceGreFeatureOutput;
|
|
@@ -799,6 +805,12 @@ export declare const getTransportWanVpnFeatureAssociateRoutingOspfv3Ipv6FeatureO
|
|
|
799
805
|
export { GetTransportWanVpnInterfaceCellularFeatureArgs, GetTransportWanVpnInterfaceCellularFeatureResult, GetTransportWanVpnInterfaceCellularFeatureOutputArgs } from "./getTransportWanVpnInterfaceCellularFeature";
|
|
800
806
|
export declare const getTransportWanVpnInterfaceCellularFeature: typeof import("./getTransportWanVpnInterfaceCellularFeature").getTransportWanVpnInterfaceCellularFeature;
|
|
801
807
|
export declare const getTransportWanVpnInterfaceCellularFeatureOutput: typeof import("./getTransportWanVpnInterfaceCellularFeature").getTransportWanVpnInterfaceCellularFeatureOutput;
|
|
808
|
+
export { GetTransportWanVpnInterfaceCellularFeatureAssociateTrackerFeatureArgs, GetTransportWanVpnInterfaceCellularFeatureAssociateTrackerFeatureResult, GetTransportWanVpnInterfaceCellularFeatureAssociateTrackerFeatureOutputArgs } from "./getTransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature";
|
|
809
|
+
export declare const getTransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature: typeof import("./getTransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature").getTransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature;
|
|
810
|
+
export declare const getTransportWanVpnInterfaceCellularFeatureAssociateTrackerFeatureOutput: typeof import("./getTransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature").getTransportWanVpnInterfaceCellularFeatureAssociateTrackerFeatureOutput;
|
|
811
|
+
export { GetTransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeatureArgs, GetTransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeatureResult, GetTransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeatureOutputArgs } from "./getTransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature";
|
|
812
|
+
export declare const getTransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature: typeof import("./getTransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature").getTransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature;
|
|
813
|
+
export declare const getTransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeatureOutput: typeof import("./getTransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature").getTransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeatureOutput;
|
|
802
814
|
export { GetTransportWanVpnInterfaceEthernetFeatureArgs, GetTransportWanVpnInterfaceEthernetFeatureResult, GetTransportWanVpnInterfaceEthernetFeatureOutputArgs } from "./getTransportWanVpnInterfaceEthernetFeature";
|
|
803
815
|
export declare const getTransportWanVpnInterfaceEthernetFeature: typeof import("./getTransportWanVpnInterfaceEthernetFeature").getTransportWanVpnInterfaceEthernetFeature;
|
|
804
816
|
export declare const getTransportWanVpnInterfaceEthernetFeatureOutput: typeof import("./getTransportWanVpnInterfaceEthernetFeature").getTransportWanVpnInterfaceEthernetFeatureOutput;
|
|
@@ -817,9 +829,15 @@ export declare const getTransportWanVpnInterfaceEthernetFeatureAssociateTrackerG
|
|
|
817
829
|
export { GetTransportWanVpnInterfaceGreFeatureArgs, GetTransportWanVpnInterfaceGreFeatureResult, GetTransportWanVpnInterfaceGreFeatureOutputArgs } from "./getTransportWanVpnInterfaceGreFeature";
|
|
818
830
|
export declare const getTransportWanVpnInterfaceGreFeature: typeof import("./getTransportWanVpnInterfaceGreFeature").getTransportWanVpnInterfaceGreFeature;
|
|
819
831
|
export declare const getTransportWanVpnInterfaceGreFeatureOutput: typeof import("./getTransportWanVpnInterfaceGreFeature").getTransportWanVpnInterfaceGreFeatureOutput;
|
|
832
|
+
export { GetTransportWanVpnInterfaceGreFeatureAssociateTrackerFeatureArgs, GetTransportWanVpnInterfaceGreFeatureAssociateTrackerFeatureResult, GetTransportWanVpnInterfaceGreFeatureAssociateTrackerFeatureOutputArgs } from "./getTransportWanVpnInterfaceGreFeatureAssociateTrackerFeature";
|
|
833
|
+
export declare const getTransportWanVpnInterfaceGreFeatureAssociateTrackerFeature: typeof import("./getTransportWanVpnInterfaceGreFeatureAssociateTrackerFeature").getTransportWanVpnInterfaceGreFeatureAssociateTrackerFeature;
|
|
834
|
+
export declare const getTransportWanVpnInterfaceGreFeatureAssociateTrackerFeatureOutput: typeof import("./getTransportWanVpnInterfaceGreFeatureAssociateTrackerFeature").getTransportWanVpnInterfaceGreFeatureAssociateTrackerFeatureOutput;
|
|
820
835
|
export { GetTransportWanVpnInterfaceIpsecFeatureArgs, GetTransportWanVpnInterfaceIpsecFeatureResult, GetTransportWanVpnInterfaceIpsecFeatureOutputArgs } from "./getTransportWanVpnInterfaceIpsecFeature";
|
|
821
836
|
export declare const getTransportWanVpnInterfaceIpsecFeature: typeof import("./getTransportWanVpnInterfaceIpsecFeature").getTransportWanVpnInterfaceIpsecFeature;
|
|
822
837
|
export declare const getTransportWanVpnInterfaceIpsecFeatureOutput: typeof import("./getTransportWanVpnInterfaceIpsecFeature").getTransportWanVpnInterfaceIpsecFeatureOutput;
|
|
838
|
+
export { GetTransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeatureArgs, GetTransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeatureResult, GetTransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeatureOutputArgs } from "./getTransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature";
|
|
839
|
+
export declare const getTransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature: typeof import("./getTransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature").getTransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature;
|
|
840
|
+
export declare const getTransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeatureOutput: typeof import("./getTransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature").getTransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeatureOutput;
|
|
823
841
|
export { GetTransportWanVpnInterfaceT1E1SerialFeatureArgs, GetTransportWanVpnInterfaceT1E1SerialFeatureResult, GetTransportWanVpnInterfaceT1E1SerialFeatureOutputArgs } from "./getTransportWanVpnInterfaceT1E1SerialFeature";
|
|
824
842
|
export declare const getTransportWanVpnInterfaceT1E1SerialFeature: typeof import("./getTransportWanVpnInterfaceT1E1SerialFeature").getTransportWanVpnInterfaceT1E1SerialFeature;
|
|
825
843
|
export declare const getTransportWanVpnInterfaceT1E1SerialFeatureOutput: typeof import("./getTransportWanVpnInterfaceT1E1SerialFeature").getTransportWanVpnInterfaceT1E1SerialFeatureOutput;
|
|
@@ -1084,6 +1102,12 @@ export declare const ServiceLanVpnInterfaceEthernetFeature: typeof import("./ser
|
|
|
1084
1102
|
export { ServiceLanVpnInterfaceEthernetFeatureAssociateDhcpServerFeatureArgs, ServiceLanVpnInterfaceEthernetFeatureAssociateDhcpServerFeatureState } from "./serviceLanVpnInterfaceEthernetFeatureAssociateDhcpServerFeature";
|
|
1085
1103
|
export type ServiceLanVpnInterfaceEthernetFeatureAssociateDhcpServerFeature = import("./serviceLanVpnInterfaceEthernetFeatureAssociateDhcpServerFeature").ServiceLanVpnInterfaceEthernetFeatureAssociateDhcpServerFeature;
|
|
1086
1104
|
export declare const ServiceLanVpnInterfaceEthernetFeatureAssociateDhcpServerFeature: typeof import("./serviceLanVpnInterfaceEthernetFeatureAssociateDhcpServerFeature").ServiceLanVpnInterfaceEthernetFeatureAssociateDhcpServerFeature;
|
|
1105
|
+
export { ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeatureArgs, ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeatureState } from "./serviceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature";
|
|
1106
|
+
export type ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature = import("./serviceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature").ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature;
|
|
1107
|
+
export declare const ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature: typeof import("./serviceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature").ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerFeature;
|
|
1108
|
+
export { ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeatureArgs, ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeatureState } from "./serviceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeature";
|
|
1109
|
+
export type ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeature = import("./serviceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeature").ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeature;
|
|
1110
|
+
export declare const ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeature: typeof import("./serviceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeature").ServiceLanVpnInterfaceEthernetFeatureAssociateTrackerGroupFeature;
|
|
1087
1111
|
export { ServiceLanVpnInterfaceGreFeatureArgs, ServiceLanVpnInterfaceGreFeatureState } from "./serviceLanVpnInterfaceGreFeature";
|
|
1088
1112
|
export type ServiceLanVpnInterfaceGreFeature = import("./serviceLanVpnInterfaceGreFeature").ServiceLanVpnInterfaceGreFeature;
|
|
1089
1113
|
export declare const ServiceLanVpnInterfaceGreFeature: typeof import("./serviceLanVpnInterfaceGreFeature").ServiceLanVpnInterfaceGreFeature;
|
|
@@ -1288,6 +1312,12 @@ export declare const TransportWanVpnFeatureAssociateRoutingOspfv3Ipv6Feature: ty
|
|
|
1288
1312
|
export { TransportWanVpnInterfaceCellularFeatureArgs, TransportWanVpnInterfaceCellularFeatureState } from "./transportWanVpnInterfaceCellularFeature";
|
|
1289
1313
|
export type TransportWanVpnInterfaceCellularFeature = import("./transportWanVpnInterfaceCellularFeature").TransportWanVpnInterfaceCellularFeature;
|
|
1290
1314
|
export declare const TransportWanVpnInterfaceCellularFeature: typeof import("./transportWanVpnInterfaceCellularFeature").TransportWanVpnInterfaceCellularFeature;
|
|
1315
|
+
export { TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeatureArgs, TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeatureState } from "./transportWanVpnInterfaceCellularFeatureAssociateTrackerFeature";
|
|
1316
|
+
export type TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature = import("./transportWanVpnInterfaceCellularFeatureAssociateTrackerFeature").TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature;
|
|
1317
|
+
export declare const TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature: typeof import("./transportWanVpnInterfaceCellularFeatureAssociateTrackerFeature").TransportWanVpnInterfaceCellularFeatureAssociateTrackerFeature;
|
|
1318
|
+
export { TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeatureArgs, TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeatureState } from "./transportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature";
|
|
1319
|
+
export type TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature = import("./transportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature").TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature;
|
|
1320
|
+
export declare const TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature: typeof import("./transportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature").TransportWanVpnInterfaceCellularFeatureAssociateTrackerGroupFeature;
|
|
1291
1321
|
export { TransportWanVpnInterfaceEthernetFeatureArgs, TransportWanVpnInterfaceEthernetFeatureState } from "./transportWanVpnInterfaceEthernetFeature";
|
|
1292
1322
|
export type TransportWanVpnInterfaceEthernetFeature = import("./transportWanVpnInterfaceEthernetFeature").TransportWanVpnInterfaceEthernetFeature;
|
|
1293
1323
|
export declare const TransportWanVpnInterfaceEthernetFeature: typeof import("./transportWanVpnInterfaceEthernetFeature").TransportWanVpnInterfaceEthernetFeature;
|
|
@@ -1306,9 +1336,15 @@ export declare const TransportWanVpnInterfaceEthernetFeatureAssociateTrackerGrou
|
|
|
1306
1336
|
export { TransportWanVpnInterfaceGreFeatureArgs, TransportWanVpnInterfaceGreFeatureState } from "./transportWanVpnInterfaceGreFeature";
|
|
1307
1337
|
export type TransportWanVpnInterfaceGreFeature = import("./transportWanVpnInterfaceGreFeature").TransportWanVpnInterfaceGreFeature;
|
|
1308
1338
|
export declare const TransportWanVpnInterfaceGreFeature: typeof import("./transportWanVpnInterfaceGreFeature").TransportWanVpnInterfaceGreFeature;
|
|
1339
|
+
export { TransportWanVpnInterfaceGreFeatureAssociateTrackerFeatureArgs, TransportWanVpnInterfaceGreFeatureAssociateTrackerFeatureState } from "./transportWanVpnInterfaceGreFeatureAssociateTrackerFeature";
|
|
1340
|
+
export type TransportWanVpnInterfaceGreFeatureAssociateTrackerFeature = import("./transportWanVpnInterfaceGreFeatureAssociateTrackerFeature").TransportWanVpnInterfaceGreFeatureAssociateTrackerFeature;
|
|
1341
|
+
export declare const TransportWanVpnInterfaceGreFeatureAssociateTrackerFeature: typeof import("./transportWanVpnInterfaceGreFeatureAssociateTrackerFeature").TransportWanVpnInterfaceGreFeatureAssociateTrackerFeature;
|
|
1309
1342
|
export { TransportWanVpnInterfaceIpsecFeatureArgs, TransportWanVpnInterfaceIpsecFeatureState } from "./transportWanVpnInterfaceIpsecFeature";
|
|
1310
1343
|
export type TransportWanVpnInterfaceIpsecFeature = import("./transportWanVpnInterfaceIpsecFeature").TransportWanVpnInterfaceIpsecFeature;
|
|
1311
1344
|
export declare const TransportWanVpnInterfaceIpsecFeature: typeof import("./transportWanVpnInterfaceIpsecFeature").TransportWanVpnInterfaceIpsecFeature;
|
|
1345
|
+
export { TransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeatureArgs, TransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeatureState } from "./transportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature";
|
|
1346
|
+
export type TransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature = import("./transportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature").TransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature;
|
|
1347
|
+
export declare const TransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature: typeof import("./transportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature").TransportWanVpnInterfaceIpsecFeatureAssociateTrackerFeature;
|
|
1312
1348
|
export { TransportWanVpnInterfaceT1E1SerialFeatureArgs, TransportWanVpnInterfaceT1E1SerialFeatureState } from "./transportWanVpnInterfaceT1E1SerialFeature";
|
|
1313
1349
|
export type TransportWanVpnInterfaceT1E1SerialFeature = import("./transportWanVpnInterfaceT1E1SerialFeature").TransportWanVpnInterfaceT1E1SerialFeature;
|
|
1314
1350
|
export declare const TransportWanVpnInterfaceT1E1SerialFeature: typeof import("./transportWanVpnInterfaceT1E1SerialFeature").TransportWanVpnInterfaceT1E1SerialFeature;
|