@pulumi/juniper-mist 0.5.2 → 0.5.3

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/types/input.d.ts CHANGED
@@ -708,19 +708,22 @@ export declare namespace device {
708
708
  lng: pulumi.Input<number>;
709
709
  }
710
710
  interface GatewayBgpConfig {
711
+ /**
712
+ * Optional if `via`==`lan`, `via`==`tunnel` or `via`==`wan`
713
+ */
711
714
  authKey?: pulumi.Input<string>;
712
715
  /**
713
- * When bfdMultiplier is configured alone. Default:
716
+ * Optional if `via`==`lan`, `via`==`tunnel` or `via`==`wan`, when bfdMultiplier is configured alone. Default:
714
717
  * * 1000 if `type`==`external`
715
718
  * * 350 `type`==`internal`
716
719
  */
717
720
  bfdMinimumInterval?: pulumi.Input<number>;
718
721
  /**
719
- * When bfdMinimumIntervalIsConfigured alone
722
+ * Optional if `via`==`lan`, `via`==`tunnel` or `via`==`wan`, when bfdMinimumIntervalIsConfigured alone
720
723
  */
721
724
  bfdMultiplier?: pulumi.Input<number>;
722
725
  /**
723
- * BFD provides faster path failure detection and is enabled by default
726
+ * Optional if `via`==`lan`, `via`==`tunnel` or `via`==`wan`. BFD provides faster path failure detection and is enabled by default
724
727
  */
725
728
  disableBfd?: pulumi.Input<boolean>;
726
729
  export?: pulumi.Input<string>;
@@ -729,57 +732,66 @@ export declare namespace device {
729
732
  */
730
733
  exportPolicy?: pulumi.Input<string>;
731
734
  /**
732
- * By default, either inet/net6 unicast depending on neighbor IP family (v4 or v6). For v6 neighbors, to exchange v4 nexthop, which allows dual-stack support, enable this
735
+ * Optional if `via`==`lan`, `via`==`tunnel` or `via`==`wan`. By default, either inet/net6 unicast depending on neighbor IP family (v4 or v6). For v6 neighbors, to exchange v4 nexthop, which allows dual-stack support, enable this
733
736
  */
734
737
  extendedV4Nexthop?: pulumi.Input<boolean>;
735
738
  /**
736
- * `0` means disable
739
+ * Optional if `via`==`lan`, `via`==`tunnel` or `via`==`wan`. `0` means disable
737
740
  */
738
741
  gracefulRestartTime?: pulumi.Input<number>;
742
+ /**
743
+ * Optional if `via`==`lan`, `via`==`tunnel` or `via`==`wan`. Default is 90.
744
+ */
739
745
  holdTime?: pulumi.Input<number>;
740
746
  import?: pulumi.Input<string>;
741
747
  /**
742
- * Default import policies if no per-neighbor policies defined
748
+ * Optional if `via`==`lan`, `via`==`tunnel` or `via`==`wan`. Default import policies if no per-neighbor policies defined
743
749
  */
744
750
  importPolicy?: pulumi.Input<string>;
745
751
  /**
746
- * Local AS. Value must be in range 1-4294967295 or a variable (e.g. `{{as_variable}}`)
752
+ * Required if `via`==`lan`, `via`==`tunnel` or `via`==`wan`. BGPLocal AS. Value must be in range 1-4294967295 or a variable (e.g. `{{as_variable}}`)
747
753
  */
748
754
  localAs?: pulumi.Input<string>;
749
755
  /**
750
- * Neighbor AS. Value must be in range 1-4294967295 or a variable (e.g. `{{as_variable}}`)
756
+ * Neighbor AS. If `type`==`internal`, must be equal to `localAs`. Value must be in range 1-4294967295 or a variable (e.g. `{{as_variable}}`)
751
757
  */
752
758
  neighborAs?: pulumi.Input<string>;
753
759
  /**
754
- * If per-neighbor as is desired. Property key is the neighbor address
760
+ * Required if `via`==`lan`, `via`==`tunnel` or `via`==`wan`. If per-neighbor as is desired. Property key is the neighbor address
755
761
  */
756
762
  neighbors?: pulumi.Input<{
757
763
  [key: string]: pulumi.Input<inputs.device.GatewayBgpConfigNeighbors>;
758
764
  }>;
759
765
  /**
760
- * If `type`!=`external`or `via`==`wan`networks where we expect BGP neighbor to connect to/from
766
+ * Optional if `via`==`lan`. List of networks where we expect BGP neighbor to connect to/from
761
767
  */
762
768
  networks?: pulumi.Input<pulumi.Input<string>[]>;
769
+ /**
770
+ * Optional if `via`==`lan`, `via`==`tunnel` or `via`==`wan`. If true, we will not advertise private ASNs (AS 64512-65534) to this neighbor
771
+ */
763
772
  noPrivateAs?: pulumi.Input<boolean>;
764
773
  /**
765
- * By default, we'll re-advertise all learned BGP routers toward overlay
774
+ * Optional if `via`==`lan`, `via`==`tunnel` or `via`==`wan`. By default, we'll re-advertise all learned BGP routers toward overlay
766
775
  */
767
776
  noReadvertiseToOverlay?: pulumi.Input<boolean>;
768
777
  /**
769
- * If `type`==`tunnel`
778
+ * Optional if `via`==`tunnel`
770
779
  */
771
780
  tunnelName?: pulumi.Input<string>;
772
781
  /**
773
- * enum: `external`, `internal`
782
+ * Required if `via`==`lan`, `via`==`tunnel` or `via`==`wan`. enum: `external`, `internal`
774
783
  */
775
784
  type?: pulumi.Input<string>;
776
785
  /**
777
- * network name. enum: `lan`, `tunnel`, `vpn`, `wan`
786
+ * enum: `lan`, `tunnel`, `vpn`, `wan`
787
+ */
788
+ via: pulumi.Input<string>;
789
+ /**
790
+ * Optional if `via`==`vpn`
778
791
  */
779
- via?: pulumi.Input<string>;
780
792
  vpnName?: pulumi.Input<string>;
781
793
  /**
782
- * If `via`==`wan`
794
+ * Optional if `via`==`wan`
783
795
  */
784
796
  wanName?: pulumi.Input<string>;
785
797
  }
@@ -798,7 +810,7 @@ export declare namespace device {
798
810
  /**
799
811
  * Neighbor AS. Value must be in range 1-4294967295 or a variable (e.g. `{{as_variable}}`)
800
812
  */
801
- neighborAs?: pulumi.Input<string>;
813
+ neighborAs: pulumi.Input<string>;
802
814
  }
803
815
  interface GatewayClusterNode {
804
816
  /**
@@ -825,6 +837,8 @@ export declare namespace device {
825
837
  dnsServers?: pulumi.Input<pulumi.Input<string>[]>;
826
838
  /**
827
839
  * If `type`==`local` or `type6`==`local` - optional, if not defined, system one will be used
840
+ *
841
+ * @deprecated Configuring `dnsSuffix` is deprecated and will not be supported in the future, please configure Code 15 or Code 119 in Server `options` instead
828
842
  */
829
843
  dnsSuffixes?: pulumi.Input<pulumi.Input<string>[]>;
830
844
  /**
@@ -1243,7 +1257,7 @@ export declare namespace device {
1243
1257
  /**
1244
1258
  * enum: `local`, `tunnel`, `vpn`, `wan`
1245
1259
  */
1246
- type?: pulumi.Input<string>;
1260
+ type: pulumi.Input<string>;
1247
1261
  /**
1248
1262
  * Optional if `type`==`vpn`
1249
1263
  */
@@ -1534,13 +1548,13 @@ export declare namespace device {
1534
1548
  /**
1535
1549
  * When used as import policy
1536
1550
  */
1537
- action?: pulumi.Input<inputs.device.GatewayRoutingPoliciesTermAction>;
1551
+ actions?: pulumi.Input<inputs.device.GatewayRoutingPoliciesTermActions>;
1538
1552
  /**
1539
1553
  * zero or more criteria/filter can be specified to match the term, all criteria have to be met
1540
1554
  */
1541
1555
  matching?: pulumi.Input<inputs.device.GatewayRoutingPoliciesTermMatching>;
1542
1556
  }
1543
- interface GatewayRoutingPoliciesTermAction {
1557
+ interface GatewayRoutingPoliciesTermActions {
1544
1558
  accept?: pulumi.Input<boolean>;
1545
1559
  addCommunities?: pulumi.Input<pulumi.Input<string>[]>;
1546
1560
  /**
@@ -1694,6 +1708,9 @@ export declare namespace device {
1694
1708
  enabled?: pulumi.Input<boolean>;
1695
1709
  }
1696
1710
  interface GatewayTunnelConfigs {
1711
+ /**
1712
+ * Auto Provisioning configuration for the tunne. This takes precedence over the `primary` and `secondary` nodes.
1713
+ */
1697
1714
  autoProvision?: pulumi.Input<inputs.device.GatewayTunnelConfigsAutoProvision>;
1698
1715
  /**
1699
1716
  * Only if `provider`==`custom-ipsec`. Must be between 180 and 86400
@@ -1757,7 +1774,10 @@ export declare namespace device {
1757
1774
  version?: pulumi.Input<string>;
1758
1775
  }
1759
1776
  interface GatewayTunnelConfigsAutoProvision {
1760
- enable?: pulumi.Input<boolean>;
1777
+ /**
1778
+ * Enable auto provisioning for the tunnel. If enabled, the `primary` and `secondary` nodes will be ignored.
1779
+ */
1780
+ enabled?: pulumi.Input<boolean>;
1761
1781
  /**
1762
1782
  * API override for POP selection
1763
1783
  */
@@ -2565,6 +2585,25 @@ export declare namespace device {
2565
2585
  */
2566
2586
  passive?: pulumi.Input<boolean>;
2567
2587
  }
2588
+ interface SwitchOspfConfig {
2589
+ /**
2590
+ * Property key is the area name. Defines the OSPF areas configured on the switch.
2591
+ */
2592
+ areas?: pulumi.Input<{
2593
+ [key: string]: pulumi.Input<inputs.device.SwitchOspfConfigAreas>;
2594
+ }>;
2595
+ /**
2596
+ * Enable OSPF on the switch
2597
+ */
2598
+ enabled?: pulumi.Input<boolean>;
2599
+ referenceBandwidth?: pulumi.Input<string>;
2600
+ }
2601
+ interface SwitchOspfConfigAreas {
2602
+ /**
2603
+ * Disable OSPF summary routes for this area
2604
+ */
2605
+ noSummary?: pulumi.Input<boolean>;
2606
+ }
2568
2607
  interface SwitchOtherIpConfigs {
2569
2608
  /**
2570
2609
  * For EVPN, if anycast is desired
@@ -4180,19 +4219,22 @@ export declare namespace org {
4180
4219
  vlanId?: pulumi.Input<number>;
4181
4220
  }
4182
4221
  interface DeviceprofileGatewayBgpConfig {
4222
+ /**
4223
+ * Optional if `via`==`lan`, `via`==`tunnel` or `via`==`wan`
4224
+ */
4183
4225
  authKey?: pulumi.Input<string>;
4184
4226
  /**
4185
- * When bfdMultiplier is configured alone. Default:
4227
+ * Optional if `via`==`lan`, `via`==`tunnel` or `via`==`wan`, when bfdMultiplier is configured alone. Default:
4186
4228
  * * 1000 if `type`==`external`
4187
4229
  * * 350 `type`==`internal`
4188
4230
  */
4189
4231
  bfdMinimumInterval?: pulumi.Input<number>;
4190
4232
  /**
4191
- * When bfdMinimumIntervalIsConfigured alone
4233
+ * Optional if `via`==`lan`, `via`==`tunnel` or `via`==`wan`, when bfdMinimumIntervalIsConfigured alone
4192
4234
  */
4193
4235
  bfdMultiplier?: pulumi.Input<number>;
4194
4236
  /**
4195
- * BFD provides faster path failure detection and is enabled by default
4237
+ * Optional if `via`==`lan`, `via`==`tunnel` or `via`==`wan`. BFD provides faster path failure detection and is enabled by default
4196
4238
  */
4197
4239
  disableBfd?: pulumi.Input<boolean>;
4198
4240
  export?: pulumi.Input<string>;
@@ -4201,57 +4243,66 @@ export declare namespace org {
4201
4243
  */
4202
4244
  exportPolicy?: pulumi.Input<string>;
4203
4245
  /**
4204
- * By default, either inet/net6 unicast depending on neighbor IP family (v4 or v6). For v6 neighbors, to exchange v4 nexthop, which allows dual-stack support, enable this
4246
+ * Optional if `via`==`lan`, `via`==`tunnel` or `via`==`wan`. By default, either inet/net6 unicast depending on neighbor IP family (v4 or v6). For v6 neighbors, to exchange v4 nexthop, which allows dual-stack support, enable this
4205
4247
  */
4206
4248
  extendedV4Nexthop?: pulumi.Input<boolean>;
4207
4249
  /**
4208
- * `0` means disable
4250
+ * Optional if `via`==`lan`, `via`==`tunnel` or `via`==`wan`. `0` means disable
4209
4251
  */
4210
4252
  gracefulRestartTime?: pulumi.Input<number>;
4253
+ /**
4254
+ * Optional if `via`==`lan`, `via`==`tunnel` or `via`==`wan`. Default is 90.
4255
+ */
4211
4256
  holdTime?: pulumi.Input<number>;
4212
4257
  import?: pulumi.Input<string>;
4213
4258
  /**
4214
- * Default import policies if no per-neighbor policies defined
4259
+ * Optional if `via`==`lan`, `via`==`tunnel` or `via`==`wan`. Default import policies if no per-neighbor policies defined
4215
4260
  */
4216
4261
  importPolicy?: pulumi.Input<string>;
4217
4262
  /**
4218
- * Local AS. Value must be in range 1-4294967295 or a variable (e.g. `{{as_variable}}`)
4263
+ * Required if `via`==`lan`, `via`==`tunnel` or `via`==`wan`. BGPLocal AS. Value must be in range 1-4294967295 or a variable (e.g. `{{as_variable}}`)
4219
4264
  */
4220
4265
  localAs?: pulumi.Input<string>;
4221
4266
  /**
4222
- * Neighbor AS. Value must be in range 1-4294967295 or a variable (e.g. `{{as_variable}}`)
4267
+ * Neighbor AS. If `type`==`internal`, must be equal to `localAs`. Value must be in range 1-4294967295 or a variable (e.g. `{{as_variable}}`)
4223
4268
  */
4224
4269
  neighborAs?: pulumi.Input<string>;
4225
4270
  /**
4226
- * If per-neighbor as is desired. Property key is the neighbor address
4271
+ * Required if `via`==`lan`, `via`==`tunnel` or `via`==`wan`. If per-neighbor as is desired. Property key is the neighbor address
4227
4272
  */
4228
4273
  neighbors?: pulumi.Input<{
4229
4274
  [key: string]: pulumi.Input<inputs.org.DeviceprofileGatewayBgpConfigNeighbors>;
4230
4275
  }>;
4231
4276
  /**
4232
- * If `type`!=`external`or `via`==`wan`networks where we expect BGP neighbor to connect to/from
4277
+ * Optional if `via`==`lan`. List of networks where we expect BGP neighbor to connect to/from
4233
4278
  */
4234
4279
  networks?: pulumi.Input<pulumi.Input<string>[]>;
4280
+ /**
4281
+ * Optional if `via`==`lan`, `via`==`tunnel` or `via`==`wan`. If true, we will not advertise private ASNs (AS 64512-65534) to this neighbor
4282
+ */
4235
4283
  noPrivateAs?: pulumi.Input<boolean>;
4236
4284
  /**
4237
- * By default, we'll re-advertise all learned BGP routers toward overlay
4285
+ * Optional if `via`==`lan`, `via`==`tunnel` or `via`==`wan`. By default, we'll re-advertise all learned BGP routers toward overlay
4238
4286
  */
4239
4287
  noReadvertiseToOverlay?: pulumi.Input<boolean>;
4240
4288
  /**
4241
- * If `type`==`tunnel`
4289
+ * Optional if `via`==`tunnel`
4242
4290
  */
4243
4291
  tunnelName?: pulumi.Input<string>;
4244
4292
  /**
4245
- * enum: `external`, `internal`
4293
+ * Required if `via`==`lan`, `via`==`tunnel` or `via`==`wan`. enum: `external`, `internal`
4246
4294
  */
4247
4295
  type?: pulumi.Input<string>;
4248
4296
  /**
4249
- * network name. enum: `lan`, `tunnel`, `vpn`, `wan`
4297
+ * enum: `lan`, `tunnel`, `vpn`, `wan`
4298
+ */
4299
+ via: pulumi.Input<string>;
4300
+ /**
4301
+ * Optional if `via`==`vpn`
4250
4302
  */
4251
- via?: pulumi.Input<string>;
4252
4303
  vpnName?: pulumi.Input<string>;
4253
4304
  /**
4254
- * If `via`==`wan`
4305
+ * Optional if `via`==`wan`
4255
4306
  */
4256
4307
  wanName?: pulumi.Input<string>;
4257
4308
  }
@@ -4270,7 +4321,7 @@ export declare namespace org {
4270
4321
  /**
4271
4322
  * Neighbor AS. Value must be in range 1-4294967295 or a variable (e.g. `{{as_variable}}`)
4272
4323
  */
4273
- neighborAs?: pulumi.Input<string>;
4324
+ neighborAs: pulumi.Input<string>;
4274
4325
  }
4275
4326
  interface DeviceprofileGatewayDhcpdConfig {
4276
4327
  /**
@@ -4291,6 +4342,8 @@ export declare namespace org {
4291
4342
  dnsServers?: pulumi.Input<pulumi.Input<string>[]>;
4292
4343
  /**
4293
4344
  * If `type`==`local` or `type6`==`local` - optional, if not defined, system one will be used
4345
+ *
4346
+ * @deprecated Configuring `dnsSuffix` is deprecated and will not be supported in the future, please configure Code 15 or Code 119 in Server `options` instead
4294
4347
  */
4295
4348
  dnsSuffixes?: pulumi.Input<pulumi.Input<string>[]>;
4296
4349
  /**
@@ -4705,7 +4758,7 @@ export declare namespace org {
4705
4758
  /**
4706
4759
  * enum: `local`, `tunnel`, `vpn`, `wan`
4707
4760
  */
4708
- type?: pulumi.Input<string>;
4761
+ type: pulumi.Input<string>;
4709
4762
  /**
4710
4763
  * Optional if `type`==`vpn`
4711
4764
  */
@@ -4986,13 +5039,13 @@ export declare namespace org {
4986
5039
  /**
4987
5040
  * When used as import policy
4988
5041
  */
4989
- action?: pulumi.Input<inputs.org.DeviceprofileGatewayRoutingPoliciesTermAction>;
5042
+ actions?: pulumi.Input<inputs.org.DeviceprofileGatewayRoutingPoliciesTermActions>;
4990
5043
  /**
4991
5044
  * zero or more criteria/filter can be specified to match the term, all criteria have to be met
4992
5045
  */
4993
5046
  matching?: pulumi.Input<inputs.org.DeviceprofileGatewayRoutingPoliciesTermMatching>;
4994
5047
  }
4995
- interface DeviceprofileGatewayRoutingPoliciesTermAction {
5048
+ interface DeviceprofileGatewayRoutingPoliciesTermActions {
4996
5049
  accept?: pulumi.Input<boolean>;
4997
5050
  addCommunities?: pulumi.Input<pulumi.Input<string>[]>;
4998
5051
  /**
@@ -5146,6 +5199,9 @@ export declare namespace org {
5146
5199
  enabled?: pulumi.Input<boolean>;
5147
5200
  }
5148
5201
  interface DeviceprofileGatewayTunnelConfigs {
5202
+ /**
5203
+ * Auto Provisioning configuration for the tunne. This takes precedence over the `primary` and `secondary` nodes.
5204
+ */
5149
5205
  autoProvision?: pulumi.Input<inputs.org.DeviceprofileGatewayTunnelConfigsAutoProvision>;
5150
5206
  /**
5151
5207
  * Only if `provider`==`custom-ipsec`. Must be between 180 and 86400
@@ -5209,7 +5265,10 @@ export declare namespace org {
5209
5265
  version?: pulumi.Input<string>;
5210
5266
  }
5211
5267
  interface DeviceprofileGatewayTunnelConfigsAutoProvision {
5212
- enable?: pulumi.Input<boolean>;
5268
+ /**
5269
+ * Enable auto provisioning for the tunnel. If enabled, the `primary` and `secondary` nodes will be ignored.
5270
+ */
5271
+ enabled?: pulumi.Input<boolean>;
5213
5272
  /**
5214
5273
  * API override for POP selection
5215
5274
  */
@@ -5580,19 +5639,22 @@ export declare namespace org {
5580
5639
  siteId?: pulumi.Input<string>;
5581
5640
  }
5582
5641
  interface GatewaytemplateBgpConfig {
5642
+ /**
5643
+ * Optional if `via`==`lan`, `via`==`tunnel` or `via`==`wan`
5644
+ */
5583
5645
  authKey?: pulumi.Input<string>;
5584
5646
  /**
5585
- * When bfdMultiplier is configured alone. Default:
5647
+ * Optional if `via`==`lan`, `via`==`tunnel` or `via`==`wan`, when bfdMultiplier is configured alone. Default:
5586
5648
  * * 1000 if `type`==`external`
5587
5649
  * * 350 `type`==`internal`
5588
5650
  */
5589
5651
  bfdMinimumInterval?: pulumi.Input<number>;
5590
5652
  /**
5591
- * When bfdMinimumIntervalIsConfigured alone
5653
+ * Optional if `via`==`lan`, `via`==`tunnel` or `via`==`wan`, when bfdMinimumIntervalIsConfigured alone
5592
5654
  */
5593
5655
  bfdMultiplier?: pulumi.Input<number>;
5594
5656
  /**
5595
- * BFD provides faster path failure detection and is enabled by default
5657
+ * Optional if `via`==`lan`, `via`==`tunnel` or `via`==`wan`. BFD provides faster path failure detection and is enabled by default
5596
5658
  */
5597
5659
  disableBfd?: pulumi.Input<boolean>;
5598
5660
  export?: pulumi.Input<string>;
@@ -5601,57 +5663,66 @@ export declare namespace org {
5601
5663
  */
5602
5664
  exportPolicy?: pulumi.Input<string>;
5603
5665
  /**
5604
- * By default, either inet/net6 unicast depending on neighbor IP family (v4 or v6). For v6 neighbors, to exchange v4 nexthop, which allows dual-stack support, enable this
5666
+ * Optional if `via`==`lan`, `via`==`tunnel` or `via`==`wan`. By default, either inet/net6 unicast depending on neighbor IP family (v4 or v6). For v6 neighbors, to exchange v4 nexthop, which allows dual-stack support, enable this
5605
5667
  */
5606
5668
  extendedV4Nexthop?: pulumi.Input<boolean>;
5607
5669
  /**
5608
- * `0` means disable
5670
+ * Optional if `via`==`lan`, `via`==`tunnel` or `via`==`wan`. `0` means disable
5609
5671
  */
5610
5672
  gracefulRestartTime?: pulumi.Input<number>;
5673
+ /**
5674
+ * Optional if `via`==`lan`, `via`==`tunnel` or `via`==`wan`. Default is 90.
5675
+ */
5611
5676
  holdTime?: pulumi.Input<number>;
5612
5677
  import?: pulumi.Input<string>;
5613
5678
  /**
5614
- * Default import policies if no per-neighbor policies defined
5679
+ * Optional if `via`==`lan`, `via`==`tunnel` or `via`==`wan`. Default import policies if no per-neighbor policies defined
5615
5680
  */
5616
5681
  importPolicy?: pulumi.Input<string>;
5617
5682
  /**
5618
- * Local AS. Value must be in range 1-4294967295 or a variable (e.g. `{{as_variable}}`)
5683
+ * Required if `via`==`lan`, `via`==`tunnel` or `via`==`wan`. BGPLocal AS. Value must be in range 1-4294967295 or a variable (e.g. `{{as_variable}}`)
5619
5684
  */
5620
5685
  localAs?: pulumi.Input<string>;
5621
5686
  /**
5622
- * Neighbor AS. Value must be in range 1-4294967295 or a variable (e.g. `{{as_variable}}`)
5687
+ * Neighbor AS. If `type`==`internal`, must be equal to `localAs`. Value must be in range 1-4294967295 or a variable (e.g. `{{as_variable}}`)
5623
5688
  */
5624
5689
  neighborAs?: pulumi.Input<string>;
5625
5690
  /**
5626
- * If per-neighbor as is desired. Property key is the neighbor address
5691
+ * Required if `via`==`lan`, `via`==`tunnel` or `via`==`wan`. If per-neighbor as is desired. Property key is the neighbor address
5627
5692
  */
5628
5693
  neighbors?: pulumi.Input<{
5629
5694
  [key: string]: pulumi.Input<inputs.org.GatewaytemplateBgpConfigNeighbors>;
5630
5695
  }>;
5631
5696
  /**
5632
- * If `type`!=`external`or `via`==`wan`networks where we expect BGP neighbor to connect to/from
5697
+ * Optional if `via`==`lan`. List of networks where we expect BGP neighbor to connect to/from
5633
5698
  */
5634
5699
  networks?: pulumi.Input<pulumi.Input<string>[]>;
5700
+ /**
5701
+ * Optional if `via`==`lan`, `via`==`tunnel` or `via`==`wan`. If true, we will not advertise private ASNs (AS 64512-65534) to this neighbor
5702
+ */
5635
5703
  noPrivateAs?: pulumi.Input<boolean>;
5636
5704
  /**
5637
- * By default, we'll re-advertise all learned BGP routers toward overlay
5705
+ * Optional if `via`==`lan`, `via`==`tunnel` or `via`==`wan`. By default, we'll re-advertise all learned BGP routers toward overlay
5638
5706
  */
5639
5707
  noReadvertiseToOverlay?: pulumi.Input<boolean>;
5640
5708
  /**
5641
- * If `type`==`tunnel`
5709
+ * Optional if `via`==`tunnel`
5642
5710
  */
5643
5711
  tunnelName?: pulumi.Input<string>;
5644
5712
  /**
5645
- * enum: `external`, `internal`
5713
+ * Required if `via`==`lan`, `via`==`tunnel` or `via`==`wan`. enum: `external`, `internal`
5646
5714
  */
5647
5715
  type?: pulumi.Input<string>;
5648
5716
  /**
5649
- * network name. enum: `lan`, `tunnel`, `vpn`, `wan`
5717
+ * enum: `lan`, `tunnel`, `vpn`, `wan`
5718
+ */
5719
+ via: pulumi.Input<string>;
5720
+ /**
5721
+ * Optional if `via`==`vpn`
5650
5722
  */
5651
- via?: pulumi.Input<string>;
5652
5723
  vpnName?: pulumi.Input<string>;
5653
5724
  /**
5654
- * If `via`==`wan`
5725
+ * Optional if `via`==`wan`
5655
5726
  */
5656
5727
  wanName?: pulumi.Input<string>;
5657
5728
  }
@@ -5670,7 +5741,7 @@ export declare namespace org {
5670
5741
  /**
5671
5742
  * Neighbor AS. Value must be in range 1-4294967295 or a variable (e.g. `{{as_variable}}`)
5672
5743
  */
5673
- neighborAs?: pulumi.Input<string>;
5744
+ neighborAs: pulumi.Input<string>;
5674
5745
  }
5675
5746
  interface GatewaytemplateDhcpdConfig {
5676
5747
  /**
@@ -5691,6 +5762,8 @@ export declare namespace org {
5691
5762
  dnsServers?: pulumi.Input<pulumi.Input<string>[]>;
5692
5763
  /**
5693
5764
  * If `type`==`local` or `type6`==`local` - optional, if not defined, system one will be used
5765
+ *
5766
+ * @deprecated Configuring `dnsSuffix` is deprecated and will not be supported in the future, please configure Code 15 or Code 119 in Server `options` instead
5694
5767
  */
5695
5768
  dnsSuffixes?: pulumi.Input<pulumi.Input<string>[]>;
5696
5769
  /**
@@ -6105,7 +6178,7 @@ export declare namespace org {
6105
6178
  /**
6106
6179
  * enum: `local`, `tunnel`, `vpn`, `wan`
6107
6180
  */
6108
- type?: pulumi.Input<string>;
6181
+ type: pulumi.Input<string>;
6109
6182
  /**
6110
6183
  * Optional if `type`==`vpn`
6111
6184
  */
@@ -6386,13 +6459,13 @@ export declare namespace org {
6386
6459
  /**
6387
6460
  * When used as import policy
6388
6461
  */
6389
- action?: pulumi.Input<inputs.org.GatewaytemplateRoutingPoliciesTermAction>;
6462
+ actions?: pulumi.Input<inputs.org.GatewaytemplateRoutingPoliciesTermActions>;
6390
6463
  /**
6391
6464
  * zero or more criteria/filter can be specified to match the term, all criteria have to be met
6392
6465
  */
6393
6466
  matching?: pulumi.Input<inputs.org.GatewaytemplateRoutingPoliciesTermMatching>;
6394
6467
  }
6395
- interface GatewaytemplateRoutingPoliciesTermAction {
6468
+ interface GatewaytemplateRoutingPoliciesTermActions {
6396
6469
  accept?: pulumi.Input<boolean>;
6397
6470
  addCommunities?: pulumi.Input<pulumi.Input<string>[]>;
6398
6471
  /**
@@ -6546,6 +6619,9 @@ export declare namespace org {
6546
6619
  enabled?: pulumi.Input<boolean>;
6547
6620
  }
6548
6621
  interface GatewaytemplateTunnelConfigs {
6622
+ /**
6623
+ * Auto Provisioning configuration for the tunne. This takes precedence over the `primary` and `secondary` nodes.
6624
+ */
6549
6625
  autoProvision?: pulumi.Input<inputs.org.GatewaytemplateTunnelConfigsAutoProvision>;
6550
6626
  /**
6551
6627
  * Only if `provider`==`custom-ipsec`. Must be between 180 and 86400
@@ -6609,7 +6685,10 @@ export declare namespace org {
6609
6685
  version?: pulumi.Input<string>;
6610
6686
  }
6611
6687
  interface GatewaytemplateTunnelConfigsAutoProvision {
6612
- enable?: pulumi.Input<boolean>;
6688
+ /**
6689
+ * Enable auto provisioning for the tunnel. If enabled, the `primary` and `secondary` nodes will be ignored.
6690
+ */
6691
+ enabled?: pulumi.Input<boolean>;
6613
6692
  /**
6614
6693
  * API override for POP selection
6615
6694
  */
@@ -8030,18 +8109,6 @@ export declare namespace org {
8030
8109
  * string the switch role must start with to use this rule. It is possible to combine with the `matchName` and `matchModel` attributes
8031
8110
  */
8032
8111
  matchRole?: pulumi.Input<string>;
8033
- /**
8034
- * property key define the type of matching, value is the string to match. e.g: `match_name[0:3]`, `match_name[2:6]`, `matchModel`, `match_model[0-6]`
8035
- *
8036
- * @deprecated The `matchType` attribute has been deprecated in version v0.2.8 of the Juniper-Mist Provider. It has been replaced with the `matchName`, `matchModel` and `matchRole`attributes and may be removed in future versions.
8037
- Please update your configurations.
8038
- */
8039
- matchType?: pulumi.Input<string>;
8040
- /**
8041
- * @deprecated The `matchValue` attribute has been deprecated in version v0.2.8 of the Juniper-Mist Provider. It has been replaced with the `matchName`, `matchModel` and `matchRole`attributes and may be removed in future versions.
8042
- Please update your configurations.
8043
- */
8044
- matchValue?: pulumi.Input<string>;
8045
8112
  /**
8046
8113
  * Rule name. WARNING: the name `default` is reserved and can only be used for the last rule in the list
8047
8114
  */
@@ -11567,18 +11634,6 @@ export declare namespace site {
11567
11634
  * string the switch role must start with to use this rule. It is possible to combine with the `matchName` and `matchModel` attributes
11568
11635
  */
11569
11636
  matchRole?: pulumi.Input<string>;
11570
- /**
11571
- * property key define the type of matching, value is the string to match. e.g: `match_name[0:3]`, `match_name[2:6]`, `matchModel`, `match_model[0-6]`
11572
- *
11573
- * @deprecated The `matchType` attribute has been deprecated in version v0.2.8 of the Juniper-Mist Provider. It has been replaced with the `matchName`, `matchModel` and `matchRole`attributes and may be removed in future versions.
11574
- Please update your configurations.
11575
- */
11576
- matchType?: pulumi.Input<string>;
11577
- /**
11578
- * @deprecated The `matchValue` attribute has been deprecated in version v0.2.8 of the Juniper-Mist Provider. It has been replaced with the `matchName`, `matchModel` and `matchRole`attributes and may be removed in future versions.
11579
- Please update your configurations.
11580
- */
11581
- matchValue?: pulumi.Input<string>;
11582
11637
  /**
11583
11638
  * Rule name. WARNING: the name `default` is reserved and can only be used for the last rule in the list
11584
11639
  */