@pulumi/juniper-mist 0.1.3 → 0.1.4

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.
Files changed (80) hide show
  1. package/device/gatewayCluster.d.ts +3 -1
  2. package/device/gatewayCluster.js +3 -1
  3. package/device/gatewayCluster.js.map +1 -1
  4. package/device/getApStats.d.ts +1 -1
  5. package/device/getApStats.js.map +1 -1
  6. package/device/getGatewayStats.d.ts +1 -1
  7. package/device/getGatewayStats.js.map +1 -1
  8. package/device/getSwitchStats.d.ts +1 -1
  9. package/device/getSwitchStats.js.map +1 -1
  10. package/getConstAlarms.d.ts +1 -1
  11. package/getConstAlarms.js.map +1 -1
  12. package/getConstAppCategories.d.ts +1 -1
  13. package/getConstAppCategories.js.map +1 -1
  14. package/getConstAppSubCategories.d.ts +1 -1
  15. package/getConstAppSubCategories.js.map +1 -1
  16. package/getConstApplications.d.ts +1 -1
  17. package/getConstApplications.js.map +1 -1
  18. package/getConstCountries.d.ts +1 -1
  19. package/getConstCountries.js.map +1 -1
  20. package/getConstTrafficTypes.d.ts +1 -1
  21. package/getConstTrafficTypes.js.map +1 -1
  22. package/getConstWebhooks.d.ts +1 -1
  23. package/getConstWebhooks.js.map +1 -1
  24. package/getSites.d.ts +1 -1
  25. package/getSites.js.map +1 -1
  26. package/org/getDeviceprofilesAp.d.ts +1 -1
  27. package/org/getDeviceprofilesAp.js.map +1 -1
  28. package/org/getDeviceprofilesGateway.d.ts +1 -1
  29. package/org/getDeviceprofilesGateway.js.map +1 -1
  30. package/org/getGatewaytemplates.d.ts +1 -1
  31. package/org/getGatewaytemplates.js.map +1 -1
  32. package/org/getIdpprofiles.d.ts +1 -1
  33. package/org/getIdpprofiles.js.map +1 -1
  34. package/org/getInventory.d.ts +1 -1
  35. package/org/getInventory.js.map +1 -1
  36. package/org/getNacidpMetadata.d.ts +1 -1
  37. package/org/getNacidpMetadata.js.map +1 -1
  38. package/org/getNacrules.d.ts +1 -1
  39. package/org/getNacrules.js.map +1 -1
  40. package/org/getNactags.d.ts +1 -1
  41. package/org/getNactags.js.map +1 -1
  42. package/org/getNetworks.d.ts +1 -1
  43. package/org/getNetworks.js.map +1 -1
  44. package/org/getNetworktemplates.d.ts +1 -1
  45. package/org/getNetworktemplates.js.map +1 -1
  46. package/org/getPsks.d.ts +1 -1
  47. package/org/getPsks.js.map +1 -1
  48. package/org/getRftemplates.d.ts +1 -1
  49. package/org/getRftemplates.js.map +1 -1
  50. package/org/getServicepolicies.d.ts +1 -1
  51. package/org/getServicepolicies.js.map +1 -1
  52. package/org/getServices.d.ts +1 -1
  53. package/org/getServices.js.map +1 -1
  54. package/org/getSitegroups.d.ts +1 -1
  55. package/org/getSitegroups.js.map +1 -1
  56. package/org/getSsoMetadata.d.ts +1 -1
  57. package/org/getSsoMetadata.js.map +1 -1
  58. package/org/getVpns.d.ts +1 -1
  59. package/org/getVpns.js.map +1 -1
  60. package/org/getWebhooks.d.ts +1 -1
  61. package/org/getWebhooks.js.map +1 -1
  62. package/org/getWlantemplates.d.ts +1 -1
  63. package/org/getWlantemplates.js.map +1 -1
  64. package/org/getWxtags.d.ts +1 -1
  65. package/org/getWxtags.js.map +1 -1
  66. package/org/inventory.d.ts +9 -3
  67. package/org/inventory.js.map +1 -1
  68. package/org/wlan.d.ts +57 -42
  69. package/org/wlan.js +6 -4
  70. package/org/wlan.js.map +1 -1
  71. package/package.json +3 -3
  72. package/site/getPsks.d.ts +1 -1
  73. package/site/getPsks.js.map +1 -1
  74. package/site/getWebhooks.d.ts +1 -1
  75. package/site/getWebhooks.js.map +1 -1
  76. package/site/wlan.d.ts +57 -42
  77. package/site/wlan.js +6 -4
  78. package/site/wlan.js.map +1 -1
  79. package/types/input.d.ts +120 -126
  80. package/types/output.d.ts +171 -177
package/types/input.d.ts CHANGED
@@ -8067,20 +8067,20 @@ Please update your configurations.
8067
8067
  /**
8068
8068
  * API Key
8069
8069
  */
8070
- apiKey: pulumi.Input<string>;
8070
+ apiKey?: pulumi.Input<string>;
8071
8071
  /**
8072
8072
  * console URL
8073
8073
  */
8074
- consoleUrl: pulumi.Input<string>;
8074
+ consoleUrl?: pulumi.Input<string>;
8075
8075
  enabled?: pulumi.Input<boolean>;
8076
8076
  /**
8077
8077
  * password
8078
8078
  */
8079
- password: pulumi.Input<string>;
8079
+ password?: pulumi.Input<string>;
8080
8080
  /**
8081
8081
  * username
8082
8082
  */
8083
- username: pulumi.Input<string>;
8083
+ username?: pulumi.Input<string>;
8084
8084
  }
8085
8085
  interface WlanAppLimit {
8086
8086
  /**
@@ -8281,7 +8281,6 @@ Please update your configurations.
8281
8281
  * enum: `cloudPsks`, `radius`
8282
8282
  */
8283
8283
  source?: pulumi.Input<string>;
8284
- vlanIds?: pulumi.Input<pulumi.Input<string>[]>;
8285
8284
  }
8286
8285
  interface WlanDynamicVlan {
8287
8286
  /**
@@ -8289,7 +8288,7 @@ Please update your configurations.
8289
8288
  */
8290
8289
  defaultVlanIds: pulumi.Input<pulumi.Input<string>[]>;
8291
8290
  /**
8292
- * whether to enable dynamic vlan
8291
+ * Requires `vlanEnabled`==`true` to be set to `true`. Whether to enable dynamic vlan
8293
8292
  */
8294
8293
  enabled?: pulumi.Input<boolean>;
8295
8294
  /**
@@ -8356,19 +8355,19 @@ Please update your configurations.
8356
8355
  }
8357
8356
  interface WlanPortal {
8358
8357
  /**
8359
- * whether to allow guest to connect to other Guest WLANs (with different `WLAN.ssid`) of same org without reauthentication (disable randomMac for seamless roaming)
8358
+ * Optional if `amazonEnabled`==`true`. Whether to allow guest to connect to other Guest WLANs (with different `WLAN.ssid`) of same org without reauthentication (disable randomMac for seamless roaming)
8360
8359
  */
8361
8360
  allowWlanIdRoam?: pulumi.Input<boolean>;
8362
8361
  /**
8363
- * amazon OAuth2 client id. This is optional. If not provided, it will use a default one.
8362
+ * Optional if `amazonEnabled`==`true`. Amazon OAuth2 client id. This is optional. If not provided, it will use a default one.
8364
8363
  */
8365
8364
  amazonClientId?: pulumi.Input<string>;
8366
8365
  /**
8367
- * amazon OAuth2 client secret. If amazonClientId was provided, provide a correspoinding value. Else leave blank.
8366
+ * Optional if `amazonEnabled`==`true`. Amazon OAuth2 client secret. If amazonClientId was provided, provide a correspoinding value. Else leave blank.
8368
8367
  */
8369
8368
  amazonClientSecret?: pulumi.Input<string>;
8370
8369
  /**
8371
- * Matches authenticated user email against provided domains. If null or [], all authenticated emails will be allowed.
8370
+ * Optional if `amazonEnabled`==`true`. Matches authenticated user email against provided domains. If null or [], all authenticated emails will be allowed.
8372
8371
  */
8373
8372
  amazonEmailDomains?: pulumi.Input<pulumi.Input<string>[]>;
8374
8373
  /**
@@ -8376,21 +8375,19 @@ Please update your configurations.
8376
8375
  */
8377
8376
  amazonEnabled?: pulumi.Input<boolean>;
8378
8377
  /**
8379
- * interval for which guest remains authorized using amazon auth (in minutes), if not provided, uses expire`
8378
+ * Optional if `amazonEnabled`==`true`. Interval for which guest remains authorized using amazon auth (in minutes), if not provided, uses expire`
8380
8379
  */
8381
8380
  amazonExpire?: pulumi.Input<number>;
8382
8381
  /**
8383
- * authentication scheme. enum: `external`, `none`, `sso`
8382
+ * authentication scheme. enum: `amazon`, `azure`, `email`, `external`, `facebook`, `google`, `microsoft`, `multi`, `none`, `password`, `sponsor`, `sso`
8384
8383
  */
8385
8384
  auth?: pulumi.Input<string>;
8386
8385
  /**
8387
- * Required if `azureEnabled`==`true`.
8388
- * Azure active directory app client id
8386
+ * Required if `azureEnabled`==`true`. Azure active directory app client id
8389
8387
  */
8390
8388
  azureClientId?: pulumi.Input<string>;
8391
8389
  /**
8392
- * Required if `azureEnabled`==`true`.
8393
- * Azure active directory app client secret
8390
+ * Required if `azureEnabled`==`true`. Azure active directory app client secret
8394
8391
  */
8395
8392
  azureClientSecret?: pulumi.Input<string>;
8396
8393
  /**
@@ -8402,20 +8399,19 @@ Please update your configurations.
8402
8399
  */
8403
8400
  azureExpire?: pulumi.Input<number>;
8404
8401
  /**
8405
- * Required if `azureEnabled`==`true`.
8406
- * Azure active directory tenant id.
8402
+ * Required if `azureEnabled`==`true`. Azure active directory tenant id.
8407
8403
  */
8408
8404
  azureTenantId?: pulumi.Input<string>;
8409
8405
  /**
8410
- * when `smsProvider`==`broadnet`
8406
+ * Required if `smsProvider`==`broadnet`
8411
8407
  */
8412
8408
  broadnetPassword?: pulumi.Input<string>;
8413
8409
  /**
8414
- * when `smsProvider`==`broadnet`
8410
+ * Required if `smsProvider`==`broadnet`
8415
8411
  */
8416
8412
  broadnetSid?: pulumi.Input<string>;
8417
8413
  /**
8418
- * when `smsProvider`==`broadnet`
8414
+ * Required if `smsProvider`==`broadnet`
8419
8415
  */
8420
8416
  broadnetUserId?: pulumi.Input<string>;
8421
8417
  /**
@@ -8423,7 +8419,7 @@ Please update your configurations.
8423
8419
  */
8424
8420
  bypassWhenCloudDown?: pulumi.Input<boolean>;
8425
8421
  /**
8426
- * when `smsProvider`==`clickatell`
8422
+ * Required if `smsProvider`==`clickatell`
8427
8423
  */
8428
8424
  clickatellApiKey?: pulumi.Input<string>;
8429
8425
  /**
@@ -8443,21 +8439,19 @@ Please update your configurations.
8443
8439
  */
8444
8440
  expire?: pulumi.Input<number>;
8445
8441
  /**
8446
- * external portal URL (e.g. https://host/url) where we can append our query parameters to
8442
+ * Required if `wlanPortalAuth`==`external`. External portal URL (e.g. https://host/url) where we can append our query parameters to
8447
8443
  */
8448
8444
  externalPortalUrl?: pulumi.Input<string>;
8449
8445
  /**
8450
- * Required if `facebookEnabled`==`true`.
8451
- * Facebook OAuth2 app id. This is optional. If not provided, it will use a default one.
8446
+ * Required if `facebookEnabled`==`true`. Facebook OAuth2 app id. This is optional. If not provided, it will use a default one.
8452
8447
  */
8453
8448
  facebookClientId?: pulumi.Input<string>;
8454
8449
  /**
8455
- * Required if `facebookEnabled`==`true`.
8456
- * Facebook OAuth2 app secret. If facebookClientId was provided, provide a correspoinding value. Else leave blank.
8450
+ * Required if `facebookEnabled`==`true`. Facebook OAuth2 app secret. If facebookClientId was provided, provide a correspoinding value. Else leave blank.
8457
8451
  */
8458
8452
  facebookClientSecret?: pulumi.Input<string>;
8459
8453
  /**
8460
- * Matches authenticated user email against provided domains. If null or [], all authenticated emails will be allowed.
8454
+ * Optional if `facebookEnabled`==`true`. Matches authenticated user email against provided domains. If null or [], all authenticated emails will be allowed.
8461
8455
  */
8462
8456
  facebookEmailDomains?: pulumi.Input<pulumi.Input<string>[]>;
8463
8457
  /**
@@ -8465,7 +8459,7 @@ Please update your configurations.
8465
8459
  */
8466
8460
  facebookEnabled?: pulumi.Input<boolean>;
8467
8461
  /**
8468
- * interval for which guest remains authorized using facebook auth (in minutes), if not provided, uses expire`
8462
+ * Optional if `facebookEnabled`==`true`. Interval for which guest remains authorized using facebook auth (in minutes), if not provided, uses expire`
8469
8463
  */
8470
8464
  facebookExpire?: pulumi.Input<number>;
8471
8465
  /**
@@ -8481,11 +8475,11 @@ Please update your configurations.
8481
8475
  */
8482
8476
  googleClientId?: pulumi.Input<string>;
8483
8477
  /**
8484
- * Google OAuth2 app secret. If googleClientId was provided, provide a correspoinding value. Else leave blank.
8478
+ * Optional if `googleEnabled`==`true`. Google OAuth2 app secret. If googleClientId was provided, provide a correspoinding value. Else leave blank.
8485
8479
  */
8486
8480
  googleClientSecret?: pulumi.Input<string>;
8487
8481
  /**
8488
- * Matches authenticated user email against provided domains. If null or [], all authenticated emails will be allowed.
8482
+ * Optional if `googleEnabled`==`true`. Matches authenticated user email against provided domains. If null or [], all authenticated emails will be allowed.
8489
8483
  */
8490
8484
  googleEmailDomains?: pulumi.Input<pulumi.Input<string>[]>;
8491
8485
  /**
@@ -8493,27 +8487,27 @@ Please update your configurations.
8493
8487
  */
8494
8488
  googleEnabled?: pulumi.Input<boolean>;
8495
8489
  /**
8496
- * interval for which guest remains authorized using google auth (in minutes), if not provided, uses expire`
8490
+ * Optional if `googleEnabled`==`true`. Interval for which guest remains authorized using google auth (in minutes), if not provided, uses expire`
8497
8491
  */
8498
8492
  googleExpire?: pulumi.Input<number>;
8499
8493
  /**
8500
- * when `smsProvider`==`gupshup`
8494
+ * Required if `smsProvider`==`gupshup`
8501
8495
  */
8502
8496
  gupshupPassword?: pulumi.Input<string>;
8503
8497
  /**
8504
- * when `smsProvider`==`gupshup`
8498
+ * Required if `smsProvider`==`gupshup`
8505
8499
  */
8506
8500
  gupshupUserid?: pulumi.Input<string>;
8507
8501
  /**
8508
- * microsoft 365 OAuth2 client id. This is optional. If not provided, it will use a default one.
8502
+ * Optional if `microsoftEnabled`==`true`. Microsoft 365 OAuth2 client id. This is optional. If not provided, it will use a default one.
8509
8503
  */
8510
8504
  microsoftClientId?: pulumi.Input<string>;
8511
8505
  /**
8512
- * microsoft 365 OAuth2 client secret. If microsoftClientId was provided, provide a correspoinding value. Else leave blank.
8506
+ * Optional if `microsoftEnabled`==`true`. Microsoft 365 OAuth2 client secret. If microsoftClientId was provided, provide a correspoinding value. Else leave blank.
8513
8507
  */
8514
8508
  microsoftClientSecret?: pulumi.Input<string>;
8515
8509
  /**
8516
- * Matches authenticated user email against provided domains. If null or [], all authenticated emails will be allowed.
8510
+ * Optional if `microsoftEnabled`==`true`. Matches authenticated user email against provided domains. If null or [], all authenticated emails will be allowed.
8517
8511
  */
8518
8512
  microsoftEmailDomains?: pulumi.Input<pulumi.Input<string>[]>;
8519
8513
  /**
@@ -8521,19 +8515,19 @@ Please update your configurations.
8521
8515
  */
8522
8516
  microsoftEnabled?: pulumi.Input<boolean>;
8523
8517
  /**
8524
- * interval for which guest remains authorized using microsoft auth (in minutes), if not provided, uses expire`
8518
+ * Optional if `microsoftEnabled`==`true`. Interval for which guest remains authorized using microsoft auth (in minutes), if not provided, uses expire`
8525
8519
  */
8526
8520
  microsoftExpire?: pulumi.Input<number>;
8527
8521
  /**
8528
- * whether password is enabled
8522
+ * Whether password is enabled
8529
8523
  */
8530
8524
  passphraseEnabled?: pulumi.Input<boolean>;
8531
8525
  /**
8532
- * interval for which guest remains authorized using passphrase auth (in minutes), if not provided, uses `expire`
8526
+ * Optional if `passphraseEnabled`==`true`. Interval for which guest remains authorized using passphrase auth (in minutes), if not provided, uses `expire`
8533
8527
  */
8534
8528
  passphraseExpire?: pulumi.Input<number>;
8535
8529
  /**
8536
- * passphrase
8530
+ * Required if `passphraseEnabled`==`true`.
8537
8531
  */
8538
8532
  password?: pulumi.Input<string>;
8539
8533
  /**
@@ -8546,15 +8540,15 @@ Please update your configurations.
8546
8540
  predefinedSponsorsHideEmail?: pulumi.Input<boolean>;
8547
8541
  privacy?: pulumi.Input<boolean>;
8548
8542
  /**
8549
- * when `smsProvider`==`puzzel`
8543
+ * Required if `smsProvider`==`puzzel`
8550
8544
  */
8551
8545
  puzzelPassword?: pulumi.Input<string>;
8552
8546
  /**
8553
- * when `smsProvider`==`puzzel`
8547
+ * Required if `smsProvider`==`puzzel`
8554
8548
  */
8555
8549
  puzzelServiceId?: pulumi.Input<string>;
8556
8550
  /**
8557
- * when `smsProvider`==`puzzel`
8551
+ * Required if `smsProvider`==`puzzel`
8558
8552
  */
8559
8553
  puzzelUsername?: pulumi.Input<string>;
8560
8554
  /**
@@ -8562,16 +8556,19 @@ Please update your configurations.
8562
8556
  */
8563
8557
  smsEnabled?: pulumi.Input<boolean>;
8564
8558
  /**
8565
- * interval for which guest remains authorized using sms auth (in minutes), if not provided, uses expire`
8559
+ * Optional if `smsEnabled`==`true`. Interval for which guest remains authorized using sms auth (in minutes), if not provided, uses expire`
8566
8560
  */
8567
8561
  smsExpire?: pulumi.Input<number>;
8562
+ /**
8563
+ * Optional if `smsEnabled`==`true`. SMS Message format
8564
+ */
8568
8565
  smsMessageFormat?: pulumi.Input<string>;
8569
8566
  /**
8570
- * enum: `broadnet`, `clickatell`, `gupshup`, `manual`, `puzzel`, `telstra`, `twilio`
8567
+ * Optioanl if `smsEnabled`==`true`. enum: `broadnet`, `clickatell`, `gupshup`, `manual`, `puzzel`, `telstra`, `twilio`
8571
8568
  */
8572
8569
  smsProvider?: pulumi.Input<string>;
8573
8570
  /**
8574
- * whether to automatically approve guest and allow sponsor to revoke guest access, needs predefinedSponsorsEnabled enabled and sponsorNotifyAll disabled
8571
+ * Optional if `sponsorEnabled`==`true`. Whether to automatically approve guest and allow sponsor to revoke guest access, needs predefinedSponsorsEnabled enabled and sponsorNotifyAll disabled
8575
8572
  */
8576
8573
  sponsorAutoApprove?: pulumi.Input<boolean>;
8577
8574
  /**
@@ -8583,19 +8580,19 @@ Please update your configurations.
8583
8580
  */
8584
8581
  sponsorEnabled?: pulumi.Input<boolean>;
8585
8582
  /**
8586
- * interval for which guest remains authorized using sponsor auth (in minutes), if not provided, uses expire`
8583
+ * Optional if `sponsorEnabled`==`true`. Interval for which guest remains authorized using sponsor auth (in minutes), if not provided, uses expire`
8587
8584
  */
8588
8585
  sponsorExpire?: pulumi.Input<number>;
8589
8586
  /**
8590
- * how long to remain valid sponsored guest request approve/deny link received in email, in minutes.
8587
+ * Optional if `sponsorEnabled`==`true`. How long to remain valid sponsored guest request approve/deny link received in email, in minutes.
8591
8588
  */
8592
8589
  sponsorLinkValidityDuration?: pulumi.Input<string>;
8593
8590
  /**
8594
- * whether to notify all sponsors that are mentioned in `sponsors` object. Both `sponsorNotifyAll` and `predefinedSponsorsEnabled` should be true in order to notify sponsors. If true, email sent to 10 sponsors in no particular order.
8591
+ * Optional if `sponsorEnabled`==`true`. whether to notify all sponsors that are mentioned in `sponsors` object. Both `sponsorNotifyAll` and `predefinedSponsorsEnabled` should be true in order to notify sponsors. If true, email sent to 10 sponsors in no particular order.
8595
8592
  */
8596
8593
  sponsorNotifyAll?: pulumi.Input<boolean>;
8597
8594
  /**
8598
- * if enabled, guest will get email about sponsor's action (approve/deny)
8595
+ * Optional if `sponsorEnabled`==`true`. If enabled, guest will get email about sponsor's action (approve/deny)
8599
8596
  */
8600
8597
  sponsorStatusNotify?: pulumi.Input<boolean>;
8601
8598
  /**
@@ -8608,51 +8605,51 @@ Please update your configurations.
8608
8605
  [key: string]: pulumi.Input<string>;
8609
8606
  }>;
8610
8607
  /**
8611
- * if `wlanPortalAuth`==`sso`, default role to assign if there’s no match. By default, an assertion is treated as invalid when there’s no role matched
8608
+ * Optionl if `wlanPortalAuth`==`sso`, default role to assign if there’s no match. By default, an assertion is treated as invalid when there’s no role matched
8612
8609
  */
8613
8610
  ssoDefaultRole?: pulumi.Input<string>;
8614
8611
  /**
8615
- * if `wlanPortalAuth`==`sso`
8612
+ * Optionl if `wlanPortalAuth`==`sso`
8616
8613
  */
8617
8614
  ssoForcedRole?: pulumi.Input<string>;
8618
8615
  /**
8619
- * if `wlanPortalAuth`==`sso`, IDP Cert (used to verify the signed response)
8616
+ * Required if `wlanPortalAuth`==`sso`. IDP Cert (used to verify the signed response)
8620
8617
  */
8621
8618
  ssoIdpCert?: pulumi.Input<string>;
8622
8619
  /**
8623
- * if `wlanPortalAuth`==`sso`, Signing algorithm for SAML Assertion. enum: `sha1`, `sha256`, `sha384`, `sha512`
8620
+ * Optioanl if `wlanPortalAuth`==`sso`, Signing algorithm for SAML Assertion. enum: `sha1`, `sha256`, `sha384`, `sha512`
8624
8621
  */
8625
8622
  ssoIdpSignAlgo?: pulumi.Input<string>;
8626
8623
  /**
8627
- * if `wlanPortalAuth`==`sso`, IDP Single-Sign-On URL
8624
+ * Required if `wlanPortalAuth`==`sso`, IDP Single-Sign-On URL
8628
8625
  */
8629
8626
  ssoIdpSsoUrl?: pulumi.Input<string>;
8630
8627
  /**
8631
- * if `wlanPortalAuth`==`sso`, IDP issuer URL
8628
+ * Required if `wlanPortalAuth`==`sso`, IDP issuer URL
8632
8629
  */
8633
8630
  ssoIssuer?: pulumi.Input<string>;
8634
8631
  /**
8635
- * if `wlanPortalAuth`==`sso`. enum: `email`, `unspecified`
8632
+ * Optional if `wlanPortalAuth`==`sso`. enum: `email`, `unspecified`
8636
8633
  */
8637
8634
  ssoNameidFormat?: pulumi.Input<string>;
8638
8635
  /**
8639
- * when `smsProvider`==`telstra`, Client ID provided by Telstra
8636
+ * Required if `smsProvider`==`telstra`, Client ID provided by Telstra
8640
8637
  */
8641
8638
  telstraClientId?: pulumi.Input<string>;
8642
8639
  /**
8643
- * when `smsProvider`==`telstra`, Client secret provided by Telstra
8640
+ * Required if `smsProvider`==`telstra`, Client secret provided by Telstra
8644
8641
  */
8645
8642
  telstraClientSecret?: pulumi.Input<string>;
8646
8643
  /**
8647
- * when `smsProvider`==`twilio`, Auth token account with twilio account
8644
+ * Required if `smsProvider`==`twilio`, Auth token account with twilio account
8648
8645
  */
8649
8646
  twilioAuthToken?: pulumi.Input<string>;
8650
8647
  /**
8651
- * when `smsProvider`==`twilio`, Twilio phone number associated with the account. See example for accepted format.
8648
+ * Required if `smsProvider`==`twilio`, Twilio phone number associated with the account. See example for accepted format.
8652
8649
  */
8653
8650
  twilioPhoneNumber?: pulumi.Input<string>;
8654
8651
  /**
8655
- * when `smsProvider`==`twilio`, Account SID provided by Twilio
8652
+ * Required if `smsProvider`==`twilio`, Account SID provided by Twilio
8656
8653
  */
8657
8654
  twilioSid?: pulumi.Input<string>;
8658
8655
  }
@@ -11199,20 +11196,20 @@ Please update your configurations.
11199
11196
  /**
11200
11197
  * API Key
11201
11198
  */
11202
- apiKey: pulumi.Input<string>;
11199
+ apiKey?: pulumi.Input<string>;
11203
11200
  /**
11204
11201
  * console URL
11205
11202
  */
11206
- consoleUrl: pulumi.Input<string>;
11203
+ consoleUrl?: pulumi.Input<string>;
11207
11204
  enabled?: pulumi.Input<boolean>;
11208
11205
  /**
11209
11206
  * password
11210
11207
  */
11211
- password: pulumi.Input<string>;
11208
+ password?: pulumi.Input<string>;
11212
11209
  /**
11213
11210
  * username
11214
11211
  */
11215
- username: pulumi.Input<string>;
11212
+ username?: pulumi.Input<string>;
11216
11213
  }
11217
11214
  interface WlanAppLimit {
11218
11215
  /**
@@ -11413,7 +11410,6 @@ Please update your configurations.
11413
11410
  * enum: `cloudPsks`, `radius`
11414
11411
  */
11415
11412
  source?: pulumi.Input<string>;
11416
- vlanIds?: pulumi.Input<pulumi.Input<string>[]>;
11417
11413
  }
11418
11414
  interface WlanDynamicVlan {
11419
11415
  /**
@@ -11421,7 +11417,7 @@ Please update your configurations.
11421
11417
  */
11422
11418
  defaultVlanIds: pulumi.Input<pulumi.Input<string>[]>;
11423
11419
  /**
11424
- * whether to enable dynamic vlan
11420
+ * Requires `vlanEnabled`==`true` to be set to `true`. Whether to enable dynamic vlan
11425
11421
  */
11426
11422
  enabled?: pulumi.Input<boolean>;
11427
11423
  /**
@@ -11488,19 +11484,19 @@ Please update your configurations.
11488
11484
  }
11489
11485
  interface WlanPortal {
11490
11486
  /**
11491
- * whether to allow guest to connect to other Guest WLANs (with different `WLAN.ssid`) of same org without reauthentication (disable randomMac for seamless roaming)
11487
+ * Optional if `amazonEnabled`==`true`. Whether to allow guest to connect to other Guest WLANs (with different `WLAN.ssid`) of same org without reauthentication (disable randomMac for seamless roaming)
11492
11488
  */
11493
11489
  allowWlanIdRoam?: pulumi.Input<boolean>;
11494
11490
  /**
11495
- * amazon OAuth2 client id. This is optional. If not provided, it will use a default one.
11491
+ * Optional if `amazonEnabled`==`true`. Amazon OAuth2 client id. This is optional. If not provided, it will use a default one.
11496
11492
  */
11497
11493
  amazonClientId?: pulumi.Input<string>;
11498
11494
  /**
11499
- * amazon OAuth2 client secret. If amazonClientId was provided, provide a correspoinding value. Else leave blank.
11495
+ * Optional if `amazonEnabled`==`true`. Amazon OAuth2 client secret. If amazonClientId was provided, provide a correspoinding value. Else leave blank.
11500
11496
  */
11501
11497
  amazonClientSecret?: pulumi.Input<string>;
11502
11498
  /**
11503
- * Matches authenticated user email against provided domains. If null or [], all authenticated emails will be allowed.
11499
+ * Optional if `amazonEnabled`==`true`. Matches authenticated user email against provided domains. If null or [], all authenticated emails will be allowed.
11504
11500
  */
11505
11501
  amazonEmailDomains?: pulumi.Input<pulumi.Input<string>[]>;
11506
11502
  /**
@@ -11508,21 +11504,19 @@ Please update your configurations.
11508
11504
  */
11509
11505
  amazonEnabled?: pulumi.Input<boolean>;
11510
11506
  /**
11511
- * interval for which guest remains authorized using amazon auth (in minutes), if not provided, uses expire`
11507
+ * Optional if `amazonEnabled`==`true`. Interval for which guest remains authorized using amazon auth (in minutes), if not provided, uses expire`
11512
11508
  */
11513
11509
  amazonExpire?: pulumi.Input<number>;
11514
11510
  /**
11515
- * authentication scheme. enum: `external`, `none`, `sso`
11511
+ * authentication scheme. enum: `amazon`, `azure`, `email`, `external`, `facebook`, `google`, `microsoft`, `multi`, `none`, `password`, `sponsor`, `sso`
11516
11512
  */
11517
11513
  auth?: pulumi.Input<string>;
11518
11514
  /**
11519
- * Required if `azureEnabled`==`true`.
11520
- * Azure active directory app client id
11515
+ * Required if `azureEnabled`==`true`. Azure active directory app client id
11521
11516
  */
11522
11517
  azureClientId?: pulumi.Input<string>;
11523
11518
  /**
11524
- * Required if `azureEnabled`==`true`.
11525
- * Azure active directory app client secret
11519
+ * Required if `azureEnabled`==`true`. Azure active directory app client secret
11526
11520
  */
11527
11521
  azureClientSecret?: pulumi.Input<string>;
11528
11522
  /**
@@ -11534,20 +11528,19 @@ Please update your configurations.
11534
11528
  */
11535
11529
  azureExpire?: pulumi.Input<number>;
11536
11530
  /**
11537
- * Required if `azureEnabled`==`true`.
11538
- * Azure active directory tenant id.
11531
+ * Required if `azureEnabled`==`true`. Azure active directory tenant id.
11539
11532
  */
11540
11533
  azureTenantId?: pulumi.Input<string>;
11541
11534
  /**
11542
- * when `smsProvider`==`broadnet`
11535
+ * Required if `smsProvider`==`broadnet`
11543
11536
  */
11544
11537
  broadnetPassword?: pulumi.Input<string>;
11545
11538
  /**
11546
- * when `smsProvider`==`broadnet`
11539
+ * Required if `smsProvider`==`broadnet`
11547
11540
  */
11548
11541
  broadnetSid?: pulumi.Input<string>;
11549
11542
  /**
11550
- * when `smsProvider`==`broadnet`
11543
+ * Required if `smsProvider`==`broadnet`
11551
11544
  */
11552
11545
  broadnetUserId?: pulumi.Input<string>;
11553
11546
  /**
@@ -11555,7 +11548,7 @@ Please update your configurations.
11555
11548
  */
11556
11549
  bypassWhenCloudDown?: pulumi.Input<boolean>;
11557
11550
  /**
11558
- * when `smsProvider`==`clickatell`
11551
+ * Required if `smsProvider`==`clickatell`
11559
11552
  */
11560
11553
  clickatellApiKey?: pulumi.Input<string>;
11561
11554
  /**
@@ -11575,21 +11568,19 @@ Please update your configurations.
11575
11568
  */
11576
11569
  expire?: pulumi.Input<number>;
11577
11570
  /**
11578
- * external portal URL (e.g. https://host/url) where we can append our query parameters to
11571
+ * Required if `wlanPortalAuth`==`external`. External portal URL (e.g. https://host/url) where we can append our query parameters to
11579
11572
  */
11580
11573
  externalPortalUrl?: pulumi.Input<string>;
11581
11574
  /**
11582
- * Required if `facebookEnabled`==`true`.
11583
- * Facebook OAuth2 app id. This is optional. If not provided, it will use a default one.
11575
+ * Required if `facebookEnabled`==`true`. Facebook OAuth2 app id. This is optional. If not provided, it will use a default one.
11584
11576
  */
11585
11577
  facebookClientId?: pulumi.Input<string>;
11586
11578
  /**
11587
- * Required if `facebookEnabled`==`true`.
11588
- * Facebook OAuth2 app secret. If facebookClientId was provided, provide a correspoinding value. Else leave blank.
11579
+ * Required if `facebookEnabled`==`true`. Facebook OAuth2 app secret. If facebookClientId was provided, provide a correspoinding value. Else leave blank.
11589
11580
  */
11590
11581
  facebookClientSecret?: pulumi.Input<string>;
11591
11582
  /**
11592
- * Matches authenticated user email against provided domains. If null or [], all authenticated emails will be allowed.
11583
+ * Optional if `facebookEnabled`==`true`. Matches authenticated user email against provided domains. If null or [], all authenticated emails will be allowed.
11593
11584
  */
11594
11585
  facebookEmailDomains?: pulumi.Input<pulumi.Input<string>[]>;
11595
11586
  /**
@@ -11597,7 +11588,7 @@ Please update your configurations.
11597
11588
  */
11598
11589
  facebookEnabled?: pulumi.Input<boolean>;
11599
11590
  /**
11600
- * interval for which guest remains authorized using facebook auth (in minutes), if not provided, uses expire`
11591
+ * Optional if `facebookEnabled`==`true`. Interval for which guest remains authorized using facebook auth (in minutes), if not provided, uses expire`
11601
11592
  */
11602
11593
  facebookExpire?: pulumi.Input<number>;
11603
11594
  /**
@@ -11613,11 +11604,11 @@ Please update your configurations.
11613
11604
  */
11614
11605
  googleClientId?: pulumi.Input<string>;
11615
11606
  /**
11616
- * Google OAuth2 app secret. If googleClientId was provided, provide a correspoinding value. Else leave blank.
11607
+ * Optional if `googleEnabled`==`true`. Google OAuth2 app secret. If googleClientId was provided, provide a correspoinding value. Else leave blank.
11617
11608
  */
11618
11609
  googleClientSecret?: pulumi.Input<string>;
11619
11610
  /**
11620
- * Matches authenticated user email against provided domains. If null or [], all authenticated emails will be allowed.
11611
+ * Optional if `googleEnabled`==`true`. Matches authenticated user email against provided domains. If null or [], all authenticated emails will be allowed.
11621
11612
  */
11622
11613
  googleEmailDomains?: pulumi.Input<pulumi.Input<string>[]>;
11623
11614
  /**
@@ -11625,27 +11616,27 @@ Please update your configurations.
11625
11616
  */
11626
11617
  googleEnabled?: pulumi.Input<boolean>;
11627
11618
  /**
11628
- * interval for which guest remains authorized using google auth (in minutes), if not provided, uses expire`
11619
+ * Optional if `googleEnabled`==`true`. Interval for which guest remains authorized using google auth (in minutes), if not provided, uses expire`
11629
11620
  */
11630
11621
  googleExpire?: pulumi.Input<number>;
11631
11622
  /**
11632
- * when `smsProvider`==`gupshup`
11623
+ * Required if `smsProvider`==`gupshup`
11633
11624
  */
11634
11625
  gupshupPassword?: pulumi.Input<string>;
11635
11626
  /**
11636
- * when `smsProvider`==`gupshup`
11627
+ * Required if `smsProvider`==`gupshup`
11637
11628
  */
11638
11629
  gupshupUserid?: pulumi.Input<string>;
11639
11630
  /**
11640
- * microsoft 365 OAuth2 client id. This is optional. If not provided, it will use a default one.
11631
+ * Optional if `microsoftEnabled`==`true`. Microsoft 365 OAuth2 client id. This is optional. If not provided, it will use a default one.
11641
11632
  */
11642
11633
  microsoftClientId?: pulumi.Input<string>;
11643
11634
  /**
11644
- * microsoft 365 OAuth2 client secret. If microsoftClientId was provided, provide a correspoinding value. Else leave blank.
11635
+ * Optional if `microsoftEnabled`==`true`. Microsoft 365 OAuth2 client secret. If microsoftClientId was provided, provide a correspoinding value. Else leave blank.
11645
11636
  */
11646
11637
  microsoftClientSecret?: pulumi.Input<string>;
11647
11638
  /**
11648
- * Matches authenticated user email against provided domains. If null or [], all authenticated emails will be allowed.
11639
+ * Optional if `microsoftEnabled`==`true`. Matches authenticated user email against provided domains. If null or [], all authenticated emails will be allowed.
11649
11640
  */
11650
11641
  microsoftEmailDomains?: pulumi.Input<pulumi.Input<string>[]>;
11651
11642
  /**
@@ -11653,19 +11644,19 @@ Please update your configurations.
11653
11644
  */
11654
11645
  microsoftEnabled?: pulumi.Input<boolean>;
11655
11646
  /**
11656
- * interval for which guest remains authorized using microsoft auth (in minutes), if not provided, uses expire`
11647
+ * Optional if `microsoftEnabled`==`true`. Interval for which guest remains authorized using microsoft auth (in minutes), if not provided, uses expire`
11657
11648
  */
11658
11649
  microsoftExpire?: pulumi.Input<number>;
11659
11650
  /**
11660
- * whether password is enabled
11651
+ * Whether password is enabled
11661
11652
  */
11662
11653
  passphraseEnabled?: pulumi.Input<boolean>;
11663
11654
  /**
11664
- * interval for which guest remains authorized using passphrase auth (in minutes), if not provided, uses `expire`
11655
+ * Optional if `passphraseEnabled`==`true`. Interval for which guest remains authorized using passphrase auth (in minutes), if not provided, uses `expire`
11665
11656
  */
11666
11657
  passphraseExpire?: pulumi.Input<number>;
11667
11658
  /**
11668
- * passphrase
11659
+ * Required if `passphraseEnabled`==`true`.
11669
11660
  */
11670
11661
  password?: pulumi.Input<string>;
11671
11662
  /**
@@ -11678,15 +11669,15 @@ Please update your configurations.
11678
11669
  predefinedSponsorsHideEmail?: pulumi.Input<boolean>;
11679
11670
  privacy?: pulumi.Input<boolean>;
11680
11671
  /**
11681
- * when `smsProvider`==`puzzel`
11672
+ * Required if `smsProvider`==`puzzel`
11682
11673
  */
11683
11674
  puzzelPassword?: pulumi.Input<string>;
11684
11675
  /**
11685
- * when `smsProvider`==`puzzel`
11676
+ * Required if `smsProvider`==`puzzel`
11686
11677
  */
11687
11678
  puzzelServiceId?: pulumi.Input<string>;
11688
11679
  /**
11689
- * when `smsProvider`==`puzzel`
11680
+ * Required if `smsProvider`==`puzzel`
11690
11681
  */
11691
11682
  puzzelUsername?: pulumi.Input<string>;
11692
11683
  /**
@@ -11694,16 +11685,19 @@ Please update your configurations.
11694
11685
  */
11695
11686
  smsEnabled?: pulumi.Input<boolean>;
11696
11687
  /**
11697
- * interval for which guest remains authorized using sms auth (in minutes), if not provided, uses expire`
11688
+ * Optional if `smsEnabled`==`true`. Interval for which guest remains authorized using sms auth (in minutes), if not provided, uses expire`
11698
11689
  */
11699
11690
  smsExpire?: pulumi.Input<number>;
11691
+ /**
11692
+ * Optional if `smsEnabled`==`true`. SMS Message format
11693
+ */
11700
11694
  smsMessageFormat?: pulumi.Input<string>;
11701
11695
  /**
11702
- * enum: `broadnet`, `clickatell`, `gupshup`, `manual`, `puzzel`, `telstra`, `twilio`
11696
+ * Optioanl if `smsEnabled`==`true`. enum: `broadnet`, `clickatell`, `gupshup`, `manual`, `puzzel`, `telstra`, `twilio`
11703
11697
  */
11704
11698
  smsProvider?: pulumi.Input<string>;
11705
11699
  /**
11706
- * whether to automatically approve guest and allow sponsor to revoke guest access, needs predefinedSponsorsEnabled enabled and sponsorNotifyAll disabled
11700
+ * Optional if `sponsorEnabled`==`true`. Whether to automatically approve guest and allow sponsor to revoke guest access, needs predefinedSponsorsEnabled enabled and sponsorNotifyAll disabled
11707
11701
  */
11708
11702
  sponsorAutoApprove?: pulumi.Input<boolean>;
11709
11703
  /**
@@ -11715,19 +11709,19 @@ Please update your configurations.
11715
11709
  */
11716
11710
  sponsorEnabled?: pulumi.Input<boolean>;
11717
11711
  /**
11718
- * interval for which guest remains authorized using sponsor auth (in minutes), if not provided, uses expire`
11712
+ * Optional if `sponsorEnabled`==`true`. Interval for which guest remains authorized using sponsor auth (in minutes), if not provided, uses expire`
11719
11713
  */
11720
11714
  sponsorExpire?: pulumi.Input<number>;
11721
11715
  /**
11722
- * how long to remain valid sponsored guest request approve/deny link received in email, in minutes.
11716
+ * Optional if `sponsorEnabled`==`true`. How long to remain valid sponsored guest request approve/deny link received in email, in minutes.
11723
11717
  */
11724
11718
  sponsorLinkValidityDuration?: pulumi.Input<string>;
11725
11719
  /**
11726
- * whether to notify all sponsors that are mentioned in `sponsors` object. Both `sponsorNotifyAll` and `predefinedSponsorsEnabled` should be true in order to notify sponsors. If true, email sent to 10 sponsors in no particular order.
11720
+ * Optional if `sponsorEnabled`==`true`. whether to notify all sponsors that are mentioned in `sponsors` object. Both `sponsorNotifyAll` and `predefinedSponsorsEnabled` should be true in order to notify sponsors. If true, email sent to 10 sponsors in no particular order.
11727
11721
  */
11728
11722
  sponsorNotifyAll?: pulumi.Input<boolean>;
11729
11723
  /**
11730
- * if enabled, guest will get email about sponsor's action (approve/deny)
11724
+ * Optional if `sponsorEnabled`==`true`. If enabled, guest will get email about sponsor's action (approve/deny)
11731
11725
  */
11732
11726
  sponsorStatusNotify?: pulumi.Input<boolean>;
11733
11727
  /**
@@ -11740,51 +11734,51 @@ Please update your configurations.
11740
11734
  [key: string]: pulumi.Input<string>;
11741
11735
  }>;
11742
11736
  /**
11743
- * if `wlanPortalAuth`==`sso`, default role to assign if there’s no match. By default, an assertion is treated as invalid when there’s no role matched
11737
+ * Optionl if `wlanPortalAuth`==`sso`, default role to assign if there’s no match. By default, an assertion is treated as invalid when there’s no role matched
11744
11738
  */
11745
11739
  ssoDefaultRole?: pulumi.Input<string>;
11746
11740
  /**
11747
- * if `wlanPortalAuth`==`sso`
11741
+ * Optionl if `wlanPortalAuth`==`sso`
11748
11742
  */
11749
11743
  ssoForcedRole?: pulumi.Input<string>;
11750
11744
  /**
11751
- * if `wlanPortalAuth`==`sso`, IDP Cert (used to verify the signed response)
11745
+ * Required if `wlanPortalAuth`==`sso`. IDP Cert (used to verify the signed response)
11752
11746
  */
11753
11747
  ssoIdpCert?: pulumi.Input<string>;
11754
11748
  /**
11755
- * if `wlanPortalAuth`==`sso`, Signing algorithm for SAML Assertion. enum: `sha1`, `sha256`, `sha384`, `sha512`
11749
+ * Optioanl if `wlanPortalAuth`==`sso`, Signing algorithm for SAML Assertion. enum: `sha1`, `sha256`, `sha384`, `sha512`
11756
11750
  */
11757
11751
  ssoIdpSignAlgo?: pulumi.Input<string>;
11758
11752
  /**
11759
- * if `wlanPortalAuth`==`sso`, IDP Single-Sign-On URL
11753
+ * Required if `wlanPortalAuth`==`sso`, IDP Single-Sign-On URL
11760
11754
  */
11761
11755
  ssoIdpSsoUrl?: pulumi.Input<string>;
11762
11756
  /**
11763
- * if `wlanPortalAuth`==`sso`, IDP issuer URL
11757
+ * Required if `wlanPortalAuth`==`sso`, IDP issuer URL
11764
11758
  */
11765
11759
  ssoIssuer?: pulumi.Input<string>;
11766
11760
  /**
11767
- * if `wlanPortalAuth`==`sso`. enum: `email`, `unspecified`
11761
+ * Optional if `wlanPortalAuth`==`sso`. enum: `email`, `unspecified`
11768
11762
  */
11769
11763
  ssoNameidFormat?: pulumi.Input<string>;
11770
11764
  /**
11771
- * when `smsProvider`==`telstra`, Client ID provided by Telstra
11765
+ * Required if `smsProvider`==`telstra`, Client ID provided by Telstra
11772
11766
  */
11773
11767
  telstraClientId?: pulumi.Input<string>;
11774
11768
  /**
11775
- * when `smsProvider`==`telstra`, Client secret provided by Telstra
11769
+ * Required if `smsProvider`==`telstra`, Client secret provided by Telstra
11776
11770
  */
11777
11771
  telstraClientSecret?: pulumi.Input<string>;
11778
11772
  /**
11779
- * when `smsProvider`==`twilio`, Auth token account with twilio account
11773
+ * Required if `smsProvider`==`twilio`, Auth token account with twilio account
11780
11774
  */
11781
11775
  twilioAuthToken?: pulumi.Input<string>;
11782
11776
  /**
11783
- * when `smsProvider`==`twilio`, Twilio phone number associated with the account. See example for accepted format.
11777
+ * Required if `smsProvider`==`twilio`, Twilio phone number associated with the account. See example for accepted format.
11784
11778
  */
11785
11779
  twilioPhoneNumber?: pulumi.Input<string>;
11786
11780
  /**
11787
- * when `smsProvider`==`twilio`, Account SID provided by Twilio
11781
+ * Required if `smsProvider`==`twilio`, Account SID provided by Twilio
11788
11782
  */
11789
11783
  twilioSid?: pulumi.Input<string>;
11790
11784
  }