@pulumi/sdwan 0.4.0-alpha.1754980756 → 0.4.0-alpha.1755056572
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/ciscoSystemFeatureTemplate.d.ts +12 -0
- package/ciscoSystemFeatureTemplate.js +2 -0
- package/ciscoSystemFeatureTemplate.js.map +1 -1
- package/getCiscoSystemFeatureTemplate.d.ts +4 -0
- package/getCiscoSystemFeatureTemplate.js.map +1 -1
- package/getPolicyGroup.d.ts +83 -0
- package/getPolicyGroup.js +50 -0
- package/getPolicyGroup.js.map +1 -0
- package/index.d.ts +6 -0
- package/index.js +19 -11
- package/index.js.map +1 -1
- package/localizedPolicy.d.ts +28 -28
- package/package.json +2 -2
- package/policyGroup.d.ts +139 -0
- package/policyGroup.js +94 -0
- package/policyGroup.js.map +1 -0
- package/transportWanVpnInterfaceEthernetFeature.d.ts +264 -213
- package/transportWanVpnInterfaceEthernetFeature.js.map +1 -1
- package/types/input.d.ts +141 -40
- package/types/output.d.ts +255 -62
package/types/output.d.ts
CHANGED
|
@@ -75,7 +75,7 @@ export interface ApplicationAwareRoutingPolicyDefinitionSequenceActionEntrySlaCl
|
|
|
75
75
|
/**
|
|
76
76
|
* Preferred color group list ID, Attribute conditional on `type` being equal to `preferredColorGroup`
|
|
77
77
|
*/
|
|
78
|
-
|
|
78
|
+
preferredColorGroupListId?: string;
|
|
79
79
|
/**
|
|
80
80
|
* Preferred color group list version
|
|
81
81
|
*/
|
|
@@ -83,7 +83,7 @@ export interface ApplicationAwareRoutingPolicyDefinitionSequenceActionEntrySlaCl
|
|
|
83
83
|
/**
|
|
84
84
|
* SLA class list ID, Attribute conditional on `type` being equal to `name`
|
|
85
85
|
*/
|
|
86
|
-
|
|
86
|
+
slaClassListId?: string;
|
|
87
87
|
/**
|
|
88
88
|
* SLA class list version
|
|
89
89
|
*/
|
|
@@ -4238,14 +4238,14 @@ export interface CiscoVpnFeatureTemplateDnsIpv6Server {
|
|
|
4238
4238
|
roleVariable?: string;
|
|
4239
4239
|
}
|
|
4240
4240
|
export interface CiscoVpnFeatureTemplateIpv4StaticGreRoute {
|
|
4241
|
-
/**
|
|
4242
|
-
* Variable name
|
|
4243
|
-
*/
|
|
4244
|
-
interfaceVariable?: string;
|
|
4245
4241
|
/**
|
|
4246
4242
|
* List of GRE Interfaces
|
|
4247
4243
|
*/
|
|
4248
4244
|
interfaces?: string[];
|
|
4245
|
+
/**
|
|
4246
|
+
* Variable name
|
|
4247
|
+
*/
|
|
4248
|
+
interfacesVariable?: string;
|
|
4249
4249
|
/**
|
|
4250
4250
|
* Indicates if list item is considered optional.
|
|
4251
4251
|
*/
|
|
@@ -4265,14 +4265,14 @@ export interface CiscoVpnFeatureTemplateIpv4StaticGreRoute {
|
|
|
4265
4265
|
vpnId?: number;
|
|
4266
4266
|
}
|
|
4267
4267
|
export interface CiscoVpnFeatureTemplateIpv4StaticIpsecRoute {
|
|
4268
|
-
/**
|
|
4269
|
-
* Variable name
|
|
4270
|
-
*/
|
|
4271
|
-
interfaceVariable?: string;
|
|
4272
4268
|
/**
|
|
4273
4269
|
* List of IPSEC Interfaces (Separated by commas)
|
|
4274
4270
|
*/
|
|
4275
4271
|
interfaces?: string[];
|
|
4272
|
+
/**
|
|
4273
|
+
* Variable name
|
|
4274
|
+
*/
|
|
4275
|
+
interfacesVariable?: string;
|
|
4276
4276
|
/**
|
|
4277
4277
|
* Indicates if list item is considered optional.
|
|
4278
4278
|
*/
|
|
@@ -5741,7 +5741,7 @@ export interface ConfigurationGroupTopologyDeviceUnsupportedFeature {
|
|
|
5741
5741
|
parcelId?: string;
|
|
5742
5742
|
/**
|
|
5743
5743
|
* Parcel type
|
|
5744
|
-
* - Choices: `wan/vpn/interface/gre`, `wan/vpn/interface/ethernet`, `wan/vpn/interface/cellular`, `wan/vpn/interface/ipsec`, `wan/vpn/interface/serial`, `routing/ospf`, `lan/vpn/interface/ethernet`, `lan/vpn/interface/svi`, `lan/vpn/interface/ipsec`, `lan/vpn`
|
|
5744
|
+
* - Choices: `wan/vpn/interface/gre`, `wan/vpn/interface/ethernet`, `wan/vpn/interface/cellular`, `wan/vpn/interface/ipsec`, `wan/vpn/interface/serial`, `route-policy`, `routing/bgp`, `routing/ospf`, `lan/vpn/interface/ethernet`, `lan/vpn/interface/svi`, `lan/vpn/interface/ipsec`, `lan/vpn`
|
|
5745
5745
|
*/
|
|
5746
5746
|
parcelType?: string;
|
|
5747
5747
|
}
|
|
@@ -6334,7 +6334,7 @@ export interface GetApplicationAwareRoutingPolicyDefinitionSequenceActionEntrySl
|
|
|
6334
6334
|
/**
|
|
6335
6335
|
* Preferred color group list ID
|
|
6336
6336
|
*/
|
|
6337
|
-
|
|
6337
|
+
preferredColorGroupListId: string;
|
|
6338
6338
|
/**
|
|
6339
6339
|
* Preferred color group list version
|
|
6340
6340
|
*/
|
|
@@ -6342,7 +6342,7 @@ export interface GetApplicationAwareRoutingPolicyDefinitionSequenceActionEntrySl
|
|
|
6342
6342
|
/**
|
|
6343
6343
|
* SLA class list ID
|
|
6344
6344
|
*/
|
|
6345
|
-
|
|
6345
|
+
slaClassListId: string;
|
|
6346
6346
|
/**
|
|
6347
6347
|
* SLA class list version
|
|
6348
6348
|
*/
|
|
@@ -10103,14 +10103,14 @@ export interface GetCiscoVpnFeatureTemplateDnsIpv6Server {
|
|
|
10103
10103
|
roleVariable: string;
|
|
10104
10104
|
}
|
|
10105
10105
|
export interface GetCiscoVpnFeatureTemplateIpv4StaticGreRoute {
|
|
10106
|
-
/**
|
|
10107
|
-
* Variable name
|
|
10108
|
-
*/
|
|
10109
|
-
interfaceVariable: string;
|
|
10110
10106
|
/**
|
|
10111
10107
|
* List of GRE Interfaces
|
|
10112
10108
|
*/
|
|
10113
10109
|
interfaces: string[];
|
|
10110
|
+
/**
|
|
10111
|
+
* Variable name
|
|
10112
|
+
*/
|
|
10113
|
+
interfacesVariable: string;
|
|
10114
10114
|
/**
|
|
10115
10115
|
* Indicates if list item is considered optional.
|
|
10116
10116
|
*/
|
|
@@ -10129,14 +10129,14 @@ export interface GetCiscoVpnFeatureTemplateIpv4StaticGreRoute {
|
|
|
10129
10129
|
vpnId: number;
|
|
10130
10130
|
}
|
|
10131
10131
|
export interface GetCiscoVpnFeatureTemplateIpv4StaticIpsecRoute {
|
|
10132
|
-
/**
|
|
10133
|
-
* Variable name
|
|
10134
|
-
*/
|
|
10135
|
-
interfaceVariable: string;
|
|
10136
10132
|
/**
|
|
10137
10133
|
* List of IPSEC Interfaces (Separated by commas)
|
|
10138
10134
|
*/
|
|
10139
10135
|
interfaces: string[];
|
|
10136
|
+
/**
|
|
10137
|
+
* Variable name
|
|
10138
|
+
*/
|
|
10139
|
+
interfacesVariable: string;
|
|
10140
10140
|
/**
|
|
10141
10141
|
* Indicates if list item is considered optional.
|
|
10142
10142
|
*/
|
|
@@ -12190,6 +12190,10 @@ export interface GetIpv4AclPolicyDefinitionSequenceMatchEntry {
|
|
|
12190
12190
|
* Destination IP prefix
|
|
12191
12191
|
*/
|
|
12192
12192
|
destinationIp: string;
|
|
12193
|
+
/**
|
|
12194
|
+
* Destination IP prefix variable
|
|
12195
|
+
*/
|
|
12196
|
+
destinationIpVariable: string;
|
|
12193
12197
|
/**
|
|
12194
12198
|
* Destination ports. Single value (0-65535) or ranges separated by spaces.
|
|
12195
12199
|
*/
|
|
@@ -12197,7 +12201,7 @@ export interface GetIpv4AclPolicyDefinitionSequenceMatchEntry {
|
|
|
12197
12201
|
/**
|
|
12198
12202
|
* DSCP value
|
|
12199
12203
|
*/
|
|
12200
|
-
dscp:
|
|
12204
|
+
dscp: string;
|
|
12201
12205
|
/**
|
|
12202
12206
|
* ICMP Message
|
|
12203
12207
|
*/
|
|
@@ -12226,6 +12230,10 @@ export interface GetIpv4AclPolicyDefinitionSequenceMatchEntry {
|
|
|
12226
12230
|
* Source IP prefix
|
|
12227
12231
|
*/
|
|
12228
12232
|
sourceIp: string;
|
|
12233
|
+
/**
|
|
12234
|
+
* Source IP prefix variable
|
|
12235
|
+
*/
|
|
12236
|
+
sourceIpVariable: string;
|
|
12229
12237
|
/**
|
|
12230
12238
|
* Source ports. Single value (0-65535) or ranges separated by spaces.
|
|
12231
12239
|
*/
|
|
@@ -12284,6 +12292,10 @@ export interface GetIpv4DeviceAclPolicyDefinitionSequenceMatchEntry {
|
|
|
12284
12292
|
* Destination IP prefix
|
|
12285
12293
|
*/
|
|
12286
12294
|
destinationIp: string;
|
|
12295
|
+
/**
|
|
12296
|
+
* Destination IP prefix variable
|
|
12297
|
+
*/
|
|
12298
|
+
destinationIpVariable: string;
|
|
12287
12299
|
/**
|
|
12288
12300
|
* Destination port, only `22` and `161` supported
|
|
12289
12301
|
*/
|
|
@@ -12300,6 +12312,10 @@ export interface GetIpv4DeviceAclPolicyDefinitionSequenceMatchEntry {
|
|
|
12300
12312
|
* Source IP prefix
|
|
12301
12313
|
*/
|
|
12302
12314
|
sourceIp: string;
|
|
12315
|
+
/**
|
|
12316
|
+
* Source IP prefix variable
|
|
12317
|
+
*/
|
|
12318
|
+
sourceIpVariable: string;
|
|
12303
12319
|
/**
|
|
12304
12320
|
* Source ports. Single value (0-65535) or ranges separated by spaces.
|
|
12305
12321
|
*/
|
|
@@ -12701,6 +12717,34 @@ export interface GetOtherUcseFeatureInterface {
|
|
|
12701
12717
|
*/
|
|
12702
12718
|
ucseInterfaceVpnVariable: string;
|
|
12703
12719
|
}
|
|
12720
|
+
export interface GetPolicyGroupDevice {
|
|
12721
|
+
/**
|
|
12722
|
+
* Deploy to device if enabled.
|
|
12723
|
+
*/
|
|
12724
|
+
deploy: boolean;
|
|
12725
|
+
/**
|
|
12726
|
+
* Device ID
|
|
12727
|
+
*/
|
|
12728
|
+
id: string;
|
|
12729
|
+
/**
|
|
12730
|
+
* List of variables
|
|
12731
|
+
*/
|
|
12732
|
+
variables: outputs.GetPolicyGroupDeviceVariable[];
|
|
12733
|
+
}
|
|
12734
|
+
export interface GetPolicyGroupDeviceVariable {
|
|
12735
|
+
/**
|
|
12736
|
+
* Use this instead of `value` in case value is of type `List`.
|
|
12737
|
+
*/
|
|
12738
|
+
listValues: string[];
|
|
12739
|
+
/**
|
|
12740
|
+
* Variable name
|
|
12741
|
+
*/
|
|
12742
|
+
name: string;
|
|
12743
|
+
/**
|
|
12744
|
+
* Variable value
|
|
12745
|
+
*/
|
|
12746
|
+
value: string;
|
|
12747
|
+
}
|
|
12704
12748
|
export interface GetPolicyObjectAppProbeClassEntry {
|
|
12705
12749
|
/**
|
|
12706
12750
|
* Forwarding Class Name
|
|
@@ -13057,6 +13101,10 @@ export interface GetRoutePolicyDefinitionSequenceActionEntry {
|
|
|
13057
13101
|
* Community additive
|
|
13058
13102
|
*/
|
|
13059
13103
|
communityAdditive: boolean;
|
|
13104
|
+
/**
|
|
13105
|
+
* Community variable
|
|
13106
|
+
*/
|
|
13107
|
+
communityVariable: string;
|
|
13060
13108
|
/**
|
|
13061
13109
|
* Local preference
|
|
13062
13110
|
*/
|
|
@@ -13123,6 +13171,10 @@ export interface GetRoutePolicyDefinitionSequenceMatchEntry {
|
|
|
13123
13171
|
* Expanded community list ID
|
|
13124
13172
|
*/
|
|
13125
13173
|
expandedCommunityListId: string;
|
|
13174
|
+
/**
|
|
13175
|
+
* Expanded community list variable
|
|
13176
|
+
*/
|
|
13177
|
+
expandedCommunityListVariable: string;
|
|
13126
13178
|
/**
|
|
13127
13179
|
* Expanded community list version
|
|
13128
13180
|
*/
|
|
@@ -13870,7 +13922,11 @@ export interface GetServiceLanVpnFeatureIpv4StaticRoute {
|
|
|
13870
13922
|
/**
|
|
13871
13923
|
* IPv4 Route Gateway DHCP
|
|
13872
13924
|
*/
|
|
13873
|
-
|
|
13925
|
+
dhcp: boolean;
|
|
13926
|
+
/**
|
|
13927
|
+
* Gateway type
|
|
13928
|
+
*/
|
|
13929
|
+
gateway: string;
|
|
13874
13930
|
/**
|
|
13875
13931
|
* IP Address
|
|
13876
13932
|
*/
|
|
@@ -13962,6 +14018,10 @@ export interface GetServiceLanVpnFeatureIpv6ImportRouteTarget {
|
|
|
13962
14018
|
routeTargetVariable: string;
|
|
13963
14019
|
}
|
|
13964
14020
|
export interface GetServiceLanVpnFeatureIpv6StaticRoute {
|
|
14021
|
+
/**
|
|
14022
|
+
* Gateway type
|
|
14023
|
+
*/
|
|
14024
|
+
gateway: string;
|
|
13965
14025
|
/**
|
|
13966
14026
|
* IPv6 Nat
|
|
13967
14027
|
*/
|
|
@@ -15348,18 +15408,26 @@ export interface GetServiceRoutingBgpFeatureIpv4Neighbor {
|
|
|
15348
15408
|
}
|
|
15349
15409
|
export interface GetServiceRoutingBgpFeatureIpv4NeighborAddressFamily {
|
|
15350
15410
|
/**
|
|
15351
|
-
* Set
|
|
15411
|
+
* Set maximum number of prefixes accepted from BGP peer
|
|
15352
15412
|
*/
|
|
15353
|
-
|
|
15354
|
-
inRoutePolicyId: string;
|
|
15413
|
+
disablePeerMaxNumberOfPrefixes: number;
|
|
15355
15414
|
/**
|
|
15356
|
-
*
|
|
15415
|
+
* Variable name
|
|
15357
15416
|
*/
|
|
15358
|
-
|
|
15417
|
+
disablePeerMaxNumberOfPrefixesVariable: string;
|
|
15418
|
+
/**
|
|
15419
|
+
* Set threshold(1 to 100) at which to generate a warning message
|
|
15420
|
+
*/
|
|
15421
|
+
disablePeerThreshold: number;
|
|
15359
15422
|
/**
|
|
15360
15423
|
* Variable name
|
|
15361
15424
|
*/
|
|
15362
|
-
|
|
15425
|
+
disablePeerThresholdVariable: string;
|
|
15426
|
+
/**
|
|
15427
|
+
* Set IPv4 unicast address family
|
|
15428
|
+
*/
|
|
15429
|
+
familyType: string;
|
|
15430
|
+
inRoutePolicyId: string;
|
|
15363
15431
|
outRoutePolicyId: string;
|
|
15364
15432
|
/**
|
|
15365
15433
|
* Neighbor received maximum prefix policy is disabled.
|
|
@@ -15373,14 +15441,38 @@ export interface GetServiceRoutingBgpFeatureIpv4NeighborAddressFamily {
|
|
|
15373
15441
|
* Variable name
|
|
15374
15442
|
*/
|
|
15375
15443
|
restartIntervalVariable: string;
|
|
15444
|
+
/**
|
|
15445
|
+
* Set maximum number of prefixes accepted from BGP peer
|
|
15446
|
+
*/
|
|
15447
|
+
restartMaxNumberOfPrefixes: number;
|
|
15448
|
+
/**
|
|
15449
|
+
* Variable name
|
|
15450
|
+
*/
|
|
15451
|
+
restartMaxNumberOfPrefixesVariable: string;
|
|
15376
15452
|
/**
|
|
15377
15453
|
* Set threshold(1 to 100) at which to generate a warning message
|
|
15378
15454
|
*/
|
|
15379
|
-
|
|
15455
|
+
restartThreshold: number;
|
|
15380
15456
|
/**
|
|
15381
15457
|
* Variable name
|
|
15382
15458
|
*/
|
|
15383
|
-
|
|
15459
|
+
restartThresholdVariable: string;
|
|
15460
|
+
/**
|
|
15461
|
+
* Set maximum number of prefixes accepted from BGP peer
|
|
15462
|
+
*/
|
|
15463
|
+
warningMessageMaxNumberOfPrefixes: number;
|
|
15464
|
+
/**
|
|
15465
|
+
* Variable name
|
|
15466
|
+
*/
|
|
15467
|
+
warningMessageMaxNumberOfPrefixesVariable: string;
|
|
15468
|
+
/**
|
|
15469
|
+
* Set threshold(1 to 100) at which to generate a warning message
|
|
15470
|
+
*/
|
|
15471
|
+
warningMessageThreshold: number;
|
|
15472
|
+
/**
|
|
15473
|
+
* Variable name
|
|
15474
|
+
*/
|
|
15475
|
+
warningMessageThresholdVariable: string;
|
|
15384
15476
|
}
|
|
15385
15477
|
export interface GetServiceRoutingBgpFeatureIpv4Network {
|
|
15386
15478
|
networkAddress: string;
|
|
@@ -17651,7 +17743,7 @@ export interface GetTlsSslDecryptionPolicyDefinitionUrlRule {
|
|
|
17651
17743
|
/**
|
|
17652
17744
|
* TLS SSL Profile Policy version
|
|
17653
17745
|
*/
|
|
17654
|
-
|
|
17746
|
+
tlsSslProfilePolicyVersion: number;
|
|
17655
17747
|
}
|
|
17656
17748
|
export interface GetTrafficDataPolicyDefinitionSequence {
|
|
17657
17749
|
/**
|
|
@@ -17819,7 +17911,7 @@ export interface GetTrafficDataPolicyDefinitionSequenceActionEntrySetParameter {
|
|
|
17819
17911
|
/**
|
|
17820
17912
|
* Preferred color group list ID
|
|
17821
17913
|
*/
|
|
17822
|
-
|
|
17914
|
+
preferredColorGroupListId: string;
|
|
17823
17915
|
/**
|
|
17824
17916
|
* Preferred color group list version
|
|
17825
17917
|
*/
|
|
@@ -21521,15 +21613,18 @@ export interface Ipv4AclPolicyDefinitionSequenceMatchEntry {
|
|
|
21521
21613
|
* Destination IP prefix, Attribute conditional on `type` being equal to `destinationIp`
|
|
21522
21614
|
*/
|
|
21523
21615
|
destinationIp?: string;
|
|
21616
|
+
/**
|
|
21617
|
+
* Destination IP prefix variable, Attribute conditional on `type` being equal to `destinationIp`
|
|
21618
|
+
*/
|
|
21619
|
+
destinationIpVariable?: string;
|
|
21524
21620
|
/**
|
|
21525
21621
|
* Destination ports. Single value (0-65535) or ranges separated by spaces., Attribute conditional on `type` being equal to `destinationPort`
|
|
21526
21622
|
*/
|
|
21527
21623
|
destinationPorts?: string;
|
|
21528
21624
|
/**
|
|
21529
21625
|
* DSCP value, Attribute conditional on `type` being equal to `dscp`
|
|
21530
|
-
* - Range: `0`-`63`
|
|
21531
21626
|
*/
|
|
21532
|
-
dscp?:
|
|
21627
|
+
dscp?: string;
|
|
21533
21628
|
/**
|
|
21534
21629
|
* ICMP Message, Attribute conditional on `type` being equal to `icmpMessage`
|
|
21535
21630
|
*/
|
|
@@ -21560,6 +21655,10 @@ export interface Ipv4AclPolicyDefinitionSequenceMatchEntry {
|
|
|
21560
21655
|
* Source IP prefix, Attribute conditional on `type` being equal to `sourceIp`
|
|
21561
21656
|
*/
|
|
21562
21657
|
sourceIp?: string;
|
|
21658
|
+
/**
|
|
21659
|
+
* Source IP prefix variable, Attribute conditional on `type` being equal to `sourceIp`
|
|
21660
|
+
*/
|
|
21661
|
+
sourceIpVariable?: string;
|
|
21563
21662
|
/**
|
|
21564
21663
|
* Source ports. Single value (0-65535) or ranges separated by spaces., Attribute conditional on `type` being equal to `sourcePort`
|
|
21565
21664
|
*/
|
|
@@ -21623,6 +21722,10 @@ export interface Ipv4DeviceAclPolicyDefinitionSequenceMatchEntry {
|
|
|
21623
21722
|
* Destination IP prefix, Attribute conditional on `type` being equal to `destinationIp`
|
|
21624
21723
|
*/
|
|
21625
21724
|
destinationIp?: string;
|
|
21725
|
+
/**
|
|
21726
|
+
* Destination IP prefix variable, Attribute conditional on `type` being equal to `destinationIp`
|
|
21727
|
+
*/
|
|
21728
|
+
destinationIpVariable?: string;
|
|
21626
21729
|
/**
|
|
21627
21730
|
* Destination port, only `22` and `161` supported, Attribute conditional on `type` being equal to `destinationPort`
|
|
21628
21731
|
* - Range: `0`-`65535`
|
|
@@ -21640,6 +21743,10 @@ export interface Ipv4DeviceAclPolicyDefinitionSequenceMatchEntry {
|
|
|
21640
21743
|
* Source IP prefix, Attribute conditional on `type` being equal to `sourceIp`
|
|
21641
21744
|
*/
|
|
21642
21745
|
sourceIp?: string;
|
|
21746
|
+
/**
|
|
21747
|
+
* Source IP prefix variable, Attribute conditional on `type` being equal to `sourceIp`
|
|
21748
|
+
*/
|
|
21749
|
+
sourceIpVariable?: string;
|
|
21643
21750
|
/**
|
|
21644
21751
|
* Source ports. Single value (0-65535) or ranges separated by spaces., Attribute conditional on `type` being equal to `sourcePort`
|
|
21645
21752
|
*/
|
|
@@ -22063,6 +22170,35 @@ export interface OtherUcseFeatureInterface {
|
|
|
22063
22170
|
*/
|
|
22064
22171
|
ucseInterfaceVpnVariable?: string;
|
|
22065
22172
|
}
|
|
22173
|
+
export interface PolicyGroupDevice {
|
|
22174
|
+
/**
|
|
22175
|
+
* Deploy to device if enabled.
|
|
22176
|
+
* - Default value: `false`
|
|
22177
|
+
*/
|
|
22178
|
+
deploy: boolean;
|
|
22179
|
+
/**
|
|
22180
|
+
* Device ID
|
|
22181
|
+
*/
|
|
22182
|
+
id?: string;
|
|
22183
|
+
/**
|
|
22184
|
+
* List of variables
|
|
22185
|
+
*/
|
|
22186
|
+
variables?: outputs.PolicyGroupDeviceVariable[];
|
|
22187
|
+
}
|
|
22188
|
+
export interface PolicyGroupDeviceVariable {
|
|
22189
|
+
/**
|
|
22190
|
+
* Use this instead of `value` in case value is of type `List`.
|
|
22191
|
+
*/
|
|
22192
|
+
listValues?: string[];
|
|
22193
|
+
/**
|
|
22194
|
+
* Variable name
|
|
22195
|
+
*/
|
|
22196
|
+
name: string;
|
|
22197
|
+
/**
|
|
22198
|
+
* Variable value
|
|
22199
|
+
*/
|
|
22200
|
+
value?: string;
|
|
22201
|
+
}
|
|
22066
22202
|
export interface PolicyObjectAppProbeClassEntry {
|
|
22067
22203
|
/**
|
|
22068
22204
|
* Forwarding Class Name
|
|
@@ -22484,6 +22620,10 @@ export interface RoutePolicyDefinitionSequenceActionEntry {
|
|
|
22484
22620
|
* Community additive, Attribute conditional on `type` being equal to `communityAdditive`
|
|
22485
22621
|
*/
|
|
22486
22622
|
communityAdditive?: boolean;
|
|
22623
|
+
/**
|
|
22624
|
+
* Community variable, Attribute conditional on `type` being equal to `community`
|
|
22625
|
+
*/
|
|
22626
|
+
communityVariable?: string;
|
|
22487
22627
|
/**
|
|
22488
22628
|
* Local preference, Attribute conditional on `type` being equal to `localPreference`
|
|
22489
22629
|
* - Range: `0`-`4294967295`
|
|
@@ -22559,6 +22699,10 @@ export interface RoutePolicyDefinitionSequenceMatchEntry {
|
|
|
22559
22699
|
* Expanded community list ID, Attribute conditional on `type` being equal to `expandedCommunity`
|
|
22560
22700
|
*/
|
|
22561
22701
|
expandedCommunityListId?: string;
|
|
22702
|
+
/**
|
|
22703
|
+
* Expanded community list variable, Attribute conditional on `type` being equal to `expandedCommunityInline`
|
|
22704
|
+
*/
|
|
22705
|
+
expandedCommunityListVariable?: string;
|
|
22562
22706
|
/**
|
|
22563
22707
|
* Expanded community list version
|
|
22564
22708
|
*/
|
|
@@ -22618,7 +22762,7 @@ export interface RoutePolicyDefinitionSequenceMatchEntry {
|
|
|
22618
22762
|
prefixListVersion?: number;
|
|
22619
22763
|
/**
|
|
22620
22764
|
* Type of match entry
|
|
22621
|
-
* - Choices: `address`, `asPath`, `advancedCommunity`, `expandedCommunity`, `extCommunity`, `localPreference`, `metric`, `nextHop`, `origin`, `peer`, `ompTag`, `ospfTag`
|
|
22765
|
+
* - Choices: `address`, `asPath`, `advancedCommunity`, `expandedCommunity`, `expandedCommunityInline`, `extCommunity`, `localPreference`, `metric`, `nextHop`, `origin`, `peer`, `ompTag`, `ospfTag`
|
|
22622
22766
|
*/
|
|
22623
22767
|
type: string;
|
|
22624
22768
|
}
|
|
@@ -23349,9 +23493,14 @@ export interface ServiceLanVpnFeatureIpv4ImportRouteTarget {
|
|
|
23349
23493
|
}
|
|
23350
23494
|
export interface ServiceLanVpnFeatureIpv4StaticRoute {
|
|
23351
23495
|
/**
|
|
23352
|
-
* IPv4 Route Gateway DHCP
|
|
23496
|
+
* IPv4 Route Gateway DHCP, Attribute conditional on `gateway` being equal to `dhcp`
|
|
23497
|
+
*/
|
|
23498
|
+
dhcp?: boolean;
|
|
23499
|
+
/**
|
|
23500
|
+
* Gateway type
|
|
23501
|
+
* - Choices: `nextHop`, `null0`, `vpn`, `dhcp`
|
|
23353
23502
|
*/
|
|
23354
|
-
|
|
23503
|
+
gateway?: string;
|
|
23355
23504
|
/**
|
|
23356
23505
|
* IP Address
|
|
23357
23506
|
*/
|
|
@@ -23361,15 +23510,15 @@ export interface ServiceLanVpnFeatureIpv4StaticRoute {
|
|
|
23361
23510
|
*/
|
|
23362
23511
|
networkAddressVariable?: string;
|
|
23363
23512
|
/**
|
|
23364
|
-
* IPv4 Route Gateway Next Hop with Tracker
|
|
23513
|
+
* IPv4 Route Gateway Next Hop with Tracker, Attribute conditional on `gateway` being equal to `nextHop`
|
|
23365
23514
|
*/
|
|
23366
23515
|
nextHopWithTrackers?: outputs.ServiceLanVpnFeatureIpv4StaticRouteNextHopWithTracker[];
|
|
23367
23516
|
/**
|
|
23368
|
-
* IPv4 Route Gateway Next Hop
|
|
23517
|
+
* IPv4 Route Gateway Next Hop, Attribute conditional on `gateway` being equal to `nextHop`
|
|
23369
23518
|
*/
|
|
23370
23519
|
nextHops?: outputs.ServiceLanVpnFeatureIpv4StaticRouteNextHop[];
|
|
23371
23520
|
/**
|
|
23372
|
-
* IPv4 Route Gateway Next Hop
|
|
23521
|
+
* IPv4 Route Gateway Next Hop, Attribute conditional on `gateway` being equal to `null0`
|
|
23373
23522
|
*/
|
|
23374
23523
|
null0?: boolean;
|
|
23375
23524
|
/**
|
|
@@ -23382,7 +23531,7 @@ export interface ServiceLanVpnFeatureIpv4StaticRoute {
|
|
|
23382
23531
|
*/
|
|
23383
23532
|
subnetMaskVariable?: string;
|
|
23384
23533
|
/**
|
|
23385
|
-
* IPv4 Route Gateway VPN
|
|
23534
|
+
* IPv4 Route Gateway VPN, Attribute conditional on `gateway` being equal to `vpn`
|
|
23386
23535
|
*/
|
|
23387
23536
|
vpn?: boolean;
|
|
23388
23537
|
}
|
|
@@ -23447,20 +23596,25 @@ export interface ServiceLanVpnFeatureIpv6ImportRouteTarget {
|
|
|
23447
23596
|
}
|
|
23448
23597
|
export interface ServiceLanVpnFeatureIpv6StaticRoute {
|
|
23449
23598
|
/**
|
|
23450
|
-
*
|
|
23599
|
+
* Gateway type
|
|
23600
|
+
* - Choices: `nextHop`, `null0`, `nat`
|
|
23601
|
+
*/
|
|
23602
|
+
gateway?: string;
|
|
23603
|
+
/**
|
|
23604
|
+
* IPv6 Nat, Attribute conditional on `gateway` being equal to `nat`
|
|
23451
23605
|
* - Choices: `NAT64`, `NAT66`
|
|
23452
23606
|
*/
|
|
23453
23607
|
nat?: string;
|
|
23454
23608
|
/**
|
|
23455
|
-
* Variable name
|
|
23609
|
+
* Variable name, Attribute conditional on `gateway` being equal to `nat`
|
|
23456
23610
|
*/
|
|
23457
23611
|
natVariable?: string;
|
|
23458
23612
|
/**
|
|
23459
|
-
* IPv6 Route Gateway Next Hop
|
|
23613
|
+
* IPv6 Route Gateway Next Hop, Attribute conditional on `gateway` being equal to `nextHop`
|
|
23460
23614
|
*/
|
|
23461
23615
|
nextHops?: outputs.ServiceLanVpnFeatureIpv6StaticRouteNextHop[];
|
|
23462
23616
|
/**
|
|
23463
|
-
* IPv6 Route Gateway Next Hop
|
|
23617
|
+
* IPv6 Route Gateway Next Hop, Attribute conditional on `gateway` being equal to `null0`
|
|
23464
23618
|
*/
|
|
23465
23619
|
null0?: boolean;
|
|
23466
23620
|
/**
|
|
@@ -24951,43 +25105,82 @@ export interface ServiceRoutingBgpFeatureIpv4Neighbor {
|
|
|
24951
25105
|
}
|
|
24952
25106
|
export interface ServiceRoutingBgpFeatureIpv4NeighborAddressFamily {
|
|
24953
25107
|
/**
|
|
24954
|
-
* Set
|
|
25108
|
+
* Set maximum number of prefixes accepted from BGP peer, Attribute conditional on `policyType` being equal to `disable-peer`
|
|
25109
|
+
* - Range: `1`-`4294967295`
|
|
24955
25110
|
*/
|
|
24956
|
-
|
|
24957
|
-
inRoutePolicyId?: string;
|
|
25111
|
+
disablePeerMaxNumberOfPrefixes?: number;
|
|
24958
25112
|
/**
|
|
24959
|
-
*
|
|
24960
|
-
* - Range: `1`-`4294967295`
|
|
25113
|
+
* Variable name, Attribute conditional on `policyType` being equal to `disable-peer`
|
|
24961
25114
|
*/
|
|
24962
|
-
|
|
25115
|
+
disablePeerMaxNumberOfPrefixesVariable?: string;
|
|
24963
25116
|
/**
|
|
24964
|
-
*
|
|
25117
|
+
* Set threshold(1 to 100) at which to generate a warning message, Attribute conditional on `policyType` being equal to `disable-peer`
|
|
25118
|
+
* - Range: `1`-`100`
|
|
25119
|
+
* - Default value: `75`
|
|
24965
25120
|
*/
|
|
24966
|
-
|
|
25121
|
+
disablePeerThreshold?: number;
|
|
25122
|
+
/**
|
|
25123
|
+
* Variable name, Attribute conditional on `policyType` being equal to `disable-peer`
|
|
25124
|
+
*/
|
|
25125
|
+
disablePeerThresholdVariable?: string;
|
|
25126
|
+
/**
|
|
25127
|
+
* Set IPv4 unicast address family
|
|
25128
|
+
*/
|
|
25129
|
+
familyType?: string;
|
|
25130
|
+
inRoutePolicyId?: string;
|
|
24967
25131
|
outRoutePolicyId?: string;
|
|
24968
25132
|
/**
|
|
24969
25133
|
* Neighbor received maximum prefix policy is disabled.
|
|
25134
|
+
* - Choices: `restart`, `off`, `warning-only`, `disable-peer`
|
|
24970
25135
|
*/
|
|
24971
25136
|
policyType?: string;
|
|
24972
25137
|
/**
|
|
24973
|
-
* Set the restart interval(minutes) when to restart BGP connection if threshold is exceeded
|
|
25138
|
+
* Set the restart interval(minutes) when to restart BGP connection if threshold is exceeded, Attribute conditional on `policyType` being equal to `restart`
|
|
24974
25139
|
* - Range: `1`-`65535`
|
|
24975
25140
|
*/
|
|
24976
25141
|
restartInterval?: number;
|
|
24977
25142
|
/**
|
|
24978
|
-
* Variable name
|
|
25143
|
+
* Variable name, Attribute conditional on `policyType` being equal to `restart`
|
|
24979
25144
|
*/
|
|
24980
25145
|
restartIntervalVariable?: string;
|
|
24981
25146
|
/**
|
|
24982
|
-
* Set
|
|
25147
|
+
* Set maximum number of prefixes accepted from BGP peer, Attribute conditional on `policyType` being equal to `restart`
|
|
25148
|
+
* - Range: `1`-`4294967295`
|
|
25149
|
+
*/
|
|
25150
|
+
restartMaxNumberOfPrefixes?: number;
|
|
25151
|
+
/**
|
|
25152
|
+
* Variable name, Attribute conditional on `policyType` being equal to `restart`
|
|
25153
|
+
*/
|
|
25154
|
+
restartMaxNumberOfPrefixesVariable?: string;
|
|
25155
|
+
/**
|
|
25156
|
+
* Set threshold(1 to 100) at which to generate a warning message, Attribute conditional on `policyType` being equal to `restart`
|
|
24983
25157
|
* - Range: `1`-`100`
|
|
24984
25158
|
* - Default value: `75`
|
|
24985
25159
|
*/
|
|
24986
|
-
|
|
25160
|
+
restartThreshold?: number;
|
|
24987
25161
|
/**
|
|
24988
|
-
* Variable name
|
|
25162
|
+
* Variable name, Attribute conditional on `policyType` being equal to `restart`
|
|
24989
25163
|
*/
|
|
24990
|
-
|
|
25164
|
+
restartThresholdVariable?: string;
|
|
25165
|
+
/**
|
|
25166
|
+
* Set maximum number of prefixes accepted from BGP peer, Attribute conditional on `policyType` being equal to `warning-only`
|
|
25167
|
+
* - Range: `1`-`4294967295`
|
|
25168
|
+
*/
|
|
25169
|
+
warningMessageMaxNumberOfPrefixes?: number;
|
|
25170
|
+
/**
|
|
25171
|
+
* Variable name, Attribute conditional on `policyType` being equal to `warning-only`
|
|
25172
|
+
*/
|
|
25173
|
+
warningMessageMaxNumberOfPrefixesVariable?: string;
|
|
25174
|
+
/**
|
|
25175
|
+
* Set threshold(1 to 100) at which to generate a warning message, Attribute conditional on `policyType` being equal to `warning-only`
|
|
25176
|
+
* - Range: `1`-`100`
|
|
25177
|
+
* - Default value: `75`
|
|
25178
|
+
*/
|
|
25179
|
+
warningMessageThreshold?: number;
|
|
25180
|
+
/**
|
|
25181
|
+
* Variable name, Attribute conditional on `policyType` being equal to `warning-only`
|
|
25182
|
+
*/
|
|
25183
|
+
warningMessageThresholdVariable?: string;
|
|
24991
25184
|
}
|
|
24992
25185
|
export interface ServiceRoutingBgpFeatureIpv4Network {
|
|
24993
25186
|
networkAddress?: string;
|
|
@@ -27488,7 +27681,7 @@ export interface TlsSslDecryptionPolicyDefinitionUrlRule {
|
|
|
27488
27681
|
/**
|
|
27489
27682
|
* TLS SSL Profile Policy version
|
|
27490
27683
|
*/
|
|
27491
|
-
|
|
27684
|
+
tlsSslProfilePolicyVersion?: number;
|
|
27492
27685
|
}
|
|
27493
27686
|
export interface TrafficDataPolicyDefinitionSequence {
|
|
27494
27687
|
/**
|
|
@@ -27670,7 +27863,7 @@ export interface TrafficDataPolicyDefinitionSequenceActionEntrySetParameter {
|
|
|
27670
27863
|
/**
|
|
27671
27864
|
* Preferred color group list ID, Attribute conditional on `type` being equal to `preferredColorGroup`
|
|
27672
27865
|
*/
|
|
27673
|
-
|
|
27866
|
+
preferredColorGroupListId?: string;
|
|
27674
27867
|
/**
|
|
27675
27868
|
* Preferred color group list version
|
|
27676
27869
|
*/
|