@pulumi/juniper-mist 0.2.2 → 0.2.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.
Files changed (54) hide show
  1. package/device/ap.d.ts +75 -54
  2. package/device/ap.js +2 -0
  3. package/device/ap.js.map +1 -1
  4. package/device/base.d.ts +1 -1
  5. package/device/base.js +1 -1
  6. package/device/gateway.d.ts +24 -24
  7. package/device/image.d.ts +1 -1
  8. package/device/image.js +1 -1
  9. package/device/switch.d.ts +39 -39
  10. package/org/avprofile.d.ts +128 -0
  11. package/org/avprofile.js +111 -0
  12. package/org/avprofile.js.map +1 -0
  13. package/org/deviceprofileAp.d.ts +36 -30
  14. package/org/deviceprofileAp.js.map +1 -1
  15. package/org/deviceprofileGateway.d.ts +9 -9
  16. package/org/gatewaytemplate.d.ts +9 -9
  17. package/org/getAvprofiles.d.ts +71 -0
  18. package/org/getAvprofiles.js +66 -0
  19. package/org/getAvprofiles.js.map +1 -0
  20. package/org/getSsoRoles.d.ts +2 -2
  21. package/org/getSsoRoles.js +2 -2
  22. package/org/index.d.ts +6 -0
  23. package/org/index.js +10 -2
  24. package/org/index.js.map +1 -1
  25. package/org/inventory.d.ts +4 -4
  26. package/org/inventory.js +1 -1
  27. package/org/nactag.d.ts +54 -39
  28. package/org/nactag.js +2 -0
  29. package/org/nactag.js.map +1 -1
  30. package/org/networktemplate.d.ts +12 -12
  31. package/org/rftemplate.d.ts +6 -6
  32. package/org/servicepolicy.d.ts +29 -8
  33. package/org/servicepolicy.js +5 -1
  34. package/org/servicepolicy.js.map +1 -1
  35. package/org/setting.d.ts +24 -24
  36. package/org/sso.d.ts +11 -11
  37. package/org/ssoRole.d.ts +1 -1
  38. package/org/ssoRole.js +1 -1
  39. package/org/webhook.d.ts +39 -42
  40. package/org/webhook.js.map +1 -1
  41. package/org/wlan.d.ts +233 -233
  42. package/org/wlanPortalTemplate.d.ts +3 -3
  43. package/package.json +2 -2
  44. package/site/base.d.ts +1 -1
  45. package/site/base.js +1 -1
  46. package/site/networktemplate.d.ts +15 -15
  47. package/site/setting.d.ts +49 -49
  48. package/site/setting.js +1 -1
  49. package/site/webhook.d.ts +39 -42
  50. package/site/webhook.js.map +1 -1
  51. package/site/wlan.d.ts +233 -233
  52. package/site/wlanPortalTemplate.d.ts +3 -3
  53. package/types/input.d.ts +1394 -1276
  54. package/types/output.d.ts +1732 -1575
@@ -30,7 +30,7 @@ export declare class WlanPortalTemplate extends pulumi.CustomResource {
30
30
  static isInstance(obj: any): obj is WlanPortalTemplate;
31
31
  readonly orgId: pulumi.Output<string>;
32
32
  /**
33
- * portal template wlan settings
33
+ * Portal template wlan settings
34
34
  */
35
35
  readonly portalTemplate: pulumi.Output<outputs.org.WlanPortalTemplatePortalTemplate>;
36
36
  /**
@@ -52,7 +52,7 @@ export declare class WlanPortalTemplate extends pulumi.CustomResource {
52
52
  export interface WlanPortalTemplateState {
53
53
  orgId?: pulumi.Input<string>;
54
54
  /**
55
- * portal template wlan settings
55
+ * Portal template wlan settings
56
56
  */
57
57
  portalTemplate?: pulumi.Input<inputs.org.WlanPortalTemplatePortalTemplate>;
58
58
  /**
@@ -66,7 +66,7 @@ export interface WlanPortalTemplateState {
66
66
  export interface WlanPortalTemplateArgs {
67
67
  orgId: pulumi.Input<string>;
68
68
  /**
69
- * portal template wlan settings
69
+ * Portal template wlan settings
70
70
  */
71
71
  portalTemplate: pulumi.Input<inputs.org.WlanPortalTemplatePortalTemplate>;
72
72
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/juniper-mist",
3
- "version": "0.2.2",
3
+ "version": "0.2.3",
4
4
  "description": "A Pulumi package for creating and managing Juniper Mist resources.",
5
5
  "keywords": [
6
6
  "pulumi",
@@ -25,7 +25,7 @@
25
25
  "pulumi": {
26
26
  "resource": true,
27
27
  "name": "junipermist",
28
- "version": "0.2.2",
28
+ "version": "0.2.3",
29
29
  "server": "github://api.github.com/pulumi/pulumi-junipermist"
30
30
  }
31
31
  }
package/site/base.d.ts CHANGED
@@ -2,7 +2,7 @@ import * as pulumi from "@pulumi/pulumi";
2
2
  import * as inputs from "../types/input";
3
3
  import * as outputs from "../types/output";
4
4
  /**
5
- * This resources manages the Site basic information.
5
+ * This resource manages the Site basic information.
6
6
  *
7
7
  * This resource can be used to assign templates to a site, or to change basic information (e.g. Site Address)
8
8
  *
package/site/base.js CHANGED
@@ -6,7 +6,7 @@ exports.Base = void 0;
6
6
  const pulumi = require("@pulumi/pulumi");
7
7
  const utilities = require("../utilities");
8
8
  /**
9
- * This resources manages the Site basic information.
9
+ * This resource manages the Site basic information.
10
10
  *
11
11
  * This resource can be used to assign templates to a site, or to change basic information (e.g. Site Address)
12
12
  *
@@ -49,7 +49,7 @@ export declare class Networktemplate extends pulumi.CustomResource {
49
49
  readonly additionalConfigCmds: pulumi.Output<string[] | undefined>;
50
50
  readonly dhcpSnooping: pulumi.Output<outputs.site.NetworktemplateDhcpSnooping | undefined>;
51
51
  /**
52
- * if some system-default port usages are not desired - namely, ap / iot / uplink
52
+ * If some system-default port usages are not desired - namely, ap / iot / uplink
53
53
  */
54
54
  readonly disabledSystemDefinedPortUsages: pulumi.Output<string[] | undefined>;
55
55
  /**
@@ -70,7 +70,7 @@ export declare class Networktemplate extends pulumi.CustomResource {
70
70
  [key: string]: outputs.site.NetworktemplateExtraRoutes6;
71
71
  } | undefined>;
72
72
  /**
73
- * enable mistNac to use radsec
73
+ * Enable mistNac to use RadSec
74
74
  */
75
75
  readonly mistNac: pulumi.Output<outputs.site.NetworktemplateMistNac | undefined>;
76
76
  /**
@@ -80,7 +80,7 @@ export declare class Networktemplate extends pulumi.CustomResource {
80
80
  [key: string]: outputs.site.NetworktemplateNetworks;
81
81
  } | undefined>;
82
82
  /**
83
- * list of NTP servers
83
+ * List of NTP servers
84
84
  */
85
85
  readonly ntpServers: pulumi.Output<string[] | undefined>;
86
86
  /**
@@ -109,7 +109,7 @@ export declare class Networktemplate extends pulumi.CustomResource {
109
109
  readonly radiusConfig: pulumi.Output<outputs.site.NetworktemplateRadiusConfig | undefined>;
110
110
  readonly remoteSyslog: pulumi.Output<outputs.site.NetworktemplateRemoteSyslog | undefined>;
111
111
  /**
112
- * by default, when we configure a device, we only clean up config we generates. Remove existing configs if enabled
112
+ * By default, when we configure a device, we only clean up config we generate. Remove existing configs if enabled
113
113
  */
114
114
  readonly removeExistingConfigs: pulumi.Output<boolean>;
115
115
  /**
@@ -118,7 +118,7 @@ export declare class Networktemplate extends pulumi.CustomResource {
118
118
  readonly siteId: pulumi.Output<string>;
119
119
  readonly snmpConfig: pulumi.Output<outputs.site.NetworktemplateSnmpConfig | undefined>;
120
120
  /**
121
- * defines custom switch configuration based on different criterias
121
+ * Defines custom switch configuration based on different criterias
122
122
  */
123
123
  readonly switchMatching: pulumi.Output<outputs.site.NetworktemplateSwitchMatching | undefined>;
124
124
  /**
@@ -158,7 +158,7 @@ export interface NetworktemplateState {
158
158
  additionalConfigCmds?: pulumi.Input<pulumi.Input<string>[]>;
159
159
  dhcpSnooping?: pulumi.Input<inputs.site.NetworktemplateDhcpSnooping>;
160
160
  /**
161
- * if some system-default port usages are not desired - namely, ap / iot / uplink
161
+ * If some system-default port usages are not desired - namely, ap / iot / uplink
162
162
  */
163
163
  disabledSystemDefinedPortUsages?: pulumi.Input<pulumi.Input<string>[]>;
164
164
  /**
@@ -179,7 +179,7 @@ export interface NetworktemplateState {
179
179
  [key: string]: pulumi.Input<inputs.site.NetworktemplateExtraRoutes6>;
180
180
  }>;
181
181
  /**
182
- * enable mistNac to use radsec
182
+ * Enable mistNac to use RadSec
183
183
  */
184
184
  mistNac?: pulumi.Input<inputs.site.NetworktemplateMistNac>;
185
185
  /**
@@ -189,7 +189,7 @@ export interface NetworktemplateState {
189
189
  [key: string]: pulumi.Input<inputs.site.NetworktemplateNetworks>;
190
190
  }>;
191
191
  /**
192
- * list of NTP servers
192
+ * List of NTP servers
193
193
  */
194
194
  ntpServers?: pulumi.Input<pulumi.Input<string>[]>;
195
195
  /**
@@ -218,7 +218,7 @@ export interface NetworktemplateState {
218
218
  radiusConfig?: pulumi.Input<inputs.site.NetworktemplateRadiusConfig>;
219
219
  remoteSyslog?: pulumi.Input<inputs.site.NetworktemplateRemoteSyslog>;
220
220
  /**
221
- * by default, when we configure a device, we only clean up config we generates. Remove existing configs if enabled
221
+ * By default, when we configure a device, we only clean up config we generate. Remove existing configs if enabled
222
222
  */
223
223
  removeExistingConfigs?: pulumi.Input<boolean>;
224
224
  /**
@@ -227,7 +227,7 @@ export interface NetworktemplateState {
227
227
  siteId?: pulumi.Input<string>;
228
228
  snmpConfig?: pulumi.Input<inputs.site.NetworktemplateSnmpConfig>;
229
229
  /**
230
- * defines custom switch configuration based on different criterias
230
+ * Defines custom switch configuration based on different criterias
231
231
  */
232
232
  switchMatching?: pulumi.Input<inputs.site.NetworktemplateSwitchMatching>;
233
233
  /**
@@ -259,7 +259,7 @@ export interface NetworktemplateArgs {
259
259
  additionalConfigCmds?: pulumi.Input<pulumi.Input<string>[]>;
260
260
  dhcpSnooping?: pulumi.Input<inputs.site.NetworktemplateDhcpSnooping>;
261
261
  /**
262
- * if some system-default port usages are not desired - namely, ap / iot / uplink
262
+ * If some system-default port usages are not desired - namely, ap / iot / uplink
263
263
  */
264
264
  disabledSystemDefinedPortUsages?: pulumi.Input<pulumi.Input<string>[]>;
265
265
  /**
@@ -280,7 +280,7 @@ export interface NetworktemplateArgs {
280
280
  [key: string]: pulumi.Input<inputs.site.NetworktemplateExtraRoutes6>;
281
281
  }>;
282
282
  /**
283
- * enable mistNac to use radsec
283
+ * Enable mistNac to use RadSec
284
284
  */
285
285
  mistNac?: pulumi.Input<inputs.site.NetworktemplateMistNac>;
286
286
  /**
@@ -290,7 +290,7 @@ export interface NetworktemplateArgs {
290
290
  [key: string]: pulumi.Input<inputs.site.NetworktemplateNetworks>;
291
291
  }>;
292
292
  /**
293
- * list of NTP servers
293
+ * List of NTP servers
294
294
  */
295
295
  ntpServers?: pulumi.Input<pulumi.Input<string>[]>;
296
296
  /**
@@ -319,7 +319,7 @@ export interface NetworktemplateArgs {
319
319
  radiusConfig?: pulumi.Input<inputs.site.NetworktemplateRadiusConfig>;
320
320
  remoteSyslog?: pulumi.Input<inputs.site.NetworktemplateRemoteSyslog>;
321
321
  /**
322
- * by default, when we configure a device, we only clean up config we generates. Remove existing configs if enabled
322
+ * By default, when we configure a device, we only clean up config we generate. Remove existing configs if enabled
323
323
  */
324
324
  removeExistingConfigs?: pulumi.Input<boolean>;
325
325
  /**
@@ -328,7 +328,7 @@ export interface NetworktemplateArgs {
328
328
  siteId: pulumi.Input<string>;
329
329
  snmpConfig?: pulumi.Input<inputs.site.NetworktemplateSnmpConfig>;
330
330
  /**
331
- * defines custom switch configuration based on different criterias
331
+ * Defines custom switch configuration based on different criterias
332
332
  */
333
333
  switchMatching?: pulumi.Input<inputs.site.NetworktemplateSwitchMatching>;
334
334
  /**
package/site/setting.d.ts CHANGED
@@ -4,7 +4,7 @@ import * as outputs from "../types/output";
4
4
  /**
5
5
  * This resource manages the Site Settings.
6
6
  *
7
- * The Site Settings can used to customize the Site configuration and assign Site Variables (Sites Variables can be reused in configuration templates)
7
+ * The Site Settings can be used to customize the Site configuration and assign Site Variables (Sites Variables can be reused in configuration templates)
8
8
  *
9
9
  * > When using the Mist APIs, all the switch settings defined at the site level are stored under the site settings with all the rest of the site configuration (`/api/v1/sites/{site_id}/setting` Mist API Endpoint). To simplify this resource, all the site level switches related settings are moved into the `junipermist.site.Networktemplate` resource
10
10
  *
@@ -38,7 +38,7 @@ export declare class Setting extends pulumi.CustomResource {
38
38
  static isInstance(obj: any): obj is Setting;
39
39
  readonly analytic: pulumi.Output<outputs.site.SettingAnalytic | undefined>;
40
40
  /**
41
- * enable threshold-based device down delivery for AP devices only. When configured it takes effect for AP devices and
41
+ * Enable threshold-based device down delivery for AP devices only. When configured it takes effect for AP devices and
42
42
  * `deviceUpdownThreshold` is ignored.
43
43
  */
44
44
  readonly apUpdownThreshold: pulumi.Output<number>;
@@ -52,24 +52,24 @@ export declare class Setting extends pulumi.CustomResource {
52
52
  */
53
53
  readonly bleConfig: pulumi.Output<outputs.site.SettingBleConfig | undefined>;
54
54
  /**
55
- * whether to enable ap auto config revert
55
+ * Whether to enable ap auto config revert
56
56
  */
57
57
  readonly configAutoRevert: pulumi.Output<boolean>;
58
58
  /**
59
- * mist also uses some heuristic rules to prevent destructive configs from being pushed
59
+ * Mist also uses some heuristic rules to prevent destructive configs from being pushed
60
60
  */
61
61
  readonly configPushPolicy: pulumi.Output<outputs.site.SettingConfigPushPolicy | undefined>;
62
62
  /**
63
- * you can define some URLs that's critical to site operaitons the latency will be captured and considered for site health
63
+ * You can define some URLs that's critical to site operations the latency will be captured and considered for site health
64
64
  */
65
65
  readonly criticalUrlMonitoring: pulumi.Output<outputs.site.SettingCriticalUrlMonitoring | undefined>;
66
66
  /**
67
- * by default, device_updown_thresold, if set, will apply to all devices types if different values for specific device type
67
+ * By default, device_updown_thresold, if set, will apply to all devices types if different values for specific device type
68
68
  * is desired, use the following
69
69
  */
70
70
  readonly deviceUpdownThreshold: pulumi.Output<number>;
71
71
  /**
72
- * **Note**: if hours does not exist, it's treated as everyday of the week, 00:00-23:59. Currently we don't allow multiple
72
+ * **Note**: if hours does not exist, it's treated as everyday of the week, 00:00-23:59. Currently, we don't allow multiple
73
73
  * ranges for the same day
74
74
  */
75
75
  readonly engagement: pulumi.Output<outputs.site.SettingEngagement | undefined>;
@@ -78,7 +78,7 @@ export declare class Setting extends pulumi.CustomResource {
78
78
  */
79
79
  readonly gatewayMgmt: pulumi.Output<outputs.site.SettingGatewayMgmt | undefined>;
80
80
  /**
81
- * enable threshold-based device down delivery for Gateway devices only. When configured it takes effect for GW devices and
81
+ * Enable threshold-based device down delivery for Gateway devices only. When configured it takes effect for GW devices and
82
82
  * `deviceUpdownThreshold` is ignored.
83
83
  */
84
84
  readonly gatewayUpdownThreshold: pulumi.Output<number>;
@@ -92,7 +92,7 @@ export declare class Setting extends pulumi.CustomResource {
92
92
  */
93
93
  readonly occupancy: pulumi.Output<outputs.site.SettingOccupancy | undefined>;
94
94
  /**
95
- * whether to store the config on AP
95
+ * Whether to store the config on AP
96
96
  */
97
97
  readonly persistConfigOnDevice: pulumi.Output<boolean>;
98
98
  /**
@@ -100,11 +100,11 @@ export declare class Setting extends pulumi.CustomResource {
100
100
  */
101
101
  readonly proxy: pulumi.Output<outputs.site.SettingProxy | undefined>;
102
102
  /**
103
- * by default, when we configure a device, we only clean up config we generates. Remove existing configs if enabled
103
+ * By default, when we configure a device, we only clean up config we generate. Remove existing configs if enabled
104
104
  */
105
105
  readonly removeExistingConfigs: pulumi.Output<boolean>;
106
106
  /**
107
- * whether AP should periodically connect to BLE devices and report GATT device info (device name, manufacturer name,
107
+ * Whether AP should periodically connect to BLE devices and report GATT device info (device name, manufacturer name,
108
108
  * serial number, battery %, temperature, humidity)
109
109
  */
110
110
  readonly reportGatt: pulumi.Output<boolean>;
@@ -113,7 +113,7 @@ export declare class Setting extends pulumi.CustomResource {
113
113
  */
114
114
  readonly rogue: pulumi.Output<outputs.site.SettingRogue | undefined>;
115
115
  /**
116
- * managed mobility
116
+ * Managed mobility
117
117
  */
118
118
  readonly rtsa: pulumi.Output<outputs.site.SettingRtsa | undefined>;
119
119
  /**
@@ -125,19 +125,19 @@ export declare class Setting extends pulumi.CustomResource {
125
125
  readonly skyatp: pulumi.Output<outputs.site.SettingSkyatp | undefined>;
126
126
  readonly srxApp: pulumi.Output<outputs.site.SettingSrxApp | undefined>;
127
127
  /**
128
- * when limitSshAccess = true in Org Setting, list of SSH public keys provided by Mist Support to install onto APs (see
128
+ * When limitSshAccess = true in Org Setting, list of SSH public keys provided by Mist Support to install onto APs (see
129
129
  * Org:Setting)
130
130
  */
131
131
  readonly sshKeys: pulumi.Output<string[]>;
132
132
  readonly ssr: pulumi.Output<outputs.site.SettingSsr | undefined>;
133
133
  /**
134
- * enable threshold-based device down delivery for Switch devices only. When configured it takes effect for SW devices and
134
+ * Enable threshold-based device down delivery for Switch devices only. When configured it takes effect for SW devices and
135
135
  * `deviceUpdownThreshold` is ignored.
136
136
  */
137
137
  readonly switchUpdownThreshold: pulumi.Output<number>;
138
138
  readonly syntheticTest: pulumi.Output<outputs.site.SettingSyntheticTest | undefined>;
139
139
  /**
140
- * whether to track anonymous BLE assets (requires ‘track_asset’ enabled)
140
+ * Whether to track anonymous BLE assets (requires ‘track_asset’ enabled)
141
141
  */
142
142
  readonly trackAnonymousDevices: pulumi.Output<boolean>;
143
143
  /**
@@ -145,14 +145,14 @@ export declare class Setting extends pulumi.CustomResource {
145
145
  */
146
146
  readonly uplinkPortConfig: pulumi.Output<outputs.site.SettingUplinkPortConfig | undefined>;
147
147
  /**
148
- * a dictionary of name->value, the vars can then be used in Wlans. This can overwrite those from Site Vars
148
+ * Dictionary of name->value, the vars can then be used in Wlans. This can overwrite those from Site Vars
149
149
  */
150
150
  readonly vars: pulumi.Output<{
151
151
  [key: string]: string;
152
152
  } | undefined>;
153
153
  readonly vna: pulumi.Output<outputs.site.SettingVna | undefined>;
154
154
  /**
155
- * optional, for EX9200 only to seggregate virtual-switches. Property key is the instance name
155
+ * Optional, for EX9200 only to seggregate virtual-switches. Property key is the instance name
156
156
  */
157
157
  readonly vsInstance: pulumi.Output<{
158
158
  [key: string]: outputs.site.SettingVsInstance;
@@ -188,7 +188,7 @@ export declare class Setting extends pulumi.CustomResource {
188
188
  export interface SettingState {
189
189
  analytic?: pulumi.Input<inputs.site.SettingAnalytic>;
190
190
  /**
191
- * enable threshold-based device down delivery for AP devices only. When configured it takes effect for AP devices and
191
+ * Enable threshold-based device down delivery for AP devices only. When configured it takes effect for AP devices and
192
192
  * `deviceUpdownThreshold` is ignored.
193
193
  */
194
194
  apUpdownThreshold?: pulumi.Input<number>;
@@ -202,24 +202,24 @@ export interface SettingState {
202
202
  */
203
203
  bleConfig?: pulumi.Input<inputs.site.SettingBleConfig>;
204
204
  /**
205
- * whether to enable ap auto config revert
205
+ * Whether to enable ap auto config revert
206
206
  */
207
207
  configAutoRevert?: pulumi.Input<boolean>;
208
208
  /**
209
- * mist also uses some heuristic rules to prevent destructive configs from being pushed
209
+ * Mist also uses some heuristic rules to prevent destructive configs from being pushed
210
210
  */
211
211
  configPushPolicy?: pulumi.Input<inputs.site.SettingConfigPushPolicy>;
212
212
  /**
213
- * you can define some URLs that's critical to site operaitons the latency will be captured and considered for site health
213
+ * You can define some URLs that's critical to site operations the latency will be captured and considered for site health
214
214
  */
215
215
  criticalUrlMonitoring?: pulumi.Input<inputs.site.SettingCriticalUrlMonitoring>;
216
216
  /**
217
- * by default, device_updown_thresold, if set, will apply to all devices types if different values for specific device type
217
+ * By default, device_updown_thresold, if set, will apply to all devices types if different values for specific device type
218
218
  * is desired, use the following
219
219
  */
220
220
  deviceUpdownThreshold?: pulumi.Input<number>;
221
221
  /**
222
- * **Note**: if hours does not exist, it's treated as everyday of the week, 00:00-23:59. Currently we don't allow multiple
222
+ * **Note**: if hours does not exist, it's treated as everyday of the week, 00:00-23:59. Currently, we don't allow multiple
223
223
  * ranges for the same day
224
224
  */
225
225
  engagement?: pulumi.Input<inputs.site.SettingEngagement>;
@@ -228,7 +228,7 @@ export interface SettingState {
228
228
  */
229
229
  gatewayMgmt?: pulumi.Input<inputs.site.SettingGatewayMgmt>;
230
230
  /**
231
- * enable threshold-based device down delivery for Gateway devices only. When configured it takes effect for GW devices and
231
+ * Enable threshold-based device down delivery for Gateway devices only. When configured it takes effect for GW devices and
232
232
  * `deviceUpdownThreshold` is ignored.
233
233
  */
234
234
  gatewayUpdownThreshold?: pulumi.Input<number>;
@@ -242,7 +242,7 @@ export interface SettingState {
242
242
  */
243
243
  occupancy?: pulumi.Input<inputs.site.SettingOccupancy>;
244
244
  /**
245
- * whether to store the config on AP
245
+ * Whether to store the config on AP
246
246
  */
247
247
  persistConfigOnDevice?: pulumi.Input<boolean>;
248
248
  /**
@@ -250,11 +250,11 @@ export interface SettingState {
250
250
  */
251
251
  proxy?: pulumi.Input<inputs.site.SettingProxy>;
252
252
  /**
253
- * by default, when we configure a device, we only clean up config we generates. Remove existing configs if enabled
253
+ * By default, when we configure a device, we only clean up config we generate. Remove existing configs if enabled
254
254
  */
255
255
  removeExistingConfigs?: pulumi.Input<boolean>;
256
256
  /**
257
- * whether AP should periodically connect to BLE devices and report GATT device info (device name, manufacturer name,
257
+ * Whether AP should periodically connect to BLE devices and report GATT device info (device name, manufacturer name,
258
258
  * serial number, battery %, temperature, humidity)
259
259
  */
260
260
  reportGatt?: pulumi.Input<boolean>;
@@ -263,7 +263,7 @@ export interface SettingState {
263
263
  */
264
264
  rogue?: pulumi.Input<inputs.site.SettingRogue>;
265
265
  /**
266
- * managed mobility
266
+ * Managed mobility
267
267
  */
268
268
  rtsa?: pulumi.Input<inputs.site.SettingRtsa>;
269
269
  /**
@@ -275,19 +275,19 @@ export interface SettingState {
275
275
  skyatp?: pulumi.Input<inputs.site.SettingSkyatp>;
276
276
  srxApp?: pulumi.Input<inputs.site.SettingSrxApp>;
277
277
  /**
278
- * when limitSshAccess = true in Org Setting, list of SSH public keys provided by Mist Support to install onto APs (see
278
+ * When limitSshAccess = true in Org Setting, list of SSH public keys provided by Mist Support to install onto APs (see
279
279
  * Org:Setting)
280
280
  */
281
281
  sshKeys?: pulumi.Input<pulumi.Input<string>[]>;
282
282
  ssr?: pulumi.Input<inputs.site.SettingSsr>;
283
283
  /**
284
- * enable threshold-based device down delivery for Switch devices only. When configured it takes effect for SW devices and
284
+ * Enable threshold-based device down delivery for Switch devices only. When configured it takes effect for SW devices and
285
285
  * `deviceUpdownThreshold` is ignored.
286
286
  */
287
287
  switchUpdownThreshold?: pulumi.Input<number>;
288
288
  syntheticTest?: pulumi.Input<inputs.site.SettingSyntheticTest>;
289
289
  /**
290
- * whether to track anonymous BLE assets (requires ‘track_asset’ enabled)
290
+ * Whether to track anonymous BLE assets (requires ‘track_asset’ enabled)
291
291
  */
292
292
  trackAnonymousDevices?: pulumi.Input<boolean>;
293
293
  /**
@@ -295,14 +295,14 @@ export interface SettingState {
295
295
  */
296
296
  uplinkPortConfig?: pulumi.Input<inputs.site.SettingUplinkPortConfig>;
297
297
  /**
298
- * a dictionary of name->value, the vars can then be used in Wlans. This can overwrite those from Site Vars
298
+ * Dictionary of name->value, the vars can then be used in Wlans. This can overwrite those from Site Vars
299
299
  */
300
300
  vars?: pulumi.Input<{
301
301
  [key: string]: pulumi.Input<string>;
302
302
  }>;
303
303
  vna?: pulumi.Input<inputs.site.SettingVna>;
304
304
  /**
305
- * optional, for EX9200 only to seggregate virtual-switches. Property key is the instance name
305
+ * Optional, for EX9200 only to seggregate virtual-switches. Property key is the instance name
306
306
  */
307
307
  vsInstance?: pulumi.Input<{
308
308
  [key: string]: pulumi.Input<inputs.site.SettingVsInstance>;
@@ -330,7 +330,7 @@ export interface SettingState {
330
330
  export interface SettingArgs {
331
331
  analytic?: pulumi.Input<inputs.site.SettingAnalytic>;
332
332
  /**
333
- * enable threshold-based device down delivery for AP devices only. When configured it takes effect for AP devices and
333
+ * Enable threshold-based device down delivery for AP devices only. When configured it takes effect for AP devices and
334
334
  * `deviceUpdownThreshold` is ignored.
335
335
  */
336
336
  apUpdownThreshold?: pulumi.Input<number>;
@@ -343,24 +343,24 @@ export interface SettingArgs {
343
343
  */
344
344
  bleConfig?: pulumi.Input<inputs.site.SettingBleConfig>;
345
345
  /**
346
- * whether to enable ap auto config revert
346
+ * Whether to enable ap auto config revert
347
347
  */
348
348
  configAutoRevert?: pulumi.Input<boolean>;
349
349
  /**
350
- * mist also uses some heuristic rules to prevent destructive configs from being pushed
350
+ * Mist also uses some heuristic rules to prevent destructive configs from being pushed
351
351
  */
352
352
  configPushPolicy?: pulumi.Input<inputs.site.SettingConfigPushPolicy>;
353
353
  /**
354
- * you can define some URLs that's critical to site operaitons the latency will be captured and considered for site health
354
+ * You can define some URLs that's critical to site operations the latency will be captured and considered for site health
355
355
  */
356
356
  criticalUrlMonitoring?: pulumi.Input<inputs.site.SettingCriticalUrlMonitoring>;
357
357
  /**
358
- * by default, device_updown_thresold, if set, will apply to all devices types if different values for specific device type
358
+ * By default, device_updown_thresold, if set, will apply to all devices types if different values for specific device type
359
359
  * is desired, use the following
360
360
  */
361
361
  deviceUpdownThreshold?: pulumi.Input<number>;
362
362
  /**
363
- * **Note**: if hours does not exist, it's treated as everyday of the week, 00:00-23:59. Currently we don't allow multiple
363
+ * **Note**: if hours does not exist, it's treated as everyday of the week, 00:00-23:59. Currently, we don't allow multiple
364
364
  * ranges for the same day
365
365
  */
366
366
  engagement?: pulumi.Input<inputs.site.SettingEngagement>;
@@ -369,7 +369,7 @@ export interface SettingArgs {
369
369
  */
370
370
  gatewayMgmt?: pulumi.Input<inputs.site.SettingGatewayMgmt>;
371
371
  /**
372
- * enable threshold-based device down delivery for Gateway devices only. When configured it takes effect for GW devices and
372
+ * Enable threshold-based device down delivery for Gateway devices only. When configured it takes effect for GW devices and
373
373
  * `deviceUpdownThreshold` is ignored.
374
374
  */
375
375
  gatewayUpdownThreshold?: pulumi.Input<number>;
@@ -383,7 +383,7 @@ export interface SettingArgs {
383
383
  */
384
384
  occupancy?: pulumi.Input<inputs.site.SettingOccupancy>;
385
385
  /**
386
- * whether to store the config on AP
386
+ * Whether to store the config on AP
387
387
  */
388
388
  persistConfigOnDevice?: pulumi.Input<boolean>;
389
389
  /**
@@ -391,11 +391,11 @@ export interface SettingArgs {
391
391
  */
392
392
  proxy?: pulumi.Input<inputs.site.SettingProxy>;
393
393
  /**
394
- * by default, when we configure a device, we only clean up config we generates. Remove existing configs if enabled
394
+ * By default, when we configure a device, we only clean up config we generate. Remove existing configs if enabled
395
395
  */
396
396
  removeExistingConfigs?: pulumi.Input<boolean>;
397
397
  /**
398
- * whether AP should periodically connect to BLE devices and report GATT device info (device name, manufacturer name,
398
+ * Whether AP should periodically connect to BLE devices and report GATT device info (device name, manufacturer name,
399
399
  * serial number, battery %, temperature, humidity)
400
400
  */
401
401
  reportGatt?: pulumi.Input<boolean>;
@@ -404,7 +404,7 @@ export interface SettingArgs {
404
404
  */
405
405
  rogue?: pulumi.Input<inputs.site.SettingRogue>;
406
406
  /**
407
- * managed mobility
407
+ * Managed mobility
408
408
  */
409
409
  rtsa?: pulumi.Input<inputs.site.SettingRtsa>;
410
410
  /**
@@ -416,19 +416,19 @@ export interface SettingArgs {
416
416
  skyatp?: pulumi.Input<inputs.site.SettingSkyatp>;
417
417
  srxApp?: pulumi.Input<inputs.site.SettingSrxApp>;
418
418
  /**
419
- * when limitSshAccess = true in Org Setting, list of SSH public keys provided by Mist Support to install onto APs (see
419
+ * When limitSshAccess = true in Org Setting, list of SSH public keys provided by Mist Support to install onto APs (see
420
420
  * Org:Setting)
421
421
  */
422
422
  sshKeys?: pulumi.Input<pulumi.Input<string>[]>;
423
423
  ssr?: pulumi.Input<inputs.site.SettingSsr>;
424
424
  /**
425
- * enable threshold-based device down delivery for Switch devices only. When configured it takes effect for SW devices and
425
+ * Enable threshold-based device down delivery for Switch devices only. When configured it takes effect for SW devices and
426
426
  * `deviceUpdownThreshold` is ignored.
427
427
  */
428
428
  switchUpdownThreshold?: pulumi.Input<number>;
429
429
  syntheticTest?: pulumi.Input<inputs.site.SettingSyntheticTest>;
430
430
  /**
431
- * whether to track anonymous BLE assets (requires ‘track_asset’ enabled)
431
+ * Whether to track anonymous BLE assets (requires ‘track_asset’ enabled)
432
432
  */
433
433
  trackAnonymousDevices?: pulumi.Input<boolean>;
434
434
  /**
@@ -436,14 +436,14 @@ export interface SettingArgs {
436
436
  */
437
437
  uplinkPortConfig?: pulumi.Input<inputs.site.SettingUplinkPortConfig>;
438
438
  /**
439
- * a dictionary of name->value, the vars can then be used in Wlans. This can overwrite those from Site Vars
439
+ * Dictionary of name->value, the vars can then be used in Wlans. This can overwrite those from Site Vars
440
440
  */
441
441
  vars?: pulumi.Input<{
442
442
  [key: string]: pulumi.Input<string>;
443
443
  }>;
444
444
  vna?: pulumi.Input<inputs.site.SettingVna>;
445
445
  /**
446
- * optional, for EX9200 only to seggregate virtual-switches. Property key is the instance name
446
+ * Optional, for EX9200 only to seggregate virtual-switches. Property key is the instance name
447
447
  */
448
448
  vsInstance?: pulumi.Input<{
449
449
  [key: string]: pulumi.Input<inputs.site.SettingVsInstance>;
package/site/setting.js CHANGED
@@ -8,7 +8,7 @@ const utilities = require("../utilities");
8
8
  /**
9
9
  * This resource manages the Site Settings.
10
10
  *
11
- * The Site Settings can used to customize the Site configuration and assign Site Variables (Sites Variables can be reused in configuration templates)
11
+ * The Site Settings can be used to customize the Site configuration and assign Site Variables (Sites Variables can be reused in configuration templates)
12
12
  *
13
13
  * > When using the Mist APIs, all the switch settings defined at the site level are stored under the site settings with all the rest of the site configuration (`/api/v1/sites/{site_id}/setting` Mist API Endpoint). To simplify this resource, all the site level switches related settings are moved into the `junipermist.site.Networktemplate` resource
14
14
  *