@pulumi/ise 0.1.1 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/deviceadmin/authenticationRule.d.ts +3 -3
- package/deviceadmin/authorizationExceptionRule.d.ts +3 -3
- package/deviceadmin/authorizationGlobalExceptionRule.d.ts +3 -3
- package/deviceadmin/authorizationRule.d.ts +3 -3
- package/deviceadmin/condition.d.ts +3 -3
- package/deviceadmin/policySet.d.ts +3 -3
- package/identitymanagement/certificateAuthenticationProfile.d.ts +3 -3
- package/networkaccess/allowedProtocols.d.ts +102 -105
- package/networkaccess/allowedProtocols.js.map +1 -1
- package/networkaccess/authenticationRule.d.ts +3 -3
- package/networkaccess/authorizationExceptionRule.d.ts +3 -3
- package/networkaccess/authorizationGlobalExceptionRule.d.ts +3 -3
- package/networkaccess/authorizationProfile.d.ts +12 -12
- package/networkaccess/authorizationRule.d.ts +3 -3
- package/networkaccess/condition.d.ts +3 -3
- package/networkaccess/policySet.d.ts +3 -3
- package/package.json +3 -2
- package/trustsec/ipToSgtMapping.d.ts +15 -15
- package/trustsec/ipToSgtMappingGroup.d.ts +3 -3
- package/package.json.bak +0 -28
|
@@ -170,11 +170,11 @@ export declare class AllowedProtocols extends pulumi.CustomResource {
|
|
|
170
170
|
*/
|
|
171
171
|
readonly description: pulumi.Output<string | undefined>;
|
|
172
172
|
/**
|
|
173
|
-
* Accept client certificates. Is required only if `
|
|
173
|
+
* Accept client certificates. Is required only if `eapFastUsePacs` is `false`.
|
|
174
174
|
*/
|
|
175
175
|
readonly eapFastAcceptClientCert: pulumi.Output<boolean | undefined>;
|
|
176
176
|
/**
|
|
177
|
-
* Allow machine authentication. Is required only if `
|
|
177
|
+
* Allow machine authentication. Is required only if `eapFastUsePacs` is `false`.
|
|
178
178
|
*/
|
|
179
179
|
readonly eapFastAllowMachineAuthentication: pulumi.Output<boolean | undefined>;
|
|
180
180
|
/**
|
|
@@ -182,11 +182,11 @@ export declare class AllowedProtocols extends pulumi.CustomResource {
|
|
|
182
182
|
*/
|
|
183
183
|
readonly eapFastEapGtc: pulumi.Output<boolean | undefined>;
|
|
184
184
|
/**
|
|
185
|
-
* Allow EAP GTC password change. Is required only if `
|
|
185
|
+
* Allow EAP GTC password change. Is required only if `eapFastEapGtc` is `true`.
|
|
186
186
|
*/
|
|
187
187
|
readonly eapFastEapGtcPwdChange: pulumi.Output<boolean | undefined>;
|
|
188
188
|
/**
|
|
189
|
-
* EAP GTC password change retries. Is required only if `
|
|
189
|
+
* EAP GTC password change retries. Is required only if `eapFastEapGtc` is `true`. - Range: `0`-`3`
|
|
190
190
|
*/
|
|
191
191
|
readonly eapFastEapGtcPwdChangeRetries: pulumi.Output<number | undefined>;
|
|
192
192
|
/**
|
|
@@ -194,11 +194,11 @@ export declare class AllowedProtocols extends pulumi.CustomResource {
|
|
|
194
194
|
*/
|
|
195
195
|
readonly eapFastEapMsChapV2: pulumi.Output<boolean | undefined>;
|
|
196
196
|
/**
|
|
197
|
-
* Allow EAP MS CHAP v2 password change. Is required only if `
|
|
197
|
+
* Allow EAP MS CHAP v2 password change. Is required only if `eapFastEapMsChapV2` is `true`.
|
|
198
198
|
*/
|
|
199
199
|
readonly eapFastEapMsChapV2PwdChange: pulumi.Output<boolean | undefined>;
|
|
200
200
|
/**
|
|
201
|
-
* EAP MS CHAP v2 password change retries. Is required only if `
|
|
201
|
+
* EAP MS CHAP v2 password change retries. Is required only if `eapFastEapMsChapV2` is `true`. - Range: `0`-`3`
|
|
202
202
|
*/
|
|
203
203
|
readonly eapFastEapMsChapV2PwdChangeRetries: pulumi.Output<number | undefined>;
|
|
204
204
|
/**
|
|
@@ -206,7 +206,7 @@ export declare class AllowedProtocols extends pulumi.CustomResource {
|
|
|
206
206
|
*/
|
|
207
207
|
readonly eapFastEapTls: pulumi.Output<boolean | undefined>;
|
|
208
208
|
/**
|
|
209
|
-
* Allow EAP TLS authentication of expired certificates. Is required only if `
|
|
209
|
+
* Allow EAP TLS authentication of expired certificates. Is required only if `eapFastEapTls` is `true`.
|
|
210
210
|
*/
|
|
211
211
|
readonly eapFastEapTlsAuthOfExpiredCerts: pulumi.Output<boolean | undefined>;
|
|
212
212
|
/**
|
|
@@ -214,60 +214,59 @@ export declare class AllowedProtocols extends pulumi.CustomResource {
|
|
|
214
214
|
*/
|
|
215
215
|
readonly eapFastEnableEapChaining: pulumi.Output<boolean | undefined>;
|
|
216
216
|
/**
|
|
217
|
-
* Allow anonymous provisioning. Is required only if `
|
|
217
|
+
* Allow anonymous provisioning. Is required only if `eapFastUsePacs` is `true`.
|
|
218
218
|
*/
|
|
219
219
|
readonly eapFastPacsAllowAnonymousProvisioning: pulumi.Output<boolean | undefined>;
|
|
220
220
|
/**
|
|
221
|
-
* Allow authenticated provisioning. Is required only if `
|
|
221
|
+
* Allow authenticated provisioning. Is required only if `eapFastUsePacs` is `true`.
|
|
222
222
|
*/
|
|
223
223
|
readonly eapFastPacsAllowAuthenticatedProvisioning: pulumi.Output<boolean | undefined>;
|
|
224
224
|
/**
|
|
225
|
-
* Accept client certification for provisioning. Is required only if `
|
|
226
|
-
* `true`.
|
|
225
|
+
* Accept client certification for provisioning. Is required only if `eapFastPacsAllowAuthenticatedProvisioning` is `true`.
|
|
227
226
|
*/
|
|
228
227
|
readonly eapFastPacsAllowClientCert: pulumi.Output<boolean | undefined>;
|
|
229
228
|
/**
|
|
230
|
-
* Allow machine authentication. Is required only if `
|
|
229
|
+
* Allow machine authentication. Is required only if `eapFastUsePacs` is `true`.
|
|
231
230
|
*/
|
|
232
231
|
readonly eapFastPacsAllowMachineAuthentication: pulumi.Output<boolean | undefined>;
|
|
233
232
|
/**
|
|
234
|
-
* Authorization PAC TTL. Is required only if `
|
|
233
|
+
* Authorization PAC TTL. Is required only if `eapFastPacsStatelessSessionResume` is `true`.
|
|
235
234
|
*/
|
|
236
235
|
readonly eapFastPacsAuthorizationPacTtl: pulumi.Output<number | undefined>;
|
|
237
236
|
/**
|
|
238
|
-
* Authorization PAC TTL unit. Is required only if `
|
|
239
|
-
* `
|
|
237
|
+
* Authorization PAC TTL unit. Is required only if `eapFastPacsStatelessSessionResume` is `true`. - Choices: `SECONDS`,
|
|
238
|
+
* `MINUTES`, `HOURS`, `DAYS`, `WEEKS`
|
|
240
239
|
*/
|
|
241
240
|
readonly eapFastPacsAuthorizationPacTtlUnit: pulumi.Output<string | undefined>;
|
|
242
241
|
/**
|
|
243
|
-
* Machine PAC TTL. Is required only if `
|
|
242
|
+
* Machine PAC TTL. Is required only if `eapFastPacsAllowMachineAuthentication` is `true`.
|
|
244
243
|
*/
|
|
245
244
|
readonly eapFastPacsMachinePacTtl: pulumi.Output<number | undefined>;
|
|
246
245
|
/**
|
|
247
|
-
* Machine PAC TTL unit. Is required only if `
|
|
246
|
+
* Machine PAC TTL unit. Is required only if `eapFastPacsAllowMachineAuthentication` is `true`. - Choices: `SECONDS`,
|
|
248
247
|
* `MINUTES`, `HOURS`, `DAYS`, `WEEKS`
|
|
249
248
|
*/
|
|
250
249
|
readonly eapFastPacsMachinePacTtlUnit: pulumi.Output<string | undefined>;
|
|
251
250
|
/**
|
|
252
251
|
* Server returns access accept after authenticated provisioning. Is required only if
|
|
253
|
-
* `
|
|
252
|
+
* `eapFastPacsAllowAuthenticatedProvisioning` is `true`.
|
|
254
253
|
*/
|
|
255
254
|
readonly eapFastPacsServerReturns: pulumi.Output<boolean | undefined>;
|
|
256
255
|
/**
|
|
257
|
-
* Stateless session resume. Is required only if `
|
|
256
|
+
* Stateless session resume. Is required only if `eapFastUsePacs` is `true`.
|
|
258
257
|
*/
|
|
259
258
|
readonly eapFastPacsStatelessSessionResume: pulumi.Output<boolean | undefined>;
|
|
260
259
|
/**
|
|
261
|
-
* PACs tunnel PAC time to live. Is required only if `
|
|
260
|
+
* PACs tunnel PAC time to live. Is required only if `eapFastUsePacs` is `true`.
|
|
262
261
|
*/
|
|
263
262
|
readonly eapFastPacsTunnelPacTtl: pulumi.Output<number | undefined>;
|
|
264
263
|
/**
|
|
265
|
-
* PACs tunnel PAC time to live unit. Is required only if `
|
|
264
|
+
* PACs tunnel PAC time to live unit. Is required only if `eapFastUsePacs` is `true`. - Choices: `SECONDS`, `MINUTES`,
|
|
266
265
|
* `HOURS`, `DAYS`, `WEEKS`
|
|
267
266
|
*/
|
|
268
267
|
readonly eapFastPacsTunnelPacTtlUnit: pulumi.Output<string | undefined>;
|
|
269
268
|
/**
|
|
270
|
-
* Use proactive pac update percentage. Is required only if `
|
|
269
|
+
* Use proactive pac update percentage. Is required only if `eapFastUsePacs` is `true`. - Range: `1`-`100`
|
|
271
270
|
*/
|
|
272
271
|
readonly eapFastPacsUseProactivePacUpdatePercentage: pulumi.Output<number | undefined>;
|
|
273
272
|
/**
|
|
@@ -287,15 +286,15 @@ export declare class AllowedProtocols extends pulumi.CustomResource {
|
|
|
287
286
|
*/
|
|
288
287
|
readonly eapTlsLBit: pulumi.Output<boolean>;
|
|
289
288
|
/**
|
|
290
|
-
* Session ticket percentage. Is required only if `
|
|
289
|
+
* Session ticket percentage. Is required only if `eapTlsEnableStatelessSessionResume` is `true`. - Range: `1`-`100`
|
|
291
290
|
*/
|
|
292
291
|
readonly eapTlsSessionTicketPercentage: pulumi.Output<number | undefined>;
|
|
293
292
|
/**
|
|
294
|
-
* Session ticket TTL. Is required only if `
|
|
293
|
+
* Session ticket TTL. Is required only if `eapTlsEnableStatelessSessionResume` is `true`.
|
|
295
294
|
*/
|
|
296
295
|
readonly eapTlsSessionTicketTtl: pulumi.Output<number | undefined>;
|
|
297
296
|
/**
|
|
298
|
-
* Session ticket TTL unit. Is required only if `
|
|
297
|
+
* Session ticket TTL unit. Is required only if `eapTlsEnableStatelessSessionResume` is `true`. - Choices: `SECONDS`,
|
|
299
298
|
* `MINUTES`, `HOURS`, `DAYS`, `WEEKS`
|
|
300
299
|
*/
|
|
301
300
|
readonly eapTlsSessionTicketTtlUnit: pulumi.Output<string | undefined>;
|
|
@@ -312,11 +311,11 @@ export declare class AllowedProtocols extends pulumi.CustomResource {
|
|
|
312
311
|
*/
|
|
313
312
|
readonly eapTtlsEapMsChapV2: pulumi.Output<boolean | undefined>;
|
|
314
313
|
/**
|
|
315
|
-
* Allow EAP MS CHAP v2 password change. Is required only if `
|
|
314
|
+
* Allow EAP MS CHAP v2 password change. Is required only if `eapTtlsEapMsChapV2` is `true`.
|
|
316
315
|
*/
|
|
317
316
|
readonly eapTtlsEapMsChapV2PwdChange: pulumi.Output<boolean | undefined>;
|
|
318
317
|
/**
|
|
319
|
-
* EAP MS CHAP v2 password change retries. Is required only if `
|
|
318
|
+
* EAP MS CHAP v2 password change retries. Is required only if `eapTtlsEapMsChapV2` is `true`. - Range: `0`-`3`
|
|
320
319
|
*/
|
|
321
320
|
readonly eapTtlsEapMsChapV2PwdChangeRetries: pulumi.Output<number | undefined>;
|
|
322
321
|
/**
|
|
@@ -340,11 +339,11 @@ export declare class AllowedProtocols extends pulumi.CustomResource {
|
|
|
340
339
|
*/
|
|
341
340
|
readonly peapAllowPeapEapGtc: pulumi.Output<boolean | undefined>;
|
|
342
341
|
/**
|
|
343
|
-
* Allow PEAP EAP GTC password change. Is required only if `
|
|
342
|
+
* Allow PEAP EAP GTC password change. Is required only if `allowPeapEapGtc` is `true`.
|
|
344
343
|
*/
|
|
345
344
|
readonly peapAllowPeapEapGtcPwdChange: pulumi.Output<boolean | undefined>;
|
|
346
345
|
/**
|
|
347
|
-
* PEAP EAP GTC password change retries. Is required only if `
|
|
346
|
+
* PEAP EAP GTC password change retries. Is required only if `allowPeapEapGtc` is `true`. - Range: `0`-`3`
|
|
348
347
|
*/
|
|
349
348
|
readonly peapAllowPeapEapGtcPwdChangeRetries: pulumi.Output<number | undefined>;
|
|
350
349
|
/**
|
|
@@ -352,11 +351,11 @@ export declare class AllowedProtocols extends pulumi.CustomResource {
|
|
|
352
351
|
*/
|
|
353
352
|
readonly peapAllowPeapEapMsChapV2: pulumi.Output<boolean | undefined>;
|
|
354
353
|
/**
|
|
355
|
-
* Allow PEAP EAP MS CHAP v2 password change. Is required only if `
|
|
354
|
+
* Allow PEAP EAP MS CHAP v2 password change. Is required only if `allowPeapEapMsChapV2` is `true`.
|
|
356
355
|
*/
|
|
357
356
|
readonly peapAllowPeapEapMsChapV2PwdChange: pulumi.Output<boolean | undefined>;
|
|
358
357
|
/**
|
|
359
|
-
* Allow PEAP EAP MS CHAP v2 password change retries. Is required only if `
|
|
358
|
+
* Allow PEAP EAP MS CHAP v2 password change retries. Is required only if `allowPeapEapMsChapV2` is `true`. - Range:
|
|
360
359
|
* `0`-`3`
|
|
361
360
|
*/
|
|
362
361
|
readonly peapAllowPeapEapMsChapV2PwdChangeRetries: pulumi.Output<number | undefined>;
|
|
@@ -365,7 +364,7 @@ export declare class AllowedProtocols extends pulumi.CustomResource {
|
|
|
365
364
|
*/
|
|
366
365
|
readonly peapAllowPeapEapTls: pulumi.Output<boolean | undefined>;
|
|
367
366
|
/**
|
|
368
|
-
* Allow PEAP EAP TLS authentication of expired certificates. Is required only if `
|
|
367
|
+
* Allow PEAP EAP TLS authentication of expired certificates. Is required only if `peapAllowPeapEapTls` is `true`.
|
|
369
368
|
*/
|
|
370
369
|
readonly peapAllowPeapEapTlsAuthOfExpiredCerts: pulumi.Output<boolean | undefined>;
|
|
371
370
|
/**
|
|
@@ -405,11 +404,11 @@ export declare class AllowedProtocols extends pulumi.CustomResource {
|
|
|
405
404
|
*/
|
|
406
405
|
readonly teapEapMsChapV2: pulumi.Output<boolean | undefined>;
|
|
407
406
|
/**
|
|
408
|
-
* Allow EAP MS CHAP v2 password change. Is required only if `
|
|
407
|
+
* Allow EAP MS CHAP v2 password change. Is required only if `teapEapMsChapV2` is `true`.
|
|
409
408
|
*/
|
|
410
409
|
readonly teapEapMsChapV2PwdChange: pulumi.Output<boolean | undefined>;
|
|
411
410
|
/**
|
|
412
|
-
* EAP MS CHAP v2 password change retries. Is required only if `
|
|
411
|
+
* EAP MS CHAP v2 password change retries. Is required only if `teapEapMsChapV2` is `true`. - Range: `0`-`3`
|
|
413
412
|
*/
|
|
414
413
|
readonly teapEapMsChapV2PwdChangeRetries: pulumi.Output<number | undefined>;
|
|
415
414
|
/**
|
|
@@ -417,7 +416,7 @@ export declare class AllowedProtocols extends pulumi.CustomResource {
|
|
|
417
416
|
*/
|
|
418
417
|
readonly teapEapTls: pulumi.Output<boolean | undefined>;
|
|
419
418
|
/**
|
|
420
|
-
* Allow EAP TLS authentication of expired certs. Is required only if `
|
|
419
|
+
* Allow EAP TLS authentication of expired certs. Is required only if `teapEapTls` is `true`.
|
|
421
420
|
*/
|
|
422
421
|
readonly teapEapTlsAuthOfExpiredCerts: pulumi.Output<boolean | undefined>;
|
|
423
422
|
/**
|
|
@@ -498,11 +497,11 @@ export interface AllowedProtocolsState {
|
|
|
498
497
|
*/
|
|
499
498
|
description?: pulumi.Input<string>;
|
|
500
499
|
/**
|
|
501
|
-
* Accept client certificates. Is required only if `
|
|
500
|
+
* Accept client certificates. Is required only if `eapFastUsePacs` is `false`.
|
|
502
501
|
*/
|
|
503
502
|
eapFastAcceptClientCert?: pulumi.Input<boolean>;
|
|
504
503
|
/**
|
|
505
|
-
* Allow machine authentication. Is required only if `
|
|
504
|
+
* Allow machine authentication. Is required only if `eapFastUsePacs` is `false`.
|
|
506
505
|
*/
|
|
507
506
|
eapFastAllowMachineAuthentication?: pulumi.Input<boolean>;
|
|
508
507
|
/**
|
|
@@ -510,11 +509,11 @@ export interface AllowedProtocolsState {
|
|
|
510
509
|
*/
|
|
511
510
|
eapFastEapGtc?: pulumi.Input<boolean>;
|
|
512
511
|
/**
|
|
513
|
-
* Allow EAP GTC password change. Is required only if `
|
|
512
|
+
* Allow EAP GTC password change. Is required only if `eapFastEapGtc` is `true`.
|
|
514
513
|
*/
|
|
515
514
|
eapFastEapGtcPwdChange?: pulumi.Input<boolean>;
|
|
516
515
|
/**
|
|
517
|
-
* EAP GTC password change retries. Is required only if `
|
|
516
|
+
* EAP GTC password change retries. Is required only if `eapFastEapGtc` is `true`. - Range: `0`-`3`
|
|
518
517
|
*/
|
|
519
518
|
eapFastEapGtcPwdChangeRetries?: pulumi.Input<number>;
|
|
520
519
|
/**
|
|
@@ -522,11 +521,11 @@ export interface AllowedProtocolsState {
|
|
|
522
521
|
*/
|
|
523
522
|
eapFastEapMsChapV2?: pulumi.Input<boolean>;
|
|
524
523
|
/**
|
|
525
|
-
* Allow EAP MS CHAP v2 password change. Is required only if `
|
|
524
|
+
* Allow EAP MS CHAP v2 password change. Is required only if `eapFastEapMsChapV2` is `true`.
|
|
526
525
|
*/
|
|
527
526
|
eapFastEapMsChapV2PwdChange?: pulumi.Input<boolean>;
|
|
528
527
|
/**
|
|
529
|
-
* EAP MS CHAP v2 password change retries. Is required only if `
|
|
528
|
+
* EAP MS CHAP v2 password change retries. Is required only if `eapFastEapMsChapV2` is `true`. - Range: `0`-`3`
|
|
530
529
|
*/
|
|
531
530
|
eapFastEapMsChapV2PwdChangeRetries?: pulumi.Input<number>;
|
|
532
531
|
/**
|
|
@@ -534,7 +533,7 @@ export interface AllowedProtocolsState {
|
|
|
534
533
|
*/
|
|
535
534
|
eapFastEapTls?: pulumi.Input<boolean>;
|
|
536
535
|
/**
|
|
537
|
-
* Allow EAP TLS authentication of expired certificates. Is required only if `
|
|
536
|
+
* Allow EAP TLS authentication of expired certificates. Is required only if `eapFastEapTls` is `true`.
|
|
538
537
|
*/
|
|
539
538
|
eapFastEapTlsAuthOfExpiredCerts?: pulumi.Input<boolean>;
|
|
540
539
|
/**
|
|
@@ -542,60 +541,59 @@ export interface AllowedProtocolsState {
|
|
|
542
541
|
*/
|
|
543
542
|
eapFastEnableEapChaining?: pulumi.Input<boolean>;
|
|
544
543
|
/**
|
|
545
|
-
* Allow anonymous provisioning. Is required only if `
|
|
544
|
+
* Allow anonymous provisioning. Is required only if `eapFastUsePacs` is `true`.
|
|
546
545
|
*/
|
|
547
546
|
eapFastPacsAllowAnonymousProvisioning?: pulumi.Input<boolean>;
|
|
548
547
|
/**
|
|
549
|
-
* Allow authenticated provisioning. Is required only if `
|
|
548
|
+
* Allow authenticated provisioning. Is required only if `eapFastUsePacs` is `true`.
|
|
550
549
|
*/
|
|
551
550
|
eapFastPacsAllowAuthenticatedProvisioning?: pulumi.Input<boolean>;
|
|
552
551
|
/**
|
|
553
|
-
* Accept client certification for provisioning. Is required only if `
|
|
554
|
-
* `true`.
|
|
552
|
+
* Accept client certification for provisioning. Is required only if `eapFastPacsAllowAuthenticatedProvisioning` is `true`.
|
|
555
553
|
*/
|
|
556
554
|
eapFastPacsAllowClientCert?: pulumi.Input<boolean>;
|
|
557
555
|
/**
|
|
558
|
-
* Allow machine authentication. Is required only if `
|
|
556
|
+
* Allow machine authentication. Is required only if `eapFastUsePacs` is `true`.
|
|
559
557
|
*/
|
|
560
558
|
eapFastPacsAllowMachineAuthentication?: pulumi.Input<boolean>;
|
|
561
559
|
/**
|
|
562
|
-
* Authorization PAC TTL. Is required only if `
|
|
560
|
+
* Authorization PAC TTL. Is required only if `eapFastPacsStatelessSessionResume` is `true`.
|
|
563
561
|
*/
|
|
564
562
|
eapFastPacsAuthorizationPacTtl?: pulumi.Input<number>;
|
|
565
563
|
/**
|
|
566
|
-
* Authorization PAC TTL unit. Is required only if `
|
|
567
|
-
* `
|
|
564
|
+
* Authorization PAC TTL unit. Is required only if `eapFastPacsStatelessSessionResume` is `true`. - Choices: `SECONDS`,
|
|
565
|
+
* `MINUTES`, `HOURS`, `DAYS`, `WEEKS`
|
|
568
566
|
*/
|
|
569
567
|
eapFastPacsAuthorizationPacTtlUnit?: pulumi.Input<string>;
|
|
570
568
|
/**
|
|
571
|
-
* Machine PAC TTL. Is required only if `
|
|
569
|
+
* Machine PAC TTL. Is required only if `eapFastPacsAllowMachineAuthentication` is `true`.
|
|
572
570
|
*/
|
|
573
571
|
eapFastPacsMachinePacTtl?: pulumi.Input<number>;
|
|
574
572
|
/**
|
|
575
|
-
* Machine PAC TTL unit. Is required only if `
|
|
573
|
+
* Machine PAC TTL unit. Is required only if `eapFastPacsAllowMachineAuthentication` is `true`. - Choices: `SECONDS`,
|
|
576
574
|
* `MINUTES`, `HOURS`, `DAYS`, `WEEKS`
|
|
577
575
|
*/
|
|
578
576
|
eapFastPacsMachinePacTtlUnit?: pulumi.Input<string>;
|
|
579
577
|
/**
|
|
580
578
|
* Server returns access accept after authenticated provisioning. Is required only if
|
|
581
|
-
* `
|
|
579
|
+
* `eapFastPacsAllowAuthenticatedProvisioning` is `true`.
|
|
582
580
|
*/
|
|
583
581
|
eapFastPacsServerReturns?: pulumi.Input<boolean>;
|
|
584
582
|
/**
|
|
585
|
-
* Stateless session resume. Is required only if `
|
|
583
|
+
* Stateless session resume. Is required only if `eapFastUsePacs` is `true`.
|
|
586
584
|
*/
|
|
587
585
|
eapFastPacsStatelessSessionResume?: pulumi.Input<boolean>;
|
|
588
586
|
/**
|
|
589
|
-
* PACs tunnel PAC time to live. Is required only if `
|
|
587
|
+
* PACs tunnel PAC time to live. Is required only if `eapFastUsePacs` is `true`.
|
|
590
588
|
*/
|
|
591
589
|
eapFastPacsTunnelPacTtl?: pulumi.Input<number>;
|
|
592
590
|
/**
|
|
593
|
-
* PACs tunnel PAC time to live unit. Is required only if `
|
|
591
|
+
* PACs tunnel PAC time to live unit. Is required only if `eapFastUsePacs` is `true`. - Choices: `SECONDS`, `MINUTES`,
|
|
594
592
|
* `HOURS`, `DAYS`, `WEEKS`
|
|
595
593
|
*/
|
|
596
594
|
eapFastPacsTunnelPacTtlUnit?: pulumi.Input<string>;
|
|
597
595
|
/**
|
|
598
|
-
* Use proactive pac update percentage. Is required only if `
|
|
596
|
+
* Use proactive pac update percentage. Is required only if `eapFastUsePacs` is `true`. - Range: `1`-`100`
|
|
599
597
|
*/
|
|
600
598
|
eapFastPacsUseProactivePacUpdatePercentage?: pulumi.Input<number>;
|
|
601
599
|
/**
|
|
@@ -615,15 +613,15 @@ export interface AllowedProtocolsState {
|
|
|
615
613
|
*/
|
|
616
614
|
eapTlsLBit?: pulumi.Input<boolean>;
|
|
617
615
|
/**
|
|
618
|
-
* Session ticket percentage. Is required only if `
|
|
616
|
+
* Session ticket percentage. Is required only if `eapTlsEnableStatelessSessionResume` is `true`. - Range: `1`-`100`
|
|
619
617
|
*/
|
|
620
618
|
eapTlsSessionTicketPercentage?: pulumi.Input<number>;
|
|
621
619
|
/**
|
|
622
|
-
* Session ticket TTL. Is required only if `
|
|
620
|
+
* Session ticket TTL. Is required only if `eapTlsEnableStatelessSessionResume` is `true`.
|
|
623
621
|
*/
|
|
624
622
|
eapTlsSessionTicketTtl?: pulumi.Input<number>;
|
|
625
623
|
/**
|
|
626
|
-
* Session ticket TTL unit. Is required only if `
|
|
624
|
+
* Session ticket TTL unit. Is required only if `eapTlsEnableStatelessSessionResume` is `true`. - Choices: `SECONDS`,
|
|
627
625
|
* `MINUTES`, `HOURS`, `DAYS`, `WEEKS`
|
|
628
626
|
*/
|
|
629
627
|
eapTlsSessionTicketTtlUnit?: pulumi.Input<string>;
|
|
@@ -640,11 +638,11 @@ export interface AllowedProtocolsState {
|
|
|
640
638
|
*/
|
|
641
639
|
eapTtlsEapMsChapV2?: pulumi.Input<boolean>;
|
|
642
640
|
/**
|
|
643
|
-
* Allow EAP MS CHAP v2 password change. Is required only if `
|
|
641
|
+
* Allow EAP MS CHAP v2 password change. Is required only if `eapTtlsEapMsChapV2` is `true`.
|
|
644
642
|
*/
|
|
645
643
|
eapTtlsEapMsChapV2PwdChange?: pulumi.Input<boolean>;
|
|
646
644
|
/**
|
|
647
|
-
* EAP MS CHAP v2 password change retries. Is required only if `
|
|
645
|
+
* EAP MS CHAP v2 password change retries. Is required only if `eapTtlsEapMsChapV2` is `true`. - Range: `0`-`3`
|
|
648
646
|
*/
|
|
649
647
|
eapTtlsEapMsChapV2PwdChangeRetries?: pulumi.Input<number>;
|
|
650
648
|
/**
|
|
@@ -668,11 +666,11 @@ export interface AllowedProtocolsState {
|
|
|
668
666
|
*/
|
|
669
667
|
peapAllowPeapEapGtc?: pulumi.Input<boolean>;
|
|
670
668
|
/**
|
|
671
|
-
* Allow PEAP EAP GTC password change. Is required only if `
|
|
669
|
+
* Allow PEAP EAP GTC password change. Is required only if `allowPeapEapGtc` is `true`.
|
|
672
670
|
*/
|
|
673
671
|
peapAllowPeapEapGtcPwdChange?: pulumi.Input<boolean>;
|
|
674
672
|
/**
|
|
675
|
-
* PEAP EAP GTC password change retries. Is required only if `
|
|
673
|
+
* PEAP EAP GTC password change retries. Is required only if `allowPeapEapGtc` is `true`. - Range: `0`-`3`
|
|
676
674
|
*/
|
|
677
675
|
peapAllowPeapEapGtcPwdChangeRetries?: pulumi.Input<number>;
|
|
678
676
|
/**
|
|
@@ -680,11 +678,11 @@ export interface AllowedProtocolsState {
|
|
|
680
678
|
*/
|
|
681
679
|
peapAllowPeapEapMsChapV2?: pulumi.Input<boolean>;
|
|
682
680
|
/**
|
|
683
|
-
* Allow PEAP EAP MS CHAP v2 password change. Is required only if `
|
|
681
|
+
* Allow PEAP EAP MS CHAP v2 password change. Is required only if `allowPeapEapMsChapV2` is `true`.
|
|
684
682
|
*/
|
|
685
683
|
peapAllowPeapEapMsChapV2PwdChange?: pulumi.Input<boolean>;
|
|
686
684
|
/**
|
|
687
|
-
* Allow PEAP EAP MS CHAP v2 password change retries. Is required only if `
|
|
685
|
+
* Allow PEAP EAP MS CHAP v2 password change retries. Is required only if `allowPeapEapMsChapV2` is `true`. - Range:
|
|
688
686
|
* `0`-`3`
|
|
689
687
|
*/
|
|
690
688
|
peapAllowPeapEapMsChapV2PwdChangeRetries?: pulumi.Input<number>;
|
|
@@ -693,7 +691,7 @@ export interface AllowedProtocolsState {
|
|
|
693
691
|
*/
|
|
694
692
|
peapAllowPeapEapTls?: pulumi.Input<boolean>;
|
|
695
693
|
/**
|
|
696
|
-
* Allow PEAP EAP TLS authentication of expired certificates. Is required only if `
|
|
694
|
+
* Allow PEAP EAP TLS authentication of expired certificates. Is required only if `peapAllowPeapEapTls` is `true`.
|
|
697
695
|
*/
|
|
698
696
|
peapAllowPeapEapTlsAuthOfExpiredCerts?: pulumi.Input<boolean>;
|
|
699
697
|
/**
|
|
@@ -733,11 +731,11 @@ export interface AllowedProtocolsState {
|
|
|
733
731
|
*/
|
|
734
732
|
teapEapMsChapV2?: pulumi.Input<boolean>;
|
|
735
733
|
/**
|
|
736
|
-
* Allow EAP MS CHAP v2 password change. Is required only if `
|
|
734
|
+
* Allow EAP MS CHAP v2 password change. Is required only if `teapEapMsChapV2` is `true`.
|
|
737
735
|
*/
|
|
738
736
|
teapEapMsChapV2PwdChange?: pulumi.Input<boolean>;
|
|
739
737
|
/**
|
|
740
|
-
* EAP MS CHAP v2 password change retries. Is required only if `
|
|
738
|
+
* EAP MS CHAP v2 password change retries. Is required only if `teapEapMsChapV2` is `true`. - Range: `0`-`3`
|
|
741
739
|
*/
|
|
742
740
|
teapEapMsChapV2PwdChangeRetries?: pulumi.Input<number>;
|
|
743
741
|
/**
|
|
@@ -745,7 +743,7 @@ export interface AllowedProtocolsState {
|
|
|
745
743
|
*/
|
|
746
744
|
teapEapTls?: pulumi.Input<boolean>;
|
|
747
745
|
/**
|
|
748
|
-
* Allow EAP TLS authentication of expired certs. Is required only if `
|
|
746
|
+
* Allow EAP TLS authentication of expired certs. Is required only if `teapEapTls` is `true`.
|
|
749
747
|
*/
|
|
750
748
|
teapEapTlsAuthOfExpiredCerts?: pulumi.Input<boolean>;
|
|
751
749
|
/**
|
|
@@ -818,11 +816,11 @@ export interface AllowedProtocolsArgs {
|
|
|
818
816
|
*/
|
|
819
817
|
description?: pulumi.Input<string>;
|
|
820
818
|
/**
|
|
821
|
-
* Accept client certificates. Is required only if `
|
|
819
|
+
* Accept client certificates. Is required only if `eapFastUsePacs` is `false`.
|
|
822
820
|
*/
|
|
823
821
|
eapFastAcceptClientCert?: pulumi.Input<boolean>;
|
|
824
822
|
/**
|
|
825
|
-
* Allow machine authentication. Is required only if `
|
|
823
|
+
* Allow machine authentication. Is required only if `eapFastUsePacs` is `false`.
|
|
826
824
|
*/
|
|
827
825
|
eapFastAllowMachineAuthentication?: pulumi.Input<boolean>;
|
|
828
826
|
/**
|
|
@@ -830,11 +828,11 @@ export interface AllowedProtocolsArgs {
|
|
|
830
828
|
*/
|
|
831
829
|
eapFastEapGtc?: pulumi.Input<boolean>;
|
|
832
830
|
/**
|
|
833
|
-
* Allow EAP GTC password change. Is required only if `
|
|
831
|
+
* Allow EAP GTC password change. Is required only if `eapFastEapGtc` is `true`.
|
|
834
832
|
*/
|
|
835
833
|
eapFastEapGtcPwdChange?: pulumi.Input<boolean>;
|
|
836
834
|
/**
|
|
837
|
-
* EAP GTC password change retries. Is required only if `
|
|
835
|
+
* EAP GTC password change retries. Is required only if `eapFastEapGtc` is `true`. - Range: `0`-`3`
|
|
838
836
|
*/
|
|
839
837
|
eapFastEapGtcPwdChangeRetries?: pulumi.Input<number>;
|
|
840
838
|
/**
|
|
@@ -842,11 +840,11 @@ export interface AllowedProtocolsArgs {
|
|
|
842
840
|
*/
|
|
843
841
|
eapFastEapMsChapV2?: pulumi.Input<boolean>;
|
|
844
842
|
/**
|
|
845
|
-
* Allow EAP MS CHAP v2 password change. Is required only if `
|
|
843
|
+
* Allow EAP MS CHAP v2 password change. Is required only if `eapFastEapMsChapV2` is `true`.
|
|
846
844
|
*/
|
|
847
845
|
eapFastEapMsChapV2PwdChange?: pulumi.Input<boolean>;
|
|
848
846
|
/**
|
|
849
|
-
* EAP MS CHAP v2 password change retries. Is required only if `
|
|
847
|
+
* EAP MS CHAP v2 password change retries. Is required only if `eapFastEapMsChapV2` is `true`. - Range: `0`-`3`
|
|
850
848
|
*/
|
|
851
849
|
eapFastEapMsChapV2PwdChangeRetries?: pulumi.Input<number>;
|
|
852
850
|
/**
|
|
@@ -854,7 +852,7 @@ export interface AllowedProtocolsArgs {
|
|
|
854
852
|
*/
|
|
855
853
|
eapFastEapTls?: pulumi.Input<boolean>;
|
|
856
854
|
/**
|
|
857
|
-
* Allow EAP TLS authentication of expired certificates. Is required only if `
|
|
855
|
+
* Allow EAP TLS authentication of expired certificates. Is required only if `eapFastEapTls` is `true`.
|
|
858
856
|
*/
|
|
859
857
|
eapFastEapTlsAuthOfExpiredCerts?: pulumi.Input<boolean>;
|
|
860
858
|
/**
|
|
@@ -862,60 +860,59 @@ export interface AllowedProtocolsArgs {
|
|
|
862
860
|
*/
|
|
863
861
|
eapFastEnableEapChaining?: pulumi.Input<boolean>;
|
|
864
862
|
/**
|
|
865
|
-
* Allow anonymous provisioning. Is required only if `
|
|
863
|
+
* Allow anonymous provisioning. Is required only if `eapFastUsePacs` is `true`.
|
|
866
864
|
*/
|
|
867
865
|
eapFastPacsAllowAnonymousProvisioning?: pulumi.Input<boolean>;
|
|
868
866
|
/**
|
|
869
|
-
* Allow authenticated provisioning. Is required only if `
|
|
867
|
+
* Allow authenticated provisioning. Is required only if `eapFastUsePacs` is `true`.
|
|
870
868
|
*/
|
|
871
869
|
eapFastPacsAllowAuthenticatedProvisioning?: pulumi.Input<boolean>;
|
|
872
870
|
/**
|
|
873
|
-
* Accept client certification for provisioning. Is required only if `
|
|
874
|
-
* `true`.
|
|
871
|
+
* Accept client certification for provisioning. Is required only if `eapFastPacsAllowAuthenticatedProvisioning` is `true`.
|
|
875
872
|
*/
|
|
876
873
|
eapFastPacsAllowClientCert?: pulumi.Input<boolean>;
|
|
877
874
|
/**
|
|
878
|
-
* Allow machine authentication. Is required only if `
|
|
875
|
+
* Allow machine authentication. Is required only if `eapFastUsePacs` is `true`.
|
|
879
876
|
*/
|
|
880
877
|
eapFastPacsAllowMachineAuthentication?: pulumi.Input<boolean>;
|
|
881
878
|
/**
|
|
882
|
-
* Authorization PAC TTL. Is required only if `
|
|
879
|
+
* Authorization PAC TTL. Is required only if `eapFastPacsStatelessSessionResume` is `true`.
|
|
883
880
|
*/
|
|
884
881
|
eapFastPacsAuthorizationPacTtl?: pulumi.Input<number>;
|
|
885
882
|
/**
|
|
886
|
-
* Authorization PAC TTL unit. Is required only if `
|
|
887
|
-
* `
|
|
883
|
+
* Authorization PAC TTL unit. Is required only if `eapFastPacsStatelessSessionResume` is `true`. - Choices: `SECONDS`,
|
|
884
|
+
* `MINUTES`, `HOURS`, `DAYS`, `WEEKS`
|
|
888
885
|
*/
|
|
889
886
|
eapFastPacsAuthorizationPacTtlUnit?: pulumi.Input<string>;
|
|
890
887
|
/**
|
|
891
|
-
* Machine PAC TTL. Is required only if `
|
|
888
|
+
* Machine PAC TTL. Is required only if `eapFastPacsAllowMachineAuthentication` is `true`.
|
|
892
889
|
*/
|
|
893
890
|
eapFastPacsMachinePacTtl?: pulumi.Input<number>;
|
|
894
891
|
/**
|
|
895
|
-
* Machine PAC TTL unit. Is required only if `
|
|
892
|
+
* Machine PAC TTL unit. Is required only if `eapFastPacsAllowMachineAuthentication` is `true`. - Choices: `SECONDS`,
|
|
896
893
|
* `MINUTES`, `HOURS`, `DAYS`, `WEEKS`
|
|
897
894
|
*/
|
|
898
895
|
eapFastPacsMachinePacTtlUnit?: pulumi.Input<string>;
|
|
899
896
|
/**
|
|
900
897
|
* Server returns access accept after authenticated provisioning. Is required only if
|
|
901
|
-
* `
|
|
898
|
+
* `eapFastPacsAllowAuthenticatedProvisioning` is `true`.
|
|
902
899
|
*/
|
|
903
900
|
eapFastPacsServerReturns?: pulumi.Input<boolean>;
|
|
904
901
|
/**
|
|
905
|
-
* Stateless session resume. Is required only if `
|
|
902
|
+
* Stateless session resume. Is required only if `eapFastUsePacs` is `true`.
|
|
906
903
|
*/
|
|
907
904
|
eapFastPacsStatelessSessionResume?: pulumi.Input<boolean>;
|
|
908
905
|
/**
|
|
909
|
-
* PACs tunnel PAC time to live. Is required only if `
|
|
906
|
+
* PACs tunnel PAC time to live. Is required only if `eapFastUsePacs` is `true`.
|
|
910
907
|
*/
|
|
911
908
|
eapFastPacsTunnelPacTtl?: pulumi.Input<number>;
|
|
912
909
|
/**
|
|
913
|
-
* PACs tunnel PAC time to live unit. Is required only if `
|
|
910
|
+
* PACs tunnel PAC time to live unit. Is required only if `eapFastUsePacs` is `true`. - Choices: `SECONDS`, `MINUTES`,
|
|
914
911
|
* `HOURS`, `DAYS`, `WEEKS`
|
|
915
912
|
*/
|
|
916
913
|
eapFastPacsTunnelPacTtlUnit?: pulumi.Input<string>;
|
|
917
914
|
/**
|
|
918
|
-
* Use proactive pac update percentage. Is required only if `
|
|
915
|
+
* Use proactive pac update percentage. Is required only if `eapFastUsePacs` is `true`. - Range: `1`-`100`
|
|
919
916
|
*/
|
|
920
917
|
eapFastPacsUseProactivePacUpdatePercentage?: pulumi.Input<number>;
|
|
921
918
|
/**
|
|
@@ -935,15 +932,15 @@ export interface AllowedProtocolsArgs {
|
|
|
935
932
|
*/
|
|
936
933
|
eapTlsLBit: pulumi.Input<boolean>;
|
|
937
934
|
/**
|
|
938
|
-
* Session ticket percentage. Is required only if `
|
|
935
|
+
* Session ticket percentage. Is required only if `eapTlsEnableStatelessSessionResume` is `true`. - Range: `1`-`100`
|
|
939
936
|
*/
|
|
940
937
|
eapTlsSessionTicketPercentage?: pulumi.Input<number>;
|
|
941
938
|
/**
|
|
942
|
-
* Session ticket TTL. Is required only if `
|
|
939
|
+
* Session ticket TTL. Is required only if `eapTlsEnableStatelessSessionResume` is `true`.
|
|
943
940
|
*/
|
|
944
941
|
eapTlsSessionTicketTtl?: pulumi.Input<number>;
|
|
945
942
|
/**
|
|
946
|
-
* Session ticket TTL unit. Is required only if `
|
|
943
|
+
* Session ticket TTL unit. Is required only if `eapTlsEnableStatelessSessionResume` is `true`. - Choices: `SECONDS`,
|
|
947
944
|
* `MINUTES`, `HOURS`, `DAYS`, `WEEKS`
|
|
948
945
|
*/
|
|
949
946
|
eapTlsSessionTicketTtlUnit?: pulumi.Input<string>;
|
|
@@ -960,11 +957,11 @@ export interface AllowedProtocolsArgs {
|
|
|
960
957
|
*/
|
|
961
958
|
eapTtlsEapMsChapV2?: pulumi.Input<boolean>;
|
|
962
959
|
/**
|
|
963
|
-
* Allow EAP MS CHAP v2 password change. Is required only if `
|
|
960
|
+
* Allow EAP MS CHAP v2 password change. Is required only if `eapTtlsEapMsChapV2` is `true`.
|
|
964
961
|
*/
|
|
965
962
|
eapTtlsEapMsChapV2PwdChange?: pulumi.Input<boolean>;
|
|
966
963
|
/**
|
|
967
|
-
* EAP MS CHAP v2 password change retries. Is required only if `
|
|
964
|
+
* EAP MS CHAP v2 password change retries. Is required only if `eapTtlsEapMsChapV2` is `true`. - Range: `0`-`3`
|
|
968
965
|
*/
|
|
969
966
|
eapTtlsEapMsChapV2PwdChangeRetries?: pulumi.Input<number>;
|
|
970
967
|
/**
|
|
@@ -988,11 +985,11 @@ export interface AllowedProtocolsArgs {
|
|
|
988
985
|
*/
|
|
989
986
|
peapAllowPeapEapGtc?: pulumi.Input<boolean>;
|
|
990
987
|
/**
|
|
991
|
-
* Allow PEAP EAP GTC password change. Is required only if `
|
|
988
|
+
* Allow PEAP EAP GTC password change. Is required only if `allowPeapEapGtc` is `true`.
|
|
992
989
|
*/
|
|
993
990
|
peapAllowPeapEapGtcPwdChange?: pulumi.Input<boolean>;
|
|
994
991
|
/**
|
|
995
|
-
* PEAP EAP GTC password change retries. Is required only if `
|
|
992
|
+
* PEAP EAP GTC password change retries. Is required only if `allowPeapEapGtc` is `true`. - Range: `0`-`3`
|
|
996
993
|
*/
|
|
997
994
|
peapAllowPeapEapGtcPwdChangeRetries?: pulumi.Input<number>;
|
|
998
995
|
/**
|
|
@@ -1000,11 +997,11 @@ export interface AllowedProtocolsArgs {
|
|
|
1000
997
|
*/
|
|
1001
998
|
peapAllowPeapEapMsChapV2?: pulumi.Input<boolean>;
|
|
1002
999
|
/**
|
|
1003
|
-
* Allow PEAP EAP MS CHAP v2 password change. Is required only if `
|
|
1000
|
+
* Allow PEAP EAP MS CHAP v2 password change. Is required only if `allowPeapEapMsChapV2` is `true`.
|
|
1004
1001
|
*/
|
|
1005
1002
|
peapAllowPeapEapMsChapV2PwdChange?: pulumi.Input<boolean>;
|
|
1006
1003
|
/**
|
|
1007
|
-
* Allow PEAP EAP MS CHAP v2 password change retries. Is required only if `
|
|
1004
|
+
* Allow PEAP EAP MS CHAP v2 password change retries. Is required only if `allowPeapEapMsChapV2` is `true`. - Range:
|
|
1008
1005
|
* `0`-`3`
|
|
1009
1006
|
*/
|
|
1010
1007
|
peapAllowPeapEapMsChapV2PwdChangeRetries?: pulumi.Input<number>;
|
|
@@ -1013,7 +1010,7 @@ export interface AllowedProtocolsArgs {
|
|
|
1013
1010
|
*/
|
|
1014
1011
|
peapAllowPeapEapTls?: pulumi.Input<boolean>;
|
|
1015
1012
|
/**
|
|
1016
|
-
* Allow PEAP EAP TLS authentication of expired certificates. Is required only if `
|
|
1013
|
+
* Allow PEAP EAP TLS authentication of expired certificates. Is required only if `peapAllowPeapEapTls` is `true`.
|
|
1017
1014
|
*/
|
|
1018
1015
|
peapAllowPeapEapTlsAuthOfExpiredCerts?: pulumi.Input<boolean>;
|
|
1019
1016
|
/**
|
|
@@ -1053,11 +1050,11 @@ export interface AllowedProtocolsArgs {
|
|
|
1053
1050
|
*/
|
|
1054
1051
|
teapEapMsChapV2?: pulumi.Input<boolean>;
|
|
1055
1052
|
/**
|
|
1056
|
-
* Allow EAP MS CHAP v2 password change. Is required only if `
|
|
1053
|
+
* Allow EAP MS CHAP v2 password change. Is required only if `teapEapMsChapV2` is `true`.
|
|
1057
1054
|
*/
|
|
1058
1055
|
teapEapMsChapV2PwdChange?: pulumi.Input<boolean>;
|
|
1059
1056
|
/**
|
|
1060
|
-
* EAP MS CHAP v2 password change retries. Is required only if `
|
|
1057
|
+
* EAP MS CHAP v2 password change retries. Is required only if `teapEapMsChapV2` is `true`. - Range: `0`-`3`
|
|
1061
1058
|
*/
|
|
1062
1059
|
teapEapMsChapV2PwdChangeRetries?: pulumi.Input<number>;
|
|
1063
1060
|
/**
|
|
@@ -1065,7 +1062,7 @@ export interface AllowedProtocolsArgs {
|
|
|
1065
1062
|
*/
|
|
1066
1063
|
teapEapTls?: pulumi.Input<boolean>;
|
|
1067
1064
|
/**
|
|
1068
|
-
* Allow EAP TLS authentication of expired certs. Is required only if `
|
|
1065
|
+
* Allow EAP TLS authentication of expired certs. Is required only if `teapEapTls` is `true`.
|
|
1069
1066
|
*/
|
|
1070
1067
|
teapEapTlsAuthOfExpiredCerts?: pulumi.Input<boolean>;
|
|
1071
1068
|
/**
|