@pulumi/sdwan 0.6.0-alpha.1767125078 → 0.6.0
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/applicationPriorityFeatureProfile.d.ts +1 -1
- package/applicationPriorityFeatureProfile.js +1 -1
- package/applicationPriorityTrafficPolicyPolicy.d.ts +2 -2
- package/applicationPriorityTrafficPolicyPolicy.js +2 -2
- package/cliFeatureProfile.d.ts +1 -1
- package/cliFeatureProfile.js +1 -1
- package/dnsSecurityFeatureProfile.d.ts +1 -1
- package/dnsSecurityFeatureProfile.js +1 -1
- package/embeddedSecurityFeatureProfile.d.ts +1 -1
- package/embeddedSecurityFeatureProfile.js +1 -1
- package/getServiceLanVpnFeature.d.ts +4 -0
- package/getServiceLanVpnFeature.js.map +1 -1
- package/getSystemCaCertificateFeature.d.ts +89 -0
- package/getSystemCaCertificateFeature.js +54 -0
- package/getSystemCaCertificateFeature.js.map +1 -0
- package/index.d.ts +6 -0
- package/index.js +15 -7
- package/index.js.map +1 -1
- package/otherFeatureProfile.d.ts +1 -1
- package/otherFeatureProfile.js +1 -1
- package/package.json +2 -2
- package/policyObjectApplicationList.d.ts +1 -1
- package/policyObjectApplicationList.js +1 -1
- package/policyObjectAsPathList.d.ts +1 -1
- package/policyObjectAsPathList.js +1 -1
- package/policyObjectClassMap.d.ts +1 -1
- package/policyObjectClassMap.js +1 -1
- package/policyObjectColorList.d.ts +1 -1
- package/policyObjectColorList.js +1 -1
- package/policyObjectDataIpv4PrefixList.d.ts +1 -1
- package/policyObjectDataIpv4PrefixList.js +1 -1
- package/policyObjectExpandedCommunityList.d.ts +1 -1
- package/policyObjectExpandedCommunityList.js +1 -1
- package/policyObjectExtendedCommunityList.d.ts +1 -1
- package/policyObjectExtendedCommunityList.js +1 -1
- package/policyObjectFeatureProfile.d.ts +1 -1
- package/policyObjectFeatureProfile.js +1 -1
- package/policyObjectMirror.d.ts +1 -1
- package/policyObjectMirror.js +1 -1
- package/policyObjectPolicer.d.ts +1 -1
- package/policyObjectPolicer.js +1 -1
- package/policyObjectSecurityFqdnList.d.ts +1 -1
- package/policyObjectSecurityFqdnList.js +1 -1
- package/policyObjectSecurityPortList.d.ts +1 -1
- package/policyObjectSecurityPortList.js +1 -1
- package/policyObjectSecurityProtocolList.d.ts +1 -1
- package/policyObjectSecurityProtocolList.js +1 -1
- package/policyObjectSecurityUrlAllowList.d.ts +1 -1
- package/policyObjectSecurityUrlAllowList.js +1 -1
- package/policyObjectSecurityUrlBlockList.d.ts +1 -1
- package/policyObjectSecurityUrlBlockList.js +1 -1
- package/policyObjectTlocList.d.ts +1 -1
- package/policyObjectTlocList.js +1 -1
- package/serviceFeatureProfile.d.ts +1 -1
- package/serviceFeatureProfile.js +1 -1
- package/serviceLanVpnFeature.d.ts +20 -1
- package/serviceLanVpnFeature.js +10 -1
- package/serviceLanVpnFeature.js.map +1 -1
- package/serviceRoutingBgpFeature.d.ts +2 -2
- package/serviceRoutingBgpFeature.js +2 -2
- package/serviceRoutingOspfv3Ipv4Feature.d.ts +1 -1
- package/serviceRoutingOspfv3Ipv4Feature.js +1 -1
- package/serviceRoutingOspfv3Ipv6Feature.d.ts +1 -1
- package/serviceRoutingOspfv3Ipv6Feature.js +1 -1
- package/sigSecurityFeatureProfile.d.ts +1 -1
- package/sigSecurityFeatureProfile.js +1 -1
- package/systemCaCertificateFeature.d.ts +125 -0
- package/systemCaCertificateFeature.js +91 -0
- package/systemCaCertificateFeature.js.map +1 -0
- package/systemFeatureProfile.d.ts +1 -1
- package/systemFeatureProfile.js +1 -1
- package/systemLoggingFeature.d.ts +1 -1
- package/systemLoggingFeature.js +1 -1
- package/transportFeatureProfile.d.ts +1 -1
- package/transportFeatureProfile.js +1 -1
- package/transportRoutingBgpFeature.d.ts +2 -2
- package/transportRoutingBgpFeature.js +2 -2
- package/transportRoutingOspfv3Ipv4Feature.d.ts +1 -1
- package/transportRoutingOspfv3Ipv4Feature.js +1 -1
- package/transportRoutingOspfv3Ipv6Feature.d.ts +1 -1
- package/transportRoutingOspfv3Ipv6Feature.js +1 -1
- package/transportWanVpnFeature.d.ts +1 -1
- package/transportWanVpnFeature.js +1 -1
- package/types/input.d.ts +330 -63
- package/types/output.d.ts +597 -103
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "./types/input";
|
|
3
|
+
import * as outputs from "./types/output";
|
|
4
|
+
/**
|
|
5
|
+
* This resource can manage a System CA Certificate Feature.
|
|
6
|
+
* - Minimum SD-WAN Manager version: `20.13.0`
|
|
7
|
+
*
|
|
8
|
+
* ## Example Usage
|
|
9
|
+
*
|
|
10
|
+
* ```typescript
|
|
11
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
12
|
+
* import * as sdwan from "@pulumi/sdwan";
|
|
13
|
+
*
|
|
14
|
+
* const example = new sdwan.SystemCaCertificateFeature("example", {
|
|
15
|
+
* name: "Example",
|
|
16
|
+
* description: "My Example",
|
|
17
|
+
* featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
|
|
18
|
+
* certificates: [{
|
|
19
|
+
* trustPointName: "example",
|
|
20
|
+
* caCertificateId: "22a2f715-fed8-4031-b693-b5d43451a05e",
|
|
21
|
+
* }],
|
|
22
|
+
* });
|
|
23
|
+
* ```
|
|
24
|
+
*
|
|
25
|
+
* ## Import
|
|
26
|
+
*
|
|
27
|
+
* The `pulumi import` command can be used, for example:
|
|
28
|
+
*
|
|
29
|
+
* Expected import identifier with the format: "system_ca_certificate_feature_id,feature_profile_id"
|
|
30
|
+
*
|
|
31
|
+
* ```sh
|
|
32
|
+
* $ pulumi import sdwan:index/systemCaCertificateFeature:SystemCaCertificateFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd,f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac"
|
|
33
|
+
* ```
|
|
34
|
+
*/
|
|
35
|
+
export declare class SystemCaCertificateFeature extends pulumi.CustomResource {
|
|
36
|
+
/**
|
|
37
|
+
* Get an existing SystemCaCertificateFeature resource's state with the given name, ID, and optional extra
|
|
38
|
+
* properties used to qualify the lookup.
|
|
39
|
+
*
|
|
40
|
+
* @param name The _unique_ name of the resulting resource.
|
|
41
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
42
|
+
* @param state Any extra arguments used during the lookup.
|
|
43
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
44
|
+
*/
|
|
45
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: SystemCaCertificateFeatureState, opts?: pulumi.CustomResourceOptions): SystemCaCertificateFeature;
|
|
46
|
+
/**
|
|
47
|
+
* Returns true if the given object is an instance of SystemCaCertificateFeature. This is designed to work even
|
|
48
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
49
|
+
*/
|
|
50
|
+
static isInstance(obj: any): obj is SystemCaCertificateFeature;
|
|
51
|
+
/**
|
|
52
|
+
* Thirdparty CA Certificate List
|
|
53
|
+
*/
|
|
54
|
+
readonly certificates: pulumi.Output<outputs.SystemCaCertificateFeatureCertificate[] | undefined>;
|
|
55
|
+
/**
|
|
56
|
+
* The description of the Feature
|
|
57
|
+
*/
|
|
58
|
+
readonly description: pulumi.Output<string | undefined>;
|
|
59
|
+
/**
|
|
60
|
+
* Feature Profile ID
|
|
61
|
+
*/
|
|
62
|
+
readonly featureProfileId: pulumi.Output<string>;
|
|
63
|
+
/**
|
|
64
|
+
* The name of the Feature
|
|
65
|
+
*/
|
|
66
|
+
readonly name: pulumi.Output<string>;
|
|
67
|
+
/**
|
|
68
|
+
* The version of the Feature
|
|
69
|
+
*/
|
|
70
|
+
readonly version: pulumi.Output<number>;
|
|
71
|
+
/**
|
|
72
|
+
* Create a SystemCaCertificateFeature resource with the given unique name, arguments, and options.
|
|
73
|
+
*
|
|
74
|
+
* @param name The _unique_ name of the resource.
|
|
75
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
76
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
77
|
+
*/
|
|
78
|
+
constructor(name: string, args: SystemCaCertificateFeatureArgs, opts?: pulumi.CustomResourceOptions);
|
|
79
|
+
}
|
|
80
|
+
/**
|
|
81
|
+
* Input properties used for looking up and filtering SystemCaCertificateFeature resources.
|
|
82
|
+
*/
|
|
83
|
+
export interface SystemCaCertificateFeatureState {
|
|
84
|
+
/**
|
|
85
|
+
* Thirdparty CA Certificate List
|
|
86
|
+
*/
|
|
87
|
+
certificates?: pulumi.Input<pulumi.Input<inputs.SystemCaCertificateFeatureCertificate>[]>;
|
|
88
|
+
/**
|
|
89
|
+
* The description of the Feature
|
|
90
|
+
*/
|
|
91
|
+
description?: pulumi.Input<string>;
|
|
92
|
+
/**
|
|
93
|
+
* Feature Profile ID
|
|
94
|
+
*/
|
|
95
|
+
featureProfileId?: pulumi.Input<string>;
|
|
96
|
+
/**
|
|
97
|
+
* The name of the Feature
|
|
98
|
+
*/
|
|
99
|
+
name?: pulumi.Input<string>;
|
|
100
|
+
/**
|
|
101
|
+
* The version of the Feature
|
|
102
|
+
*/
|
|
103
|
+
version?: pulumi.Input<number>;
|
|
104
|
+
}
|
|
105
|
+
/**
|
|
106
|
+
* The set of arguments for constructing a SystemCaCertificateFeature resource.
|
|
107
|
+
*/
|
|
108
|
+
export interface SystemCaCertificateFeatureArgs {
|
|
109
|
+
/**
|
|
110
|
+
* Thirdparty CA Certificate List
|
|
111
|
+
*/
|
|
112
|
+
certificates?: pulumi.Input<pulumi.Input<inputs.SystemCaCertificateFeatureCertificate>[]>;
|
|
113
|
+
/**
|
|
114
|
+
* The description of the Feature
|
|
115
|
+
*/
|
|
116
|
+
description?: pulumi.Input<string>;
|
|
117
|
+
/**
|
|
118
|
+
* Feature Profile ID
|
|
119
|
+
*/
|
|
120
|
+
featureProfileId: pulumi.Input<string>;
|
|
121
|
+
/**
|
|
122
|
+
* The name of the Feature
|
|
123
|
+
*/
|
|
124
|
+
name?: pulumi.Input<string>;
|
|
125
|
+
}
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
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.SystemCaCertificateFeature = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* This resource can manage a System CA Certificate Feature.
|
|
10
|
+
* - Minimum SD-WAN Manager version: `20.13.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.SystemCaCertificateFeature("example", {
|
|
19
|
+
* name: "Example",
|
|
20
|
+
* description: "My Example",
|
|
21
|
+
* featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
|
|
22
|
+
* certificates: [{
|
|
23
|
+
* trustPointName: "example",
|
|
24
|
+
* caCertificateId: "22a2f715-fed8-4031-b693-b5d43451a05e",
|
|
25
|
+
* }],
|
|
26
|
+
* });
|
|
27
|
+
* ```
|
|
28
|
+
*
|
|
29
|
+
* ## Import
|
|
30
|
+
*
|
|
31
|
+
* The `pulumi import` command can be used, for example:
|
|
32
|
+
*
|
|
33
|
+
* Expected import identifier with the format: "system_ca_certificate_feature_id,feature_profile_id"
|
|
34
|
+
*
|
|
35
|
+
* ```sh
|
|
36
|
+
* $ pulumi import sdwan:index/systemCaCertificateFeature:SystemCaCertificateFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd,f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac"
|
|
37
|
+
* ```
|
|
38
|
+
*/
|
|
39
|
+
class SystemCaCertificateFeature extends pulumi.CustomResource {
|
|
40
|
+
/**
|
|
41
|
+
* Get an existing SystemCaCertificateFeature resource's state with the given name, ID, and optional extra
|
|
42
|
+
* properties used to qualify the lookup.
|
|
43
|
+
*
|
|
44
|
+
* @param name The _unique_ name of the resulting resource.
|
|
45
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
46
|
+
* @param state Any extra arguments used during the lookup.
|
|
47
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
48
|
+
*/
|
|
49
|
+
static get(name, id, state, opts) {
|
|
50
|
+
return new SystemCaCertificateFeature(name, state, { ...opts, id: id });
|
|
51
|
+
}
|
|
52
|
+
/**
|
|
53
|
+
* Returns true if the given object is an instance of SystemCaCertificateFeature. This is designed to work even
|
|
54
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
55
|
+
*/
|
|
56
|
+
static isInstance(obj) {
|
|
57
|
+
if (obj === undefined || obj === null) {
|
|
58
|
+
return false;
|
|
59
|
+
}
|
|
60
|
+
return obj['__pulumiType'] === SystemCaCertificateFeature.__pulumiType;
|
|
61
|
+
}
|
|
62
|
+
constructor(name, argsOrState, opts) {
|
|
63
|
+
let resourceInputs = {};
|
|
64
|
+
opts = opts || {};
|
|
65
|
+
if (opts.id) {
|
|
66
|
+
const state = argsOrState;
|
|
67
|
+
resourceInputs["certificates"] = state?.certificates;
|
|
68
|
+
resourceInputs["description"] = state?.description;
|
|
69
|
+
resourceInputs["featureProfileId"] = state?.featureProfileId;
|
|
70
|
+
resourceInputs["name"] = state?.name;
|
|
71
|
+
resourceInputs["version"] = state?.version;
|
|
72
|
+
}
|
|
73
|
+
else {
|
|
74
|
+
const args = argsOrState;
|
|
75
|
+
if (args?.featureProfileId === undefined && !opts.urn) {
|
|
76
|
+
throw new Error("Missing required property 'featureProfileId'");
|
|
77
|
+
}
|
|
78
|
+
resourceInputs["certificates"] = args?.certificates;
|
|
79
|
+
resourceInputs["description"] = args?.description;
|
|
80
|
+
resourceInputs["featureProfileId"] = args?.featureProfileId;
|
|
81
|
+
resourceInputs["name"] = args?.name;
|
|
82
|
+
resourceInputs["version"] = undefined /*out*/;
|
|
83
|
+
}
|
|
84
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
85
|
+
super(SystemCaCertificateFeature.__pulumiType, name, resourceInputs, opts);
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
exports.SystemCaCertificateFeature = SystemCaCertificateFeature;
|
|
89
|
+
/** @internal */
|
|
90
|
+
SystemCaCertificateFeature.__pulumiType = 'sdwan:index/systemCaCertificateFeature:SystemCaCertificateFeature';
|
|
91
|
+
//# sourceMappingURL=systemCaCertificateFeature.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"systemCaCertificateFeature.js","sourceRoot":"","sources":["../systemCaCertificateFeature.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA8BG;AACH,MAAa,0BAA2B,SAAQ,MAAM,CAAC,cAAc;IACjE;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAuC,EAAE,IAAmC;QACrI,OAAO,IAAI,0BAA0B,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IACjF,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,0BAA0B,CAAC,YAAY,CAAC;IAC3E,CAAC;IA+BD,YAAY,IAAY,EAAE,WAA8E,EAAE,IAAmC;QACzI,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA0D,CAAC;YACzE,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,EAAE,YAAY,CAAC;YACrD,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,EAAE,WAAW,CAAC;YACnD,cAAc,CAAC,kBAAkB,CAAC,GAAG,KAAK,EAAE,gBAAgB,CAAC;YAC7D,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,EAAE,OAAO,CAAC;SAC9C;aAAM;YACH,MAAM,IAAI,GAAG,WAAyD,CAAC;YACvE,IAAI,IAAI,EAAE,gBAAgB,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnD,MAAM,IAAI,KAAK,CAAC,8CAA8C,CAAC,CAAC;aACnE;YACD,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,EAAE,YAAY,CAAC;YACpD,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,EAAE,WAAW,CAAC;YAClD,cAAc,CAAC,kBAAkB,CAAC,GAAG,IAAI,EAAE,gBAAgB,CAAC;YAC5D,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,SAAS,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SACjD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,0BAA0B,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC/E,CAAC;;AAhFL,gEAiFC;AAnEG,gBAAgB;AACO,uCAAY,GAAG,mEAAmE,CAAC"}
|
package/systemFeatureProfile.js
CHANGED
|
@@ -7,7 +7,7 @@ const pulumi = require("@pulumi/pulumi");
|
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
9
|
* This resource can manage a System Feature Profile .
|
|
10
|
-
* - Minimum SD-WAN Manager version: `20.
|
|
10
|
+
* - Minimum SD-WAN Manager version: `20.15.0`
|
|
11
11
|
*
|
|
12
12
|
* ## Example Usage
|
|
13
13
|
*
|
package/systemLoggingFeature.js
CHANGED
|
@@ -7,7 +7,7 @@ const pulumi = require("@pulumi/pulumi");
|
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
9
|
* This resource can manage a Transport Feature Profile .
|
|
10
|
-
* - Minimum SD-WAN Manager version: `20.
|
|
10
|
+
* - Minimum SD-WAN Manager version: `20.15.0`
|
|
11
11
|
*
|
|
12
12
|
* ## Example Usage
|
|
13
13
|
*
|
|
@@ -73,9 +73,9 @@ import * as outputs from "./types/output";
|
|
|
73
73
|
* allowasInNumber: 3,
|
|
74
74
|
* addressFamilies: [{
|
|
75
75
|
* familyType: "ipv6-unicast",
|
|
76
|
-
* maxNumberOfPrefixes: 2000,
|
|
77
|
-
* threshold: 75,
|
|
78
76
|
* policyType: "restart",
|
|
77
|
+
* restartMaxNumberOfPrefixes: 2000,
|
|
78
|
+
* restartThreshold: 75,
|
|
79
79
|
* restartInterval: 30,
|
|
80
80
|
* }],
|
|
81
81
|
* }],
|
|
@@ -77,9 +77,9 @@ const utilities = require("./utilities");
|
|
|
77
77
|
* allowasInNumber: 3,
|
|
78
78
|
* addressFamilies: [{
|
|
79
79
|
* familyType: "ipv6-unicast",
|
|
80
|
-
* maxNumberOfPrefixes: 2000,
|
|
81
|
-
* threshold: 75,
|
|
82
80
|
* policyType: "restart",
|
|
81
|
+
* restartMaxNumberOfPrefixes: 2000,
|
|
82
|
+
* restartThreshold: 75,
|
|
83
83
|
* restartInterval: 30,
|
|
84
84
|
* }],
|
|
85
85
|
* }],
|
|
@@ -3,7 +3,7 @@ import * as inputs from "./types/input";
|
|
|
3
3
|
import * as outputs from "./types/output";
|
|
4
4
|
/**
|
|
5
5
|
* This resource can manage a Transport Routing OSPFv3 IPv4 Feature.
|
|
6
|
-
* - Minimum SD-WAN Manager version: `20.
|
|
6
|
+
* - Minimum SD-WAN Manager version: `20.15.0`
|
|
7
7
|
*
|
|
8
8
|
* ## Example Usage
|
|
9
9
|
*
|
|
@@ -7,7 +7,7 @@ const pulumi = require("@pulumi/pulumi");
|
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
9
|
* This resource can manage a Transport Routing OSPFv3 IPv4 Feature.
|
|
10
|
-
* - Minimum SD-WAN Manager version: `20.
|
|
10
|
+
* - Minimum SD-WAN Manager version: `20.15.0`
|
|
11
11
|
*
|
|
12
12
|
* ## Example Usage
|
|
13
13
|
*
|
|
@@ -3,7 +3,7 @@ import * as inputs from "./types/input";
|
|
|
3
3
|
import * as outputs from "./types/output";
|
|
4
4
|
/**
|
|
5
5
|
* This resource can manage a Transport Routing OSPFv3 IPv6 Feature.
|
|
6
|
-
* - Minimum SD-WAN Manager version: `20.
|
|
6
|
+
* - Minimum SD-WAN Manager version: `20.15.0`
|
|
7
7
|
*
|
|
8
8
|
* ## Example Usage
|
|
9
9
|
*
|
|
@@ -7,7 +7,7 @@ const pulumi = require("@pulumi/pulumi");
|
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
9
|
* This resource can manage a Transport Routing OSPFv3 IPv6 Feature.
|
|
10
|
-
* - Minimum SD-WAN Manager version: `20.
|
|
10
|
+
* - Minimum SD-WAN Manager version: `20.15.0`
|
|
11
11
|
*
|
|
12
12
|
* ## Example Usage
|
|
13
13
|
*
|
|
@@ -3,7 +3,7 @@ import * as inputs from "./types/input";
|
|
|
3
3
|
import * as outputs from "./types/output";
|
|
4
4
|
/**
|
|
5
5
|
* This resource can manage a Transport WAN VPN Feature.
|
|
6
|
-
* - Minimum SD-WAN Manager version: `20.
|
|
6
|
+
* - Minimum SD-WAN Manager version: `20.15.0`
|
|
7
7
|
*
|
|
8
8
|
* ## Example Usage
|
|
9
9
|
*
|
|
@@ -7,7 +7,7 @@ const pulumi = require("@pulumi/pulumi");
|
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
9
|
* This resource can manage a Transport WAN VPN Feature.
|
|
10
|
-
* - Minimum SD-WAN Manager version: `20.
|
|
10
|
+
* - Minimum SD-WAN Manager version: `20.15.0`
|
|
11
11
|
*
|
|
12
12
|
* ## Example Usage
|
|
13
13
|
*
|