@pulumi/juniper-mist 0.2.1 → 0.2.3-alpha.1740713631

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 (66) 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/getVersions.d.ts +83 -0
  8. package/device/getVersions.js +58 -0
  9. package/device/getVersions.js.map +1 -0
  10. package/device/image.d.ts +1 -1
  11. package/device/image.js +1 -1
  12. package/device/index.d.ts +3 -0
  13. package/device/index.js +4 -1
  14. package/device/index.js.map +1 -1
  15. package/device/switch.d.ts +39 -39
  16. package/index.d.ts +3 -0
  17. package/index.js +15 -1
  18. package/index.js.map +1 -1
  19. package/org/avprofile.d.ts +128 -0
  20. package/org/avprofile.js +111 -0
  21. package/org/avprofile.js.map +1 -0
  22. package/org/deviceprofileAp.d.ts +36 -30
  23. package/org/deviceprofileAp.js.map +1 -1
  24. package/org/deviceprofileGateway.d.ts +9 -9
  25. package/org/gatewaytemplate.d.ts +9 -9
  26. package/org/getAvprofiles.d.ts +71 -0
  27. package/org/getAvprofiles.js +66 -0
  28. package/org/getAvprofiles.js.map +1 -0
  29. package/org/getSsoRoles.d.ts +2 -2
  30. package/org/getSsoRoles.js +2 -2
  31. package/org/index.d.ts +6 -0
  32. package/org/index.js +10 -2
  33. package/org/index.js.map +1 -1
  34. package/org/inventory.d.ts +4 -4
  35. package/org/inventory.js +1 -1
  36. package/org/nactag.d.ts +54 -39
  37. package/org/nactag.js +2 -0
  38. package/org/nactag.js.map +1 -1
  39. package/org/networktemplate.d.ts +12 -12
  40. package/org/rftemplate.d.ts +6 -6
  41. package/org/servicepolicy.d.ts +29 -8
  42. package/org/servicepolicy.js +5 -1
  43. package/org/servicepolicy.js.map +1 -1
  44. package/org/setting.d.ts +24 -24
  45. package/org/sso.d.ts +11 -11
  46. package/org/ssoRole.d.ts +1 -1
  47. package/org/ssoRole.js +1 -1
  48. package/org/webhook.d.ts +39 -42
  49. package/org/webhook.js.map +1 -1
  50. package/org/wlan.d.ts +233 -233
  51. package/org/wlanPortalTemplate.d.ts +3 -3
  52. package/package.json +2 -2
  53. package/site/base.d.ts +1 -1
  54. package/site/base.js +1 -1
  55. package/site/networktemplate.d.ts +15 -15
  56. package/site/setting.d.ts +49 -49
  57. package/site/setting.js +1 -1
  58. package/site/webhook.d.ts +39 -42
  59. package/site/webhook.js.map +1 -1
  60. package/site/wlan.d.ts +233 -233
  61. package/site/wlanPortalTemplate.d.ts +3 -3
  62. package/types/input.d.ts +1405 -1277
  63. package/types/output.d.ts +1788 -1608
  64. package/upgradeDevice.d.ts +208 -0
  65. package/upgradeDevice.js +116 -0
  66. package/upgradeDevice.js.map +1 -0
@@ -63,7 +63,7 @@ export declare class Networktemplate extends pulumi.CustomResource {
63
63
  [key: string]: outputs.org.NetworktemplateExtraRoutes6;
64
64
  } | undefined>;
65
65
  /**
66
- * enable mistNac to use radsec
66
+ * Enable mistNac to use RadSec
67
67
  */
68
68
  readonly mistNac: pulumi.Output<outputs.org.NetworktemplateMistNac | undefined>;
69
69
  readonly name: pulumi.Output<string>;
@@ -74,7 +74,7 @@ export declare class Networktemplate extends pulumi.CustomResource {
74
74
  [key: string]: outputs.org.NetworktemplateNetworks;
75
75
  } | undefined>;
76
76
  /**
77
- * list of NTP servers specific to this device. By default, those in Site Settings will be used
77
+ * List of NTP servers specific to this device. By default, those in Site Settings will be used
78
78
  */
79
79
  readonly ntpServers: pulumi.Output<string[] | undefined>;
80
80
  readonly orgId: pulumi.Output<string>;
@@ -104,12 +104,12 @@ export declare class Networktemplate extends pulumi.CustomResource {
104
104
  readonly radiusConfig: pulumi.Output<outputs.org.NetworktemplateRadiusConfig | undefined>;
105
105
  readonly remoteSyslog: pulumi.Output<outputs.org.NetworktemplateRemoteSyslog | undefined>;
106
106
  /**
107
- * by default, when we configure a device, we only clean up config we generates. Remove existing configs if enabled
107
+ * By default, when we configure a device, we only clean up config we generate. Remove existing configs if enabled
108
108
  */
109
109
  readonly removeExistingConfigs: pulumi.Output<boolean>;
110
110
  readonly snmpConfig: pulumi.Output<outputs.org.NetworktemplateSnmpConfig | undefined>;
111
111
  /**
112
- * defines custom switch configuration based on different criterias
112
+ * Defines custom switch configuration based on different criterias
113
113
  */
114
114
  readonly switchMatching: pulumi.Output<outputs.org.NetworktemplateSwitchMatching | undefined>;
115
115
  /**
@@ -166,7 +166,7 @@ export interface NetworktemplateState {
166
166
  [key: string]: pulumi.Input<inputs.org.NetworktemplateExtraRoutes6>;
167
167
  }>;
168
168
  /**
169
- * enable mistNac to use radsec
169
+ * Enable mistNac to use RadSec
170
170
  */
171
171
  mistNac?: pulumi.Input<inputs.org.NetworktemplateMistNac>;
172
172
  name?: pulumi.Input<string>;
@@ -177,7 +177,7 @@ export interface NetworktemplateState {
177
177
  [key: string]: pulumi.Input<inputs.org.NetworktemplateNetworks>;
178
178
  }>;
179
179
  /**
180
- * list of NTP servers specific to this device. By default, those in Site Settings will be used
180
+ * List of NTP servers specific to this device. By default, those in Site Settings will be used
181
181
  */
182
182
  ntpServers?: pulumi.Input<pulumi.Input<string>[]>;
183
183
  orgId?: pulumi.Input<string>;
@@ -207,12 +207,12 @@ export interface NetworktemplateState {
207
207
  radiusConfig?: pulumi.Input<inputs.org.NetworktemplateRadiusConfig>;
208
208
  remoteSyslog?: pulumi.Input<inputs.org.NetworktemplateRemoteSyslog>;
209
209
  /**
210
- * by default, when we configure a device, we only clean up config we generates. Remove existing configs if enabled
210
+ * By default, when we configure a device, we only clean up config we generate. Remove existing configs if enabled
211
211
  */
212
212
  removeExistingConfigs?: pulumi.Input<boolean>;
213
213
  snmpConfig?: pulumi.Input<inputs.org.NetworktemplateSnmpConfig>;
214
214
  /**
215
- * defines custom switch configuration based on different criterias
215
+ * Defines custom switch configuration based on different criterias
216
216
  */
217
217
  switchMatching?: pulumi.Input<inputs.org.NetworktemplateSwitchMatching>;
218
218
  /**
@@ -261,7 +261,7 @@ export interface NetworktemplateArgs {
261
261
  [key: string]: pulumi.Input<inputs.org.NetworktemplateExtraRoutes6>;
262
262
  }>;
263
263
  /**
264
- * enable mistNac to use radsec
264
+ * Enable mistNac to use RadSec
265
265
  */
266
266
  mistNac?: pulumi.Input<inputs.org.NetworktemplateMistNac>;
267
267
  name?: pulumi.Input<string>;
@@ -272,7 +272,7 @@ export interface NetworktemplateArgs {
272
272
  [key: string]: pulumi.Input<inputs.org.NetworktemplateNetworks>;
273
273
  }>;
274
274
  /**
275
- * list of NTP servers specific to this device. By default, those in Site Settings will be used
275
+ * List of NTP servers specific to this device. By default, those in Site Settings will be used
276
276
  */
277
277
  ntpServers?: pulumi.Input<pulumi.Input<string>[]>;
278
278
  orgId: pulumi.Input<string>;
@@ -302,12 +302,12 @@ export interface NetworktemplateArgs {
302
302
  radiusConfig?: pulumi.Input<inputs.org.NetworktemplateRadiusConfig>;
303
303
  remoteSyslog?: pulumi.Input<inputs.org.NetworktemplateRemoteSyslog>;
304
304
  /**
305
- * by default, when we configure a device, we only clean up config we generates. Remove existing configs if enabled
305
+ * By default, when we configure a device, we only clean up config we generate. Remove existing configs if enabled
306
306
  */
307
307
  removeExistingConfigs?: pulumi.Input<boolean>;
308
308
  snmpConfig?: pulumi.Input<inputs.org.NetworktemplateSnmpConfig>;
309
309
  /**
310
- * defines custom switch configuration based on different criterias
310
+ * Defines custom switch configuration based on different criterias
311
311
  */
312
312
  switchMatching?: pulumi.Input<inputs.org.NetworktemplateSwitchMatching>;
313
313
  /**
@@ -56,7 +56,7 @@ export declare class Rftemplate extends pulumi.CustomResource {
56
56
  */
57
57
  readonly band6: pulumi.Output<outputs.org.RftemplateBand6 | undefined>;
58
58
  /**
59
- * optional, country code to use. If specified, this gets applied to all sites using the RF Template
59
+ * Optional, country code to use. If specified, this gets applied to all sites using the RF Template
60
60
  */
61
61
  readonly countryCode: pulumi.Output<string | undefined>;
62
62
  /**
@@ -71,7 +71,7 @@ export declare class Rftemplate extends pulumi.CustomResource {
71
71
  readonly name: pulumi.Output<string>;
72
72
  readonly orgId: pulumi.Output<string>;
73
73
  /**
74
- * whether scanning radio is enabled
74
+ * Whether scanning radio is enabled
75
75
  */
76
76
  readonly scanningEnabled: pulumi.Output<boolean | undefined>;
77
77
  /**
@@ -111,7 +111,7 @@ export interface RftemplateState {
111
111
  */
112
112
  band6?: pulumi.Input<inputs.org.RftemplateBand6>;
113
113
  /**
114
- * optional, country code to use. If specified, this gets applied to all sites using the RF Template
114
+ * Optional, country code to use. If specified, this gets applied to all sites using the RF Template
115
115
  */
116
116
  countryCode?: pulumi.Input<string>;
117
117
  /**
@@ -126,7 +126,7 @@ export interface RftemplateState {
126
126
  name?: pulumi.Input<string>;
127
127
  orgId?: pulumi.Input<string>;
128
128
  /**
129
- * whether scanning radio is enabled
129
+ * Whether scanning radio is enabled
130
130
  */
131
131
  scanningEnabled?: pulumi.Input<boolean>;
132
132
  }
@@ -158,7 +158,7 @@ export interface RftemplateArgs {
158
158
  */
159
159
  band6?: pulumi.Input<inputs.org.RftemplateBand6>;
160
160
  /**
161
- * optional, country code to use. If specified, this gets applied to all sites using the RF Template
161
+ * Optional, country code to use. If specified, this gets applied to all sites using the RF Template
162
162
  */
163
163
  countryCode?: pulumi.Input<string>;
164
164
  /**
@@ -173,7 +173,7 @@ export interface RftemplateArgs {
173
173
  name?: pulumi.Input<string>;
174
174
  orgId: pulumi.Input<string>;
175
175
  /**
176
- * whether scanning radio is enabled
176
+ * Whether scanning radio is enabled
177
177
  */
178
178
  scanningEnabled?: pulumi.Input<boolean>;
179
179
  }
@@ -8,7 +8,7 @@ import * as outputs from "../types/output";
8
8
  * * the Gateway configuration (`mist_device_gateway.service_policies`)
9
9
  * * the Gateway Templates (`mist_org_gatewaytemplate.service_policies`)
10
10
  * * the HUB Profiles (`mist_org_deviceprofile_gateway.service_policies`)
11
- * They can be used to manage common policies betweeen multiples configurations
11
+ * They can be used to manage common policies between multiples configurations
12
12
  *
13
13
  * ## Import
14
14
  *
@@ -40,6 +40,10 @@ export declare class Servicepolicy extends pulumi.CustomResource {
40
40
  * enum: `allow`, `deny`
41
41
  */
42
42
  readonly action: pulumi.Output<string>;
43
+ /**
44
+ * For SRX-only
45
+ */
46
+ readonly antivirus: pulumi.Output<outputs.org.ServicepolicyAntivirus | undefined>;
43
47
  /**
44
48
  * For SRX Only
45
49
  */
@@ -49,15 +53,18 @@ export declare class Servicepolicy extends pulumi.CustomResource {
49
53
  /**
50
54
  * access within the same VRF
51
55
  */
52
- readonly localRouting: pulumi.Output<boolean>;
56
+ readonly localRouting: pulumi.Output<boolean | undefined>;
53
57
  readonly name: pulumi.Output<string>;
54
58
  readonly orgId: pulumi.Output<string>;
55
59
  /**
56
- * by default, we derive all paths available and use them
57
- * optionally, you can customize by using `pathPreference`
60
+ * By default, we derive all paths available and use them, optionally, you can customize by using `pathPreference`
58
61
  */
59
62
  readonly pathPreference: pulumi.Output<string | undefined>;
60
63
  readonly services: pulumi.Output<string[] | undefined>;
64
+ /**
65
+ * For SRX-only
66
+ */
67
+ readonly sslProxy: pulumi.Output<outputs.org.ServicepolicySslProxy | undefined>;
61
68
  readonly tenants: pulumi.Output<string[] | undefined>;
62
69
  /**
63
70
  * Create a Servicepolicy resource with the given unique name, arguments, and options.
@@ -76,6 +83,10 @@ export interface ServicepolicyState {
76
83
  * enum: `allow`, `deny`
77
84
  */
78
85
  action?: pulumi.Input<string>;
86
+ /**
87
+ * For SRX-only
88
+ */
89
+ antivirus?: pulumi.Input<inputs.org.ServicepolicyAntivirus>;
79
90
  /**
80
91
  * For SRX Only
81
92
  */
@@ -89,11 +100,14 @@ export interface ServicepolicyState {
89
100
  name?: pulumi.Input<string>;
90
101
  orgId?: pulumi.Input<string>;
91
102
  /**
92
- * by default, we derive all paths available and use them
93
- * optionally, you can customize by using `pathPreference`
103
+ * By default, we derive all paths available and use them, optionally, you can customize by using `pathPreference`
94
104
  */
95
105
  pathPreference?: pulumi.Input<string>;
96
106
  services?: pulumi.Input<pulumi.Input<string>[]>;
107
+ /**
108
+ * For SRX-only
109
+ */
110
+ sslProxy?: pulumi.Input<inputs.org.ServicepolicySslProxy>;
97
111
  tenants?: pulumi.Input<pulumi.Input<string>[]>;
98
112
  }
99
113
  /**
@@ -104,6 +118,10 @@ export interface ServicepolicyArgs {
104
118
  * enum: `allow`, `deny`
105
119
  */
106
120
  action?: pulumi.Input<string>;
121
+ /**
122
+ * For SRX-only
123
+ */
124
+ antivirus?: pulumi.Input<inputs.org.ServicepolicyAntivirus>;
107
125
  /**
108
126
  * For SRX Only
109
127
  */
@@ -117,10 +135,13 @@ export interface ServicepolicyArgs {
117
135
  name?: pulumi.Input<string>;
118
136
  orgId: pulumi.Input<string>;
119
137
  /**
120
- * by default, we derive all paths available and use them
121
- * optionally, you can customize by using `pathPreference`
138
+ * By default, we derive all paths available and use them, optionally, you can customize by using `pathPreference`
122
139
  */
123
140
  pathPreference?: pulumi.Input<string>;
124
141
  services?: pulumi.Input<pulumi.Input<string>[]>;
142
+ /**
143
+ * For SRX-only
144
+ */
145
+ sslProxy?: pulumi.Input<inputs.org.ServicepolicySslProxy>;
125
146
  tenants?: pulumi.Input<pulumi.Input<string>[]>;
126
147
  }
@@ -12,7 +12,7 @@ const utilities = require("../utilities");
12
12
  * * the Gateway configuration (`mist_device_gateway.service_policies`)
13
13
  * * the Gateway Templates (`mist_org_gatewaytemplate.service_policies`)
14
14
  * * the HUB Profiles (`mist_org_deviceprofile_gateway.service_policies`)
15
- * They can be used to manage common policies betweeen multiples configurations
15
+ * They can be used to manage common policies between multiples configurations
16
16
  *
17
17
  * ## Import
18
18
  *
@@ -53,6 +53,7 @@ class Servicepolicy extends pulumi.CustomResource {
53
53
  if (opts.id) {
54
54
  const state = argsOrState;
55
55
  resourceInputs["action"] = state ? state.action : undefined;
56
+ resourceInputs["antivirus"] = state ? state.antivirus : undefined;
56
57
  resourceInputs["appqoe"] = state ? state.appqoe : undefined;
57
58
  resourceInputs["ewfs"] = state ? state.ewfs : undefined;
58
59
  resourceInputs["idp"] = state ? state.idp : undefined;
@@ -61,6 +62,7 @@ class Servicepolicy extends pulumi.CustomResource {
61
62
  resourceInputs["orgId"] = state ? state.orgId : undefined;
62
63
  resourceInputs["pathPreference"] = state ? state.pathPreference : undefined;
63
64
  resourceInputs["services"] = state ? state.services : undefined;
65
+ resourceInputs["sslProxy"] = state ? state.sslProxy : undefined;
64
66
  resourceInputs["tenants"] = state ? state.tenants : undefined;
65
67
  }
66
68
  else {
@@ -69,6 +71,7 @@ class Servicepolicy extends pulumi.CustomResource {
69
71
  throw new Error("Missing required property 'orgId'");
70
72
  }
71
73
  resourceInputs["action"] = args ? args.action : undefined;
74
+ resourceInputs["antivirus"] = args ? args.antivirus : undefined;
72
75
  resourceInputs["appqoe"] = args ? args.appqoe : undefined;
73
76
  resourceInputs["ewfs"] = args ? args.ewfs : undefined;
74
77
  resourceInputs["idp"] = args ? args.idp : undefined;
@@ -77,6 +80,7 @@ class Servicepolicy extends pulumi.CustomResource {
77
80
  resourceInputs["orgId"] = args ? args.orgId : undefined;
78
81
  resourceInputs["pathPreference"] = args ? args.pathPreference : undefined;
79
82
  resourceInputs["services"] = args ? args.services : undefined;
83
+ resourceInputs["sslProxy"] = args ? args.sslProxy : undefined;
80
84
  resourceInputs["tenants"] = args ? args.tenants : undefined;
81
85
  }
82
86
  opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
@@ -1 +1 @@
1
- {"version":3,"file":"servicepolicy.js","sourceRoot":"","sources":["../../org/servicepolicy.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"servicepolicy.js","sourceRoot":"","sources":["../../org/servicepolicy.ts"],"names":[],"mappings":"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"}
package/org/setting.d.ts CHANGED
@@ -33,13 +33,13 @@ export declare class Setting extends pulumi.CustomResource {
33
33
  */
34
34
  static isInstance(obj: any): obj is Setting;
35
35
  /**
36
- * enable threshold-based device down delivery for AP devices only. When configured it takes effect for AP devices and
36
+ * Enable threshold-based device down delivery for AP devices only. When configured it takes effect for AP devices and
37
37
  * `deviceUpdownThreshold` is ignored.
38
38
  */
39
39
  readonly apUpdownThreshold: pulumi.Output<number>;
40
40
  readonly apiPolicy: pulumi.Output<outputs.org.SettingApiPolicy | undefined>;
41
41
  /**
42
- * list of PEM-encoded ca certs
42
+ * List of PEM-encoded ca certs
43
43
  */
44
44
  readonly cacerts: pulumi.Output<string[]>;
45
45
  readonly celona: pulumi.Output<outputs.org.SettingCelona | undefined>;
@@ -50,21 +50,21 @@ export declare class Setting extends pulumi.CustomResource {
50
50
  */
51
51
  readonly deviceCert: pulumi.Output<outputs.org.SettingDeviceCert | undefined>;
52
52
  /**
53
- * enable threshold-based device down delivery via * device-updowns webhooks topic, * Mist Alert Framework; e.g. send
53
+ * Enable threshold-based device down delivery via * device-updowns webhooks topic, * Mist Alert Framework; e.g. send
54
54
  * AP/SW/GW down event only if AP/SW/GW Up is not seen within the threshold in minutes; 0 - 240, default is 0 (trigger
55
55
  * immediate)
56
56
  */
57
57
  readonly deviceUpdownThreshold: pulumi.Output<number>;
58
58
  /**
59
- * whether to disallow Mist to analyze pcap files (this is required for marvis pcap)
59
+ * Whether to disallow Mist to analyze pcap files (this is required for marvis pcap)
60
60
  */
61
61
  readonly disablePcap: pulumi.Output<boolean>;
62
62
  /**
63
- * whether to disable remote shell access for an entire org
63
+ * Whether to disable remote shell access for an entire org
64
64
  */
65
65
  readonly disableRemoteShell: pulumi.Output<boolean>;
66
66
  /**
67
- * enable threshold-based device down delivery for Gateway devices only. When configured it takes effect for GW devices and
67
+ * Enable threshold-based device down delivery for Gateway devices only. When configured it takes effect for GW devices and
68
68
  * `deviceUpdownThreshold` is ignored.
69
69
  */
70
70
  readonly gatewayUpdownThreshold: pulumi.Output<number>;
@@ -97,13 +97,13 @@ export declare class Setting extends pulumi.CustomResource {
97
97
  readonly security: pulumi.Output<outputs.org.SettingSecurity | undefined>;
98
98
  readonly switchMgmt: pulumi.Output<outputs.org.SettingSwitchMgmt | undefined>;
99
99
  /**
100
- * enable threshold-based device down delivery for Switch devices only. When configured it takes effect for SW devices and
100
+ * Enable threshold-based device down delivery for Switch devices only. When configured it takes effect for SW devices and
101
101
  * `deviceUpdownThreshold` is ignored.
102
102
  */
103
103
  readonly switchUpdownThreshold: pulumi.Output<number>;
104
104
  readonly syntheticTest: pulumi.Output<outputs.org.SettingSyntheticTest | undefined>;
105
105
  /**
106
- * automatically logout the user when UI session is inactive. `0` means disabled
106
+ * Automatically logout the user when UI session is inactive. `0` means disabled
107
107
  */
108
108
  readonly uiIdleTimeout: pulumi.Output<number>;
109
109
  readonly vpnOptions: pulumi.Output<outputs.org.SettingVpnOptions | undefined>;
@@ -124,13 +124,13 @@ export declare class Setting extends pulumi.CustomResource {
124
124
  */
125
125
  export interface SettingState {
126
126
  /**
127
- * enable threshold-based device down delivery for AP devices only. When configured it takes effect for AP devices and
127
+ * Enable threshold-based device down delivery for AP devices only. When configured it takes effect for AP devices and
128
128
  * `deviceUpdownThreshold` is ignored.
129
129
  */
130
130
  apUpdownThreshold?: pulumi.Input<number>;
131
131
  apiPolicy?: pulumi.Input<inputs.org.SettingApiPolicy>;
132
132
  /**
133
- * list of PEM-encoded ca certs
133
+ * List of PEM-encoded ca certs
134
134
  */
135
135
  cacerts?: pulumi.Input<pulumi.Input<string>[]>;
136
136
  celona?: pulumi.Input<inputs.org.SettingCelona>;
@@ -141,21 +141,21 @@ export interface SettingState {
141
141
  */
142
142
  deviceCert?: pulumi.Input<inputs.org.SettingDeviceCert>;
143
143
  /**
144
- * enable threshold-based device down delivery via * device-updowns webhooks topic, * Mist Alert Framework; e.g. send
144
+ * Enable threshold-based device down delivery via * device-updowns webhooks topic, * Mist Alert Framework; e.g. send
145
145
  * AP/SW/GW down event only if AP/SW/GW Up is not seen within the threshold in minutes; 0 - 240, default is 0 (trigger
146
146
  * immediate)
147
147
  */
148
148
  deviceUpdownThreshold?: pulumi.Input<number>;
149
149
  /**
150
- * whether to disallow Mist to analyze pcap files (this is required for marvis pcap)
150
+ * Whether to disallow Mist to analyze pcap files (this is required for marvis pcap)
151
151
  */
152
152
  disablePcap?: pulumi.Input<boolean>;
153
153
  /**
154
- * whether to disable remote shell access for an entire org
154
+ * Whether to disable remote shell access for an entire org
155
155
  */
156
156
  disableRemoteShell?: pulumi.Input<boolean>;
157
157
  /**
158
- * enable threshold-based device down delivery for Gateway devices only. When configured it takes effect for GW devices and
158
+ * Enable threshold-based device down delivery for Gateway devices only. When configured it takes effect for GW devices and
159
159
  * `deviceUpdownThreshold` is ignored.
160
160
  */
161
161
  gatewayUpdownThreshold?: pulumi.Input<number>;
@@ -188,13 +188,13 @@ export interface SettingState {
188
188
  security?: pulumi.Input<inputs.org.SettingSecurity>;
189
189
  switchMgmt?: pulumi.Input<inputs.org.SettingSwitchMgmt>;
190
190
  /**
191
- * enable threshold-based device down delivery for Switch devices only. When configured it takes effect for SW devices and
191
+ * Enable threshold-based device down delivery for Switch devices only. When configured it takes effect for SW devices and
192
192
  * `deviceUpdownThreshold` is ignored.
193
193
  */
194
194
  switchUpdownThreshold?: pulumi.Input<number>;
195
195
  syntheticTest?: pulumi.Input<inputs.org.SettingSyntheticTest>;
196
196
  /**
197
- * automatically logout the user when UI session is inactive. `0` means disabled
197
+ * Automatically logout the user when UI session is inactive. `0` means disabled
198
198
  */
199
199
  uiIdleTimeout?: pulumi.Input<number>;
200
200
  vpnOptions?: pulumi.Input<inputs.org.SettingVpnOptions>;
@@ -207,13 +207,13 @@ export interface SettingState {
207
207
  */
208
208
  export interface SettingArgs {
209
209
  /**
210
- * enable threshold-based device down delivery for AP devices only. When configured it takes effect for AP devices and
210
+ * Enable threshold-based device down delivery for AP devices only. When configured it takes effect for AP devices and
211
211
  * `deviceUpdownThreshold` is ignored.
212
212
  */
213
213
  apUpdownThreshold?: pulumi.Input<number>;
214
214
  apiPolicy?: pulumi.Input<inputs.org.SettingApiPolicy>;
215
215
  /**
216
- * list of PEM-encoded ca certs
216
+ * List of PEM-encoded ca certs
217
217
  */
218
218
  cacerts?: pulumi.Input<pulumi.Input<string>[]>;
219
219
  celona?: pulumi.Input<inputs.org.SettingCelona>;
@@ -223,21 +223,21 @@ export interface SettingArgs {
223
223
  */
224
224
  deviceCert?: pulumi.Input<inputs.org.SettingDeviceCert>;
225
225
  /**
226
- * enable threshold-based device down delivery via * device-updowns webhooks topic, * Mist Alert Framework; e.g. send
226
+ * Enable threshold-based device down delivery via * device-updowns webhooks topic, * Mist Alert Framework; e.g. send
227
227
  * AP/SW/GW down event only if AP/SW/GW Up is not seen within the threshold in minutes; 0 - 240, default is 0 (trigger
228
228
  * immediate)
229
229
  */
230
230
  deviceUpdownThreshold?: pulumi.Input<number>;
231
231
  /**
232
- * whether to disallow Mist to analyze pcap files (this is required for marvis pcap)
232
+ * Whether to disallow Mist to analyze pcap files (this is required for marvis pcap)
233
233
  */
234
234
  disablePcap?: pulumi.Input<boolean>;
235
235
  /**
236
- * whether to disable remote shell access for an entire org
236
+ * Whether to disable remote shell access for an entire org
237
237
  */
238
238
  disableRemoteShell?: pulumi.Input<boolean>;
239
239
  /**
240
- * enable threshold-based device down delivery for Gateway devices only. When configured it takes effect for GW devices and
240
+ * Enable threshold-based device down delivery for Gateway devices only. When configured it takes effect for GW devices and
241
241
  * `deviceUpdownThreshold` is ignored.
242
242
  */
243
243
  gatewayUpdownThreshold?: pulumi.Input<number>;
@@ -269,13 +269,13 @@ export interface SettingArgs {
269
269
  security?: pulumi.Input<inputs.org.SettingSecurity>;
270
270
  switchMgmt?: pulumi.Input<inputs.org.SettingSwitchMgmt>;
271
271
  /**
272
- * enable threshold-based device down delivery for Switch devices only. When configured it takes effect for SW devices and
272
+ * Enable threshold-based device down delivery for Switch devices only. When configured it takes effect for SW devices and
273
273
  * `deviceUpdownThreshold` is ignored.
274
274
  */
275
275
  switchUpdownThreshold?: pulumi.Input<number>;
276
276
  syntheticTest?: pulumi.Input<inputs.org.SettingSyntheticTest>;
277
277
  /**
278
- * automatically logout the user when UI session is inactive. `0` means disabled
278
+ * Automatically logout the user when UI session is inactive. `0` means disabled
279
279
  */
280
280
  uiIdleTimeout?: pulumi.Input<number>;
281
281
  vpnOptions?: pulumi.Input<inputs.org.SettingVpnOptions>;
package/org/sso.d.ts CHANGED
@@ -61,7 +61,7 @@ export declare class Sso extends pulumi.CustomResource {
61
61
  */
62
62
  readonly defaultRole: pulumi.Output<string | undefined>;
63
63
  /**
64
- * random string generated during the SSO creation and used to generate the SAML URLs: * ACS URL =
64
+ * Random string generated during the SSO creation and used to generate the SAML URLs: * ACS URL =
65
65
  * `/api/v1/saml/{domain}/login` (e.g. `https://api.mist.com/api/v1/saml/s4t5vwv8/login`) * Single Logout URL =
66
66
  * `/api/v1/saml/{domain}/logout` (e.g. `https://api.mist.com/api/v1/saml/s4t5vwv8/logout`)
67
67
  */
@@ -87,7 +87,7 @@ export declare class Sso extends pulumi.CustomResource {
87
87
  */
88
88
  readonly issuer: pulumi.Output<string>;
89
89
  /**
90
- * name
90
+ * Name
91
91
  */
92
92
  readonly name: pulumi.Output<string>;
93
93
  /**
@@ -99,8 +99,8 @@ export declare class Sso extends pulumi.CustomResource {
99
99
  * custom role attribute parsing scheme. Supported Role Parsing Schemes
100
100
  * <table><tr><th>Name</th><th>Scheme</th></tr><tr><td>`cn`</td><td><ul><li>The expected role attribute format in SAML
101
101
  * Assertion is “CN=cn,OU=ou1,OU=ou2,…”</li><li>CN (the key) is case insensitive and exactly 1 CN is expected (or the
102
- * entire entry will be ignored)</li><li>E.g. if role attribute is “CN=cn,OU=ou1,OU=ou2” then parsed role value is
103
- * “cn”</li></ul></td></tr></table>
102
+ * entire entry will be ignored)</li></ul>E.g. if role attribute is “CN=cn,OU=ou1,OU=ou2” then parsed role value is
103
+ * “cn”</td></tr></table>
104
104
  */
105
105
  readonly roleAttrExtraction: pulumi.Output<string | undefined>;
106
106
  /**
@@ -131,7 +131,7 @@ export interface SsoState {
131
131
  */
132
132
  defaultRole?: pulumi.Input<string>;
133
133
  /**
134
- * random string generated during the SSO creation and used to generate the SAML URLs: * ACS URL =
134
+ * Random string generated during the SSO creation and used to generate the SAML URLs: * ACS URL =
135
135
  * `/api/v1/saml/{domain}/login` (e.g. `https://api.mist.com/api/v1/saml/s4t5vwv8/login`) * Single Logout URL =
136
136
  * `/api/v1/saml/{domain}/logout` (e.g. `https://api.mist.com/api/v1/saml/s4t5vwv8/logout`)
137
137
  */
@@ -157,7 +157,7 @@ export interface SsoState {
157
157
  */
158
158
  issuer?: pulumi.Input<string>;
159
159
  /**
160
- * name
160
+ * Name
161
161
  */
162
162
  name?: pulumi.Input<string>;
163
163
  /**
@@ -169,8 +169,8 @@ export interface SsoState {
169
169
  * custom role attribute parsing scheme. Supported Role Parsing Schemes
170
170
  * <table><tr><th>Name</th><th>Scheme</th></tr><tr><td>`cn`</td><td><ul><li>The expected role attribute format in SAML
171
171
  * Assertion is “CN=cn,OU=ou1,OU=ou2,…”</li><li>CN (the key) is case insensitive and exactly 1 CN is expected (or the
172
- * entire entry will be ignored)</li><li>E.g. if role attribute is “CN=cn,OU=ou1,OU=ou2” then parsed role value is
173
- * “cn”</li></ul></td></tr></table>
172
+ * entire entry will be ignored)</li></ul>E.g. if role attribute is “CN=cn,OU=ou1,OU=ou2” then parsed role value is
173
+ * “cn”</td></tr></table>
174
174
  */
175
175
  roleAttrExtraction?: pulumi.Input<string>;
176
176
  /**
@@ -213,7 +213,7 @@ export interface SsoArgs {
213
213
  */
214
214
  issuer: pulumi.Input<string>;
215
215
  /**
216
- * name
216
+ * Name
217
217
  */
218
218
  name?: pulumi.Input<string>;
219
219
  /**
@@ -225,8 +225,8 @@ export interface SsoArgs {
225
225
  * custom role attribute parsing scheme. Supported Role Parsing Schemes
226
226
  * <table><tr><th>Name</th><th>Scheme</th></tr><tr><td>`cn`</td><td><ul><li>The expected role attribute format in SAML
227
227
  * Assertion is “CN=cn,OU=ou1,OU=ou2,…”</li><li>CN (the key) is case insensitive and exactly 1 CN is expected (or the
228
- * entire entry will be ignored)</li><li>E.g. if role attribute is “CN=cn,OU=ou1,OU=ou2” then parsed role value is
229
- * “cn”</li></ul></td></tr></table>
228
+ * entire entry will be ignored)</li></ul>E.g. if role attribute is “CN=cn,OU=ou1,OU=ou2” then parsed role value is
229
+ * “cn”</td></tr></table>
230
230
  */
231
231
  roleAttrExtraction?: pulumi.Input<string>;
232
232
  /**
package/org/ssoRole.d.ts CHANGED
@@ -6,7 +6,7 @@ import * as outputs from "../types/output";
6
6
  *
7
7
  * SSO roles refer to the different functions assigned to users within a Single Sign-On (SSO) system.\
8
8
  * These roles determine the tasks and actions that users can perform within the SSO system. There are typically predefined roles and custom roles in an SSO system.\
9
- * Roles in SSO provide a well-defined separation of responsibility and visibility, allowing for granular-level access control on SSO objects..
9
+ * Roles in SSO provide a well-defined separation of responsibility and visibility, allowing for granular-level access control on SSO objects.
10
10
  *
11
11
  * ## Import
12
12
  *
package/org/ssoRole.js CHANGED
@@ -10,7 +10,7 @@ const utilities = require("../utilities");
10
10
  *
11
11
  * SSO roles refer to the different functions assigned to users within a Single Sign-On (SSO) system.\
12
12
  * These roles determine the tasks and actions that users can perform within the SSO system. There are typically predefined roles and custom roles in an SSO system.\
13
- * Roles in SSO provide a well-defined separation of responsibility and visibility, allowing for granular-level access control on SSO objects..
13
+ * Roles in SSO provide a well-defined separation of responsibility and visibility, allowing for granular-level access control on SSO objects.
14
14
  *
15
15
  * ## Import
16
16
  *