@pulumi/juniper-mist 0.0.16 → 0.0.18

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
@@ -589,6 +589,9 @@ export declare namespace device {
589
589
  mac: pulumi.Input<string>;
590
590
  }
591
591
  interface GatewayDhcpdConfig {
592
+ /**
593
+ * Property key is the network name
594
+ */
592
595
  config?: pulumi.Input<{
593
596
  [key: string]: pulumi.Input<inputs.device.GatewayDhcpdConfigConfig>;
594
597
  }>;
@@ -920,7 +923,7 @@ export declare namespace device {
920
923
  */
921
924
  useMgmtVrf?: pulumi.Input<boolean>;
922
925
  /**
923
- * for host-out traffic (NTP/TACPLUS/RADIUS/SYSLOG/SNMP), if alternative source network/ip is desired,
926
+ * for host-out traffic (NTP/TACPLUS/RADIUS/SYSLOG/SNMP), if alternative source network/ip is desired
924
927
  */
925
928
  useMgmtVrfForHostOut?: pulumi.Input<boolean>;
926
929
  vlanId?: pulumi.Input<string>;
@@ -989,11 +992,30 @@ export declare namespace device {
989
992
  */
990
993
  type?: pulumi.Input<string>;
991
994
  /**
992
- * required when`type`==`tunnel`
995
+ * optional if `type`==`vpn`
993
996
  */
994
997
  wanName?: pulumi.Input<string>;
995
998
  }
996
999
  interface GatewayPortConfig {
1000
+ /**
1001
+ * if `aggregated`==`true`. To disable LCP support for the AE interface
1002
+ */
1003
+ aeDisableLacp?: pulumi.Input<boolean>;
1004
+ /**
1005
+ * if `aggregated`==`true`. Users could force to use the designated AE name (must be an integer between 0 and 127)
1006
+ */
1007
+ aeIdx?: pulumi.Input<string>;
1008
+ /**
1009
+ * For SRX Only, if `aggregated`==`true`.Sets the state of the interface as UP when the peer has limited LACP capability.\n
1010
+ * Use case: When a device connected to this AE port is ZTPing for the first time, it will not have LACP configured on the other end\n
1011
+ * Note: Turning this on will enable force-up on one of the interfaces in the bundle only
1012
+ */
1013
+ aeLacpForceUp?: pulumi.Input<boolean>;
1014
+ aggregated?: pulumi.Input<boolean>;
1015
+ /**
1016
+ * if want to generate port up/down alarm, set it to true
1017
+ */
1018
+ critical?: pulumi.Input<boolean>;
997
1019
  description?: pulumi.Input<string>;
998
1020
  disableAutoneg?: pulumi.Input<boolean>;
999
1021
  /**
@@ -1379,6 +1401,10 @@ export declare namespace device {
1379
1401
  * enum: `active-active`, `active-standby`
1380
1402
  */
1381
1403
  mode?: pulumi.Input<string>;
1404
+ /**
1405
+ * networks reachable via this tunnel
1406
+ */
1407
+ networks?: pulumi.Input<pulumi.Input<string>[]>;
1382
1408
  primary?: pulumi.Input<inputs.device.GatewayTunnelConfigsPrimary>;
1383
1409
  /**
1384
1410
  * Only if `provider`== `custom-ipsec`
@@ -1636,7 +1662,7 @@ export declare namespace device {
1636
1662
  * enum: `allow`, `deny`
1637
1663
  */
1638
1664
  action?: pulumi.Input<string>;
1639
- dstTag?: pulumi.Input<string>;
1665
+ dstTag: pulumi.Input<string>;
1640
1666
  }
1641
1667
  interface SwitchAclTags {
1642
1668
  /**
@@ -1711,6 +1737,9 @@ export declare namespace device {
1711
1737
  networks?: pulumi.Input<pulumi.Input<string>[]>;
1712
1738
  }
1713
1739
  interface SwitchDhcpdConfig {
1740
+ /**
1741
+ * Property key is the network name
1742
+ */
1714
1743
  config?: pulumi.Input<{
1715
1744
  [key: string]: pulumi.Input<inputs.device.SwitchDhcpdConfigConfig>;
1716
1745
  }>;
@@ -1914,7 +1943,7 @@ export declare namespace device {
1914
1943
  */
1915
1944
  useMgmtVrf?: pulumi.Input<boolean>;
1916
1945
  /**
1917
- * for host-out traffic (NTP/TACPLUS/RADIUS/SYSLOG/SNMP), if alternative source network/ip is desired,
1946
+ * for host-out traffic (NTP/TACPLUS/RADIUS/SYSLOG/SNMP), if alternative source network/ip is desired
1918
1947
  */
1919
1948
  useMgmtVrfForHostOut?: pulumi.Input<boolean>;
1920
1949
  }
@@ -3319,6 +3348,9 @@ export declare namespace org {
3319
3348
  neighborAs?: pulumi.Input<number>;
3320
3349
  }
3321
3350
  interface DeviceprofileGatewayDhcpdConfig {
3351
+ /**
3352
+ * Property key is the network name
3353
+ */
3322
3354
  config?: pulumi.Input<{
3323
3355
  [key: string]: pulumi.Input<inputs.org.DeviceprofileGatewayDhcpdConfigConfig>;
3324
3356
  }>;
@@ -3643,7 +3675,7 @@ export declare namespace org {
3643
3675
  */
3644
3676
  useMgmtVrf?: pulumi.Input<boolean>;
3645
3677
  /**
3646
- * for host-out traffic (NTP/TACPLUS/RADIUS/SYSLOG/SNMP), if alternative source network/ip is desired,
3678
+ * for host-out traffic (NTP/TACPLUS/RADIUS/SYSLOG/SNMP), if alternative source network/ip is desired
3647
3679
  */
3648
3680
  useMgmtVrfForHostOut?: pulumi.Input<boolean>;
3649
3681
  vlanId?: pulumi.Input<string>;
@@ -3712,11 +3744,30 @@ export declare namespace org {
3712
3744
  */
3713
3745
  type?: pulumi.Input<string>;
3714
3746
  /**
3715
- * required when`type`==`tunnel`
3747
+ * optional if `type`==`vpn`
3716
3748
  */
3717
3749
  wanName?: pulumi.Input<string>;
3718
3750
  }
3719
3751
  interface DeviceprofileGatewayPortConfig {
3752
+ /**
3753
+ * if `aggregated`==`true`. To disable LCP support for the AE interface
3754
+ */
3755
+ aeDisableLacp?: pulumi.Input<boolean>;
3756
+ /**
3757
+ * if `aggregated`==`true`. Users could force to use the designated AE name (must be an integer between 0 and 127)
3758
+ */
3759
+ aeIdx?: pulumi.Input<string>;
3760
+ /**
3761
+ * For SRX Only, if `aggregated`==`true`.Sets the state of the interface as UP when the peer has limited LACP capability.\n
3762
+ * Use case: When a device connected to this AE port is ZTPing for the first time, it will not have LACP configured on the other end\n
3763
+ * Note: Turning this on will enable force-up on one of the interfaces in the bundle only
3764
+ */
3765
+ aeLacpForceUp?: pulumi.Input<boolean>;
3766
+ aggregated?: pulumi.Input<boolean>;
3767
+ /**
3768
+ * if want to generate port up/down alarm, set it to true
3769
+ */
3770
+ critical?: pulumi.Input<boolean>;
3720
3771
  description?: pulumi.Input<string>;
3721
3772
  disableAutoneg?: pulumi.Input<boolean>;
3722
3773
  /**
@@ -4092,6 +4143,10 @@ export declare namespace org {
4092
4143
  * enum: `active-active`, `active-standby`
4093
4144
  */
4094
4145
  mode?: pulumi.Input<string>;
4146
+ /**
4147
+ * networks reachable via this tunnel
4148
+ */
4149
+ networks?: pulumi.Input<pulumi.Input<string>[]>;
4095
4150
  primary?: pulumi.Input<inputs.org.DeviceprofileGatewayTunnelConfigsPrimary>;
4096
4151
  /**
4097
4152
  * Only if `provider`== `custom-ipsec`
@@ -4418,6 +4473,9 @@ export declare namespace org {
4418
4473
  neighborAs?: pulumi.Input<number>;
4419
4474
  }
4420
4475
  interface GatewaytemplateDhcpdConfig {
4476
+ /**
4477
+ * Property key is the network name
4478
+ */
4421
4479
  config?: pulumi.Input<{
4422
4480
  [key: string]: pulumi.Input<inputs.org.GatewaytemplateDhcpdConfigConfig>;
4423
4481
  }>;
@@ -4742,7 +4800,7 @@ export declare namespace org {
4742
4800
  */
4743
4801
  useMgmtVrf?: pulumi.Input<boolean>;
4744
4802
  /**
4745
- * for host-out traffic (NTP/TACPLUS/RADIUS/SYSLOG/SNMP), if alternative source network/ip is desired,
4803
+ * for host-out traffic (NTP/TACPLUS/RADIUS/SYSLOG/SNMP), if alternative source network/ip is desired
4746
4804
  */
4747
4805
  useMgmtVrfForHostOut?: pulumi.Input<boolean>;
4748
4806
  vlanId?: pulumi.Input<string>;
@@ -4811,11 +4869,30 @@ export declare namespace org {
4811
4869
  */
4812
4870
  type?: pulumi.Input<string>;
4813
4871
  /**
4814
- * required when`type`==`tunnel`
4872
+ * optional if `type`==`vpn`
4815
4873
  */
4816
4874
  wanName?: pulumi.Input<string>;
4817
4875
  }
4818
4876
  interface GatewaytemplatePortConfig {
4877
+ /**
4878
+ * if `aggregated`==`true`. To disable LCP support for the AE interface
4879
+ */
4880
+ aeDisableLacp?: pulumi.Input<boolean>;
4881
+ /**
4882
+ * if `aggregated`==`true`. Users could force to use the designated AE name (must be an integer between 0 and 127)
4883
+ */
4884
+ aeIdx?: pulumi.Input<string>;
4885
+ /**
4886
+ * For SRX Only, if `aggregated`==`true`.Sets the state of the interface as UP when the peer has limited LACP capability.\n
4887
+ * Use case: When a device connected to this AE port is ZTPing for the first time, it will not have LACP configured on the other end\n
4888
+ * Note: Turning this on will enable force-up on one of the interfaces in the bundle only
4889
+ */
4890
+ aeLacpForceUp?: pulumi.Input<boolean>;
4891
+ aggregated?: pulumi.Input<boolean>;
4892
+ /**
4893
+ * if want to generate port up/down alarm, set it to true
4894
+ */
4895
+ critical?: pulumi.Input<boolean>;
4819
4896
  description?: pulumi.Input<string>;
4820
4897
  disableAutoneg?: pulumi.Input<boolean>;
4821
4898
  /**
@@ -5191,6 +5268,10 @@ export declare namespace org {
5191
5268
  * enum: `active-active`, `active-standby`
5192
5269
  */
5193
5270
  mode?: pulumi.Input<string>;
5271
+ /**
5272
+ * networks reachable via this tunnel
5273
+ */
5274
+ networks?: pulumi.Input<pulumi.Input<string>[]>;
5194
5275
  primary?: pulumi.Input<inputs.org.GatewaytemplateTunnelConfigsPrimary>;
5195
5276
  /**
5196
5277
  * Only if `provider`== `custom-ipsec`
@@ -5660,7 +5741,7 @@ export declare namespace org {
5660
5741
  * enum: `allow`, `deny`
5661
5742
  */
5662
5743
  action?: pulumi.Input<string>;
5663
- dstTag?: pulumi.Input<string>;
5744
+ dstTag: pulumi.Input<string>;
5664
5745
  }
5665
5746
  interface NetworktemplateAclTags {
5666
5747
  /**
@@ -6377,6 +6458,10 @@ export declare namespace org {
6377
6458
  * **Note**: no check is done
6378
6459
  */
6379
6460
  additionalConfigCmds?: pulumi.Input<pulumi.Input<string>[]>;
6461
+ /**
6462
+ * In-Band Management interface configuration
6463
+ */
6464
+ ipConfig?: pulumi.Input<inputs.org.NetworktemplateSwitchMatchingRuleIpConfig>;
6380
6465
  /**
6381
6466
  * role to match
6382
6467
  */
@@ -6387,6 +6472,10 @@ export declare namespace org {
6387
6472
  matchType?: pulumi.Input<string>;
6388
6473
  matchValue?: pulumi.Input<string>;
6389
6474
  name?: pulumi.Input<string>;
6475
+ /**
6476
+ * Out-of-Band Management interface configuration
6477
+ */
6478
+ oobIpConfig?: pulumi.Input<inputs.org.NetworktemplateSwitchMatchingRuleOobIpConfig>;
6390
6479
  /**
6391
6480
  * Propery key is the interface name or interface range
6392
6481
  */
@@ -6401,6 +6490,30 @@ export declare namespace org {
6401
6490
  [key: string]: pulumi.Input<inputs.org.NetworktemplateSwitchMatchingRulePortMirroring>;
6402
6491
  }>;
6403
6492
  }
6493
+ interface NetworktemplateSwitchMatchingRuleIpConfig {
6494
+ /**
6495
+ * VLAN Name for the management interface
6496
+ */
6497
+ network?: pulumi.Input<string>;
6498
+ /**
6499
+ * enum: `dhcp`, `static`
6500
+ */
6501
+ type?: pulumi.Input<string>;
6502
+ }
6503
+ interface NetworktemplateSwitchMatchingRuleOobIpConfig {
6504
+ /**
6505
+ * enum: `dhcp`, `static`
6506
+ */
6507
+ type?: pulumi.Input<string>;
6508
+ /**
6509
+ * f supported on the platform. If enabled, DNS will be using this routing-instance, too
6510
+ */
6511
+ useMgmtVrf?: pulumi.Input<boolean>;
6512
+ /**
6513
+ * for host-out traffic (NTP/TACPLUS/RADIUS/SYSLOG/SNMP), if alternative source network/ip is desired
6514
+ */
6515
+ useMgmtVrfForHostOut?: pulumi.Input<boolean>;
6516
+ }
6404
6517
  interface NetworktemplateSwitchMatchingRulePortConfig {
6405
6518
  /**
6406
6519
  * To disable LACP support for the AE interface
@@ -7949,6 +8062,10 @@ export declare namespace org {
7949
8062
  locales?: pulumi.Input<{
7950
8063
  [key: string]: pulumi.Input<inputs.org.WlanPortalTemplatePortalTemplateLocales>;
7951
8064
  }>;
8065
+ /**
8066
+ * path to the background image file. File must be a `png` image less than 100kB and image dimension must be less 500px x 200px (width x height).
8067
+ */
8068
+ logo?: pulumi.Input<string>;
7952
8069
  message?: pulumi.Input<string>;
7953
8070
  multiAuth?: pulumi.Input<boolean>;
7954
8071
  /**
@@ -8433,10 +8550,6 @@ export declare namespace org {
8433
8550
  * text of the Terms of Service
8434
8551
  */
8435
8552
  tosText?: pulumi.Input<string>;
8436
- /**
8437
- * label for Amazon auth button
8438
- */
8439
- uthButtonAmazon?: pulumi.Input<string>;
8440
8553
  }
8441
8554
  interface WlanQos {
8442
8555
  /**
@@ -8560,7 +8673,7 @@ export declare namespace site {
8560
8673
  * enum: `allow`, `deny`
8561
8674
  */
8562
8675
  action?: pulumi.Input<string>;
8563
- dstTag?: pulumi.Input<string>;
8676
+ dstTag: pulumi.Input<string>;
8564
8677
  }
8565
8678
  interface NetworktemplateAclTags {
8566
8679
  /**
@@ -9277,6 +9390,10 @@ export declare namespace site {
9277
9390
  * **Note**: no check is done
9278
9391
  */
9279
9392
  additionalConfigCmds?: pulumi.Input<pulumi.Input<string>[]>;
9393
+ /**
9394
+ * In-Band Management interface configuration
9395
+ */
9396
+ ipConfig?: pulumi.Input<inputs.site.NetworktemplateSwitchMatchingRuleIpConfig>;
9280
9397
  /**
9281
9398
  * role to match
9282
9399
  */
@@ -9287,6 +9404,10 @@ export declare namespace site {
9287
9404
  matchType?: pulumi.Input<string>;
9288
9405
  matchValue?: pulumi.Input<string>;
9289
9406
  name?: pulumi.Input<string>;
9407
+ /**
9408
+ * Out-of-Band Management interface configuration
9409
+ */
9410
+ oobIpConfig?: pulumi.Input<inputs.site.NetworktemplateSwitchMatchingRuleOobIpConfig>;
9290
9411
  /**
9291
9412
  * Propery key is the interface name or interface range
9292
9413
  */
@@ -9301,6 +9422,30 @@ export declare namespace site {
9301
9422
  [key: string]: pulumi.Input<inputs.site.NetworktemplateSwitchMatchingRulePortMirroring>;
9302
9423
  }>;
9303
9424
  }
9425
+ interface NetworktemplateSwitchMatchingRuleIpConfig {
9426
+ /**
9427
+ * VLAN Name for the management interface
9428
+ */
9429
+ network?: pulumi.Input<string>;
9430
+ /**
9431
+ * enum: `dhcp`, `static`
9432
+ */
9433
+ type?: pulumi.Input<string>;
9434
+ }
9435
+ interface NetworktemplateSwitchMatchingRuleOobIpConfig {
9436
+ /**
9437
+ * enum: `dhcp`, `static`
9438
+ */
9439
+ type?: pulumi.Input<string>;
9440
+ /**
9441
+ * f supported on the platform. If enabled, DNS will be using this routing-instance, too
9442
+ */
9443
+ useMgmtVrf?: pulumi.Input<boolean>;
9444
+ /**
9445
+ * for host-out traffic (NTP/TACPLUS/RADIUS/SYSLOG/SNMP), if alternative source network/ip is desired
9446
+ */
9447
+ useMgmtVrfForHostOut?: pulumi.Input<boolean>;
9448
+ }
9304
9449
  interface NetworktemplateSwitchMatchingRulePortConfig {
9305
9450
  /**
9306
9451
  * To disable LACP support for the AE interface
@@ -9765,7 +9910,7 @@ export declare namespace site {
9765
9910
  name?: pulumi.Input<string>;
9766
9911
  network?: pulumi.Input<string>;
9767
9912
  /**
9768
- * enum: `http`, `udp`
9913
+ * enum: `http`, `icmp`
9769
9914
  */
9770
9915
  protocol?: pulumi.Input<string>;
9771
9916
  /**
@@ -10775,14 +10920,18 @@ export declare namespace site {
10775
10920
  field4required?: pulumi.Input<boolean>;
10776
10921
  /**
10777
10922
  * Can be used to localize the portal based on the User Agent. Allowed property key values are:
10778
- * "ar", "ca-ES", "cs-CZ", "da-DK", "de-DE", "el-GR", "en-GB", "en-US", "es-ES",
10779
- * "fi-FI", "fr-FR", "he-IL", "hi-IN", "hr-HR", "hu-HU", "id-ID", "it-IT", "ja-JP",
10780
- * "ko-KR", "ms-MY", "nb-NO", "nl-NL", "pl-PL", "pt-BR", "pt-PT", "ro-RO", "ru-RU",
10781
- * "sk-SK", "sv-SE", "th-TH", "tr-TR", "uk-UA", "vi-VN", "zh-Hans", "zh-Hant",
10923
+ * `ar`, `ca-ES`, `cs-CZ`, `da-DK`, `de-DE`, `el-GR`, `en-GB`, `en-US`, `es-ES`, `fi-FI`, `fr-FR`,
10924
+ * `he-IL`, `hi-IN`, `hr-HR`, `hu-HU`, `id-ID`, `it-IT`, `ja-J^`, `ko-KT`, `ms-MY`, `nb-NO`, `nl-NL`,
10925
+ * `pl-PL`, `pt-BR`, `pt-PT`, `ro-RO`, `ru-RU`, `sk-SK`, `sv-SE`, `th-TH`, `tr-TR`, `uk-UA`, `vi-VN`,
10926
+ * `zh-Hans`, `zh-Hant`
10782
10927
  */
10783
10928
  locales?: pulumi.Input<{
10784
10929
  [key: string]: pulumi.Input<inputs.site.WlanPortalTemplatePortalTemplateLocales>;
10785
10930
  }>;
10931
+ /**
10932
+ * path to the background image file. File must be a `png` image`
10933
+ */
10934
+ logo?: pulumi.Input<string>;
10786
10935
  message?: pulumi.Input<string>;
10787
10936
  multiAuth?: pulumi.Input<boolean>;
10788
10937
  /**
@@ -11267,10 +11416,6 @@ export declare namespace site {
11267
11416
  * text of the Terms of Service
11268
11417
  */
11269
11418
  tosText?: pulumi.Input<string>;
11270
- /**
11271
- * label for Amazon auth button
11272
- */
11273
- uthButtonAmazon?: pulumi.Input<string>;
11274
11419
  }
11275
11420
  interface WlanQos {
11276
11421
  /**