@aws-sdk/client-workspaces-thin-client 3.533.0 → 3.535.0

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 (42) hide show
  1. package/README.md +1 -1
  2. package/dist-cjs/index.js +0 -1
  3. package/dist-es/protocols/Aws_restJson1.js +0 -1
  4. package/dist-types/WorkSpacesThinClient.d.ts +5 -2
  5. package/dist-types/WorkSpacesThinClientClient.d.ts +2 -2
  6. package/dist-types/commands/CreateEnvironmentCommand.d.ts +2 -1
  7. package/dist-types/commands/DeleteDeviceCommand.d.ts +2 -1
  8. package/dist-types/commands/DeleteEnvironmentCommand.d.ts +2 -1
  9. package/dist-types/commands/DeregisterDeviceCommand.d.ts +2 -1
  10. package/dist-types/commands/GetDeviceCommand.d.ts +2 -1
  11. package/dist-types/commands/GetEnvironmentCommand.d.ts +2 -1
  12. package/dist-types/commands/GetSoftwareSetCommand.d.ts +2 -1
  13. package/dist-types/commands/ListDevicesCommand.d.ts +2 -1
  14. package/dist-types/commands/ListEnvironmentsCommand.d.ts +2 -1
  15. package/dist-types/commands/ListSoftwareSetsCommand.d.ts +2 -1
  16. package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
  17. package/dist-types/commands/TagResourceCommand.d.ts +2 -1
  18. package/dist-types/commands/UntagResourceCommand.d.ts +2 -1
  19. package/dist-types/commands/UpdateDeviceCommand.d.ts +2 -2
  20. package/dist-types/commands/UpdateEnvironmentCommand.d.ts +2 -1
  21. package/dist-types/commands/UpdateSoftwareSetCommand.d.ts +2 -1
  22. package/dist-types/index.d.ts +1 -1
  23. package/dist-types/models/models_0.d.ts +188 -194
  24. package/dist-types/ts3.4/WorkSpacesThinClient.d.ts +3 -0
  25. package/dist-types/ts3.4/commands/CreateEnvironmentCommand.d.ts +9 -0
  26. package/dist-types/ts3.4/commands/DeleteDeviceCommand.d.ts +9 -0
  27. package/dist-types/ts3.4/commands/DeleteEnvironmentCommand.d.ts +9 -0
  28. package/dist-types/ts3.4/commands/DeregisterDeviceCommand.d.ts +9 -0
  29. package/dist-types/ts3.4/commands/GetDeviceCommand.d.ts +9 -0
  30. package/dist-types/ts3.4/commands/GetEnvironmentCommand.d.ts +9 -0
  31. package/dist-types/ts3.4/commands/GetSoftwareSetCommand.d.ts +9 -0
  32. package/dist-types/ts3.4/commands/ListDevicesCommand.d.ts +9 -0
  33. package/dist-types/ts3.4/commands/ListEnvironmentsCommand.d.ts +9 -0
  34. package/dist-types/ts3.4/commands/ListSoftwareSetsCommand.d.ts +9 -0
  35. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +9 -0
  36. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +9 -0
  37. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +9 -0
  38. package/dist-types/ts3.4/commands/UpdateDeviceCommand.d.ts +9 -0
  39. package/dist-types/ts3.4/commands/UpdateEnvironmentCommand.d.ts +9 -0
  40. package/dist-types/ts3.4/commands/UpdateSoftwareSetCommand.d.ts +9 -0
  41. package/dist-types/ts3.4/models/models_0.d.ts +0 -1
  42. package/package.json +40 -40
@@ -1,8 +1,8 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
2
  import { WorkSpacesThinClientServiceException as __BaseException } from "./WorkSpacesThinClientServiceException";
3
3
  /**
4
- * @public
5
4
  * <p>You do not have sufficient access to perform this action.</p>
5
+ * @public
6
6
  */
7
7
  export declare class AccessDeniedException extends __BaseException {
8
8
  readonly name: "AccessDeniedException";
@@ -25,22 +25,22 @@ export declare const ApplyTimeOf: {
25
25
  */
26
26
  export type ApplyTimeOf = (typeof ApplyTimeOf)[keyof typeof ApplyTimeOf];
27
27
  /**
28
- * @public
29
28
  * <p>The requested operation would cause a conflict with the current state of a service
30
29
  * resource associated with the request. Resolve the conflict before retrying this
31
30
  * request.</p>
31
+ * @public
32
32
  */
33
33
  export declare class ConflictException extends __BaseException {
34
34
  readonly name: "ConflictException";
35
35
  readonly $fault: "client";
36
36
  /**
37
- * @public
38
37
  * <p>The ID of the resource associated with the request.</p>
38
+ * @public
39
39
  */
40
40
  resourceId?: string;
41
41
  /**
42
- * @public
43
42
  * <p>The type of the resource associated with the request.</p>
43
+ * @public
44
44
  */
45
45
  resourceType?: string;
46
46
  /**
@@ -78,45 +78,45 @@ export declare const MaintenanceWindowType: {
78
78
  */
79
79
  export type MaintenanceWindowType = (typeof MaintenanceWindowType)[keyof typeof MaintenanceWindowType];
80
80
  /**
81
- * @public
82
81
  * <p>Describes the maintenance window for a thin client device.</p>
82
+ * @public
83
83
  */
84
84
  export interface MaintenanceWindow {
85
85
  /**
86
- * @public
87
86
  * <p>An option to select the default or custom maintenance window.</p>
87
+ * @public
88
88
  */
89
89
  type?: MaintenanceWindowType;
90
90
  /**
91
- * @public
92
91
  * <p>The hour for the maintenance window start (<code>00</code>-<code>23</code>).</p>
92
+ * @public
93
93
  */
94
94
  startTimeHour?: number;
95
95
  /**
96
- * @public
97
96
  * <p>The minutes past the hour for the maintenance window start
98
97
  * (<code>00</code>-<code>59</code>).</p>
98
+ * @public
99
99
  */
100
100
  startTimeMinute?: number;
101
101
  /**
102
- * @public
103
102
  * <p>The hour for the maintenance window end (<code>00</code>-<code>23</code>).</p>
103
+ * @public
104
104
  */
105
105
  endTimeHour?: number;
106
106
  /**
107
- * @public
108
107
  * <p>The minutes for the maintenance window end (<code>00</code>-<code>59</code>).</p>
108
+ * @public
109
109
  */
110
110
  endTimeMinute?: number;
111
111
  /**
112
- * @public
113
112
  * <p>The days of the week during which the maintenance window is open.</p>
113
+ * @public
114
114
  */
115
115
  daysOfTheWeek?: DayOfWeek[];
116
116
  /**
117
- * @public
118
117
  * <p>The option to set the maintenance window during the device local time or Universal
119
118
  * Coordinated Time (UTC).</p>
119
+ * @public
120
120
  */
121
121
  applyTimeOf?: ApplyTimeOf;
122
122
  }
@@ -149,50 +149,49 @@ export type SoftwareSetUpdateSchedule = (typeof SoftwareSetUpdateSchedule)[keyof
149
149
  */
150
150
  export interface CreateEnvironmentRequest {
151
151
  /**
152
- * @public
153
152
  * <p>The name for the environment.</p>
153
+ * @public
154
154
  */
155
155
  name?: string;
156
156
  /**
157
- * @public
158
157
  * <p>The Amazon Resource Name (ARN) of the desktop to stream from Amazon WorkSpaces,
159
158
  * WorkSpaces Web, or AppStream 2.0.</p>
159
+ * @public
160
160
  */
161
161
  desktopArn: string | undefined;
162
162
  /**
163
- * @public
164
163
  * <p>The URL for the identity provider login (only for environments that use AppStream 2.0).</p>
164
+ * @public
165
165
  */
166
166
  desktopEndpoint?: string;
167
167
  /**
168
- * @public
169
168
  * <p>An option to define if software updates should be applied within a maintenance
170
169
  * window.</p>
170
+ * @public
171
171
  */
172
172
  softwareSetUpdateSchedule?: SoftwareSetUpdateSchedule;
173
173
  /**
174
- * @public
175
174
  * <p>A specification for a time window to apply software updates.</p>
175
+ * @public
176
176
  */
177
177
  maintenanceWindow?: MaintenanceWindow;
178
178
  /**
179
- * @public
180
179
  * <p>An option to define which software updates to apply.</p>
180
+ * @public
181
181
  */
182
182
  softwareSetUpdateMode?: SoftwareSetUpdateMode;
183
183
  /**
184
- * @public
185
184
  * <p>The ID of the software set to apply.</p>
185
+ * @public
186
186
  */
187
187
  desiredSoftwareSetId?: string;
188
188
  /**
189
- * @public
190
189
  * <p>The Amazon Resource Name (ARN) of the Key Management Service key to use to encrypt the
191
190
  * environment.</p>
191
+ * @public
192
192
  */
193
193
  kmsKeyArn?: string;
194
194
  /**
195
- * @public
196
195
  * <p>Specifies a unique, case-sensitive identifier that you provide to ensure the idempotency
197
196
  * of the request. This lets you safely retry the request without accidentally performing the
198
197
  * same operation a second time. Passing the same value to a later call to an operation
@@ -203,11 +202,12 @@ export interface CreateEnvironmentRequest {
203
202
  * you.</p>
204
203
  * <p>If you retry the operation with the same <code>ClientToken</code>, but with different
205
204
  * parameters, the retry fails with an <code>IdempotentParameterMismatch</code> error.</p>
205
+ * @public
206
206
  */
207
207
  clientToken?: string;
208
208
  /**
209
- * @public
210
209
  * <p>A map of the key-value pairs of the tag or tags to assign to the resource.</p>
210
+ * @public
211
211
  */
212
212
  tags?: Record<string, string>;
213
213
  }
@@ -225,101 +225,101 @@ export declare const DesktopType: {
225
225
  */
226
226
  export type DesktopType = (typeof DesktopType)[keyof typeof DesktopType];
227
227
  /**
228
- * @public
229
228
  * <p>The resource and internal ID of a resource to tag.</p>
229
+ * @public
230
230
  */
231
231
  export interface EmbeddedTag {
232
232
  /**
233
- * @public
234
233
  * <p>The Amazon Resource Name (ARN) of a resource to tag.</p>
234
+ * @public
235
235
  */
236
236
  resourceArn?: string;
237
237
  /**
238
- * @public
239
238
  * <p>The internal ID of a resource to tag.</p>
239
+ * @public
240
240
  */
241
241
  internalId?: string;
242
242
  }
243
243
  /**
244
- * @public
245
244
  * <p>Describes an environment.</p>
245
+ * @public
246
246
  */
247
247
  export interface EnvironmentSummary {
248
248
  /**
249
- * @public
250
249
  * <p>The ID of the environment.</p>
250
+ * @public
251
251
  */
252
252
  id?: string;
253
253
  /**
254
- * @public
255
254
  * <p>The name of the environment.</p>
255
+ * @public
256
256
  */
257
257
  name?: string;
258
258
  /**
259
- * @public
260
259
  * <p>The Amazon Resource Name (ARN) of the desktop to stream from Amazon WorkSpaces,
261
260
  * WorkSpaces Web, or AppStream 2.0.</p>
261
+ * @public
262
262
  */
263
263
  desktopArn?: string;
264
264
  /**
265
- * @public
266
265
  * <p>The URL for the identity provider login (only for environments that use AppStream 2.0).</p>
266
+ * @public
267
267
  */
268
268
  desktopEndpoint?: string;
269
269
  /**
270
- * @public
271
270
  * <p>The type of streaming desktop for the environment.</p>
271
+ * @public
272
272
  */
273
273
  desktopType?: DesktopType;
274
274
  /**
275
- * @public
276
275
  * <p>The activation code to register a device to the environment.</p>
276
+ * @public
277
277
  */
278
278
  activationCode?: string;
279
279
  /**
280
- * @public
281
280
  * <p>An option to define if software updates should be applied within a maintenance
282
281
  * window.</p>
282
+ * @public
283
283
  */
284
284
  softwareSetUpdateSchedule?: SoftwareSetUpdateSchedule;
285
285
  /**
286
- * @public
287
286
  * <p>A specification for a time window to apply software updates.</p>
287
+ * @public
288
288
  */
289
289
  maintenanceWindow?: MaintenanceWindow;
290
290
  /**
291
- * @public
292
291
  * <p>An option to define which software updates to apply.</p>
292
+ * @public
293
293
  */
294
294
  softwareSetUpdateMode?: SoftwareSetUpdateMode;
295
295
  /**
296
- * @public
297
296
  * <p>The ID of the software set to apply.</p>
297
+ * @public
298
298
  */
299
299
  desiredSoftwareSetId?: string;
300
300
  /**
301
- * @public
302
301
  * <p>The ID of the software set that is pending to be installed.</p>
302
+ * @public
303
303
  */
304
304
  pendingSoftwareSetId?: string;
305
305
  /**
306
- * @public
307
306
  * <p>The timestamp of when the environment was created.</p>
307
+ * @public
308
308
  */
309
309
  createdAt?: Date;
310
310
  /**
311
- * @public
312
311
  * <p>The timestamp of when the device was updated.</p>
312
+ * @public
313
313
  */
314
314
  updatedAt?: Date;
315
315
  /**
316
- * @public
317
316
  * <p>The Amazon Resource Name (ARN) of the environment.</p>
317
+ * @public
318
318
  */
319
319
  arn?: string;
320
320
  /**
321
- * @public
322
321
  * <p>The tag keys and optional values for the resource.</p>
322
+ * @public
323
323
  */
324
324
  tags?: EmbeddedTag;
325
325
  }
@@ -328,21 +328,21 @@ export interface EnvironmentSummary {
328
328
  */
329
329
  export interface CreateEnvironmentResponse {
330
330
  /**
331
- * @public
332
331
  * <p>Describes an environment.</p>
332
+ * @public
333
333
  */
334
334
  environment?: EnvironmentSummary;
335
335
  }
336
336
  /**
337
- * @public
338
337
  * <p>The server encountered an internal error and is unable to complete the request.</p>
338
+ * @public
339
339
  */
340
340
  export declare class InternalServerException extends __BaseException {
341
341
  readonly name: "InternalServerException";
342
342
  readonly $fault: "server";
343
343
  /**
344
- * @public
345
344
  * <p>The number of seconds to wait before retrying the next request.</p>
345
+ * @public
346
346
  */
347
347
  retryAfterSeconds?: number;
348
348
  /**
@@ -351,20 +351,20 @@ export declare class InternalServerException extends __BaseException {
351
351
  constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
352
352
  }
353
353
  /**
354
- * @public
355
354
  * <p>The resource specified in the request was not found.</p>
355
+ * @public
356
356
  */
357
357
  export declare class ResourceNotFoundException extends __BaseException {
358
358
  readonly name: "ResourceNotFoundException";
359
359
  readonly $fault: "client";
360
360
  /**
361
- * @public
362
361
  * <p>The ID of the resource associated with the request.</p>
362
+ * @public
363
363
  */
364
364
  resourceId?: string;
365
365
  /**
366
- * @public
367
366
  * <p>The type of the resource associated with the request.</p>
367
+ * @public
368
368
  */
369
369
  resourceType?: string;
370
370
  /**
@@ -373,30 +373,30 @@ export declare class ResourceNotFoundException extends __BaseException {
373
373
  constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
374
374
  }
375
375
  /**
376
- * @public
377
376
  * <p>Your request exceeds a service quota.</p>
377
+ * @public
378
378
  */
379
379
  export declare class ServiceQuotaExceededException extends __BaseException {
380
380
  readonly name: "ServiceQuotaExceededException";
381
381
  readonly $fault: "client";
382
382
  /**
383
- * @public
384
383
  * <p>The ID of the resource that exceeds the service quota.</p>
384
+ * @public
385
385
  */
386
386
  resourceId?: string;
387
387
  /**
388
- * @public
389
388
  * <p>The type of the resource that exceeds the service quota.</p>
389
+ * @public
390
390
  */
391
391
  resourceType?: string;
392
392
  /**
393
- * @public
394
393
  * <p>The code for the service in <a href="https://docs.aws.amazon.com/servicequotas/latest/userguide/intro.html">Service Quotas</a>.</p>
394
+ * @public
395
395
  */
396
396
  serviceCode?: string;
397
397
  /**
398
- * @public
399
398
  * <p>The code for the quota in <a href="https://docs.aws.amazon.com/servicequotas/latest/userguide/intro.html">Service Quotas</a>.</p>
399
+ * @public
400
400
  */
401
401
  quotaCode?: string;
402
402
  /**
@@ -405,25 +405,25 @@ export declare class ServiceQuotaExceededException extends __BaseException {
405
405
  constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
406
406
  }
407
407
  /**
408
- * @public
409
408
  * <p>The request was denied due to request throttling.</p>
409
+ * @public
410
410
  */
411
411
  export declare class ThrottlingException extends __BaseException {
412
412
  readonly name: "ThrottlingException";
413
413
  readonly $fault: "client";
414
414
  /**
415
- * @public
416
415
  * <p>The code for the service in <a href="https://docs.aws.amazon.com/servicequotas/latest/userguide/intro.html">Service Quotas</a>.</p>
416
+ * @public
417
417
  */
418
418
  serviceCode?: string;
419
419
  /**
420
- * @public
421
420
  * <p>The code for the quota in <a href="https://docs.aws.amazon.com/servicequotas/latest/userguide/intro.html">Service Quotas</a>.</p>
421
+ * @public
422
422
  */
423
423
  quotaCode?: string;
424
424
  /**
425
- * @public
426
425
  * <p>The number of seconds to wait before retrying the next request.</p>
426
+ * @public
427
427
  */
428
428
  retryAfterSeconds?: number;
429
429
  /**
@@ -432,18 +432,18 @@ export declare class ThrottlingException extends __BaseException {
432
432
  constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
433
433
  }
434
434
  /**
435
- * @public
436
435
  * <p>Describes a validation exception.</p>
436
+ * @public
437
437
  */
438
438
  export interface ValidationExceptionField {
439
439
  /**
440
- * @public
441
440
  * <p>The name of the exception.</p>
441
+ * @public
442
442
  */
443
443
  name: string | undefined;
444
444
  /**
445
- * @public
446
445
  * <p>A message that describes the reason for the exception.</p>
446
+ * @public
447
447
  */
448
448
  message: string | undefined;
449
449
  }
@@ -462,20 +462,20 @@ export declare const ValidationExceptionReason: {
462
462
  */
463
463
  export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
464
464
  /**
465
- * @public
466
465
  * <p>The input fails to satisfy the specified constraints.</p>
466
+ * @public
467
467
  */
468
468
  export declare class ValidationException extends __BaseException {
469
469
  readonly name: "ValidationException";
470
470
  readonly $fault: "client";
471
471
  /**
472
- * @public
473
472
  * <p>The reason for the exception.</p>
473
+ * @public
474
474
  */
475
475
  reason?: ValidationExceptionReason;
476
476
  /**
477
- * @public
478
477
  * <p>A list of fields that didn't validate.</p>
478
+ * @public
479
479
  */
480
480
  fieldList?: ValidationExceptionField[];
481
481
  /**
@@ -488,12 +488,11 @@ export declare class ValidationException extends __BaseException {
488
488
  */
489
489
  export interface DeleteDeviceRequest {
490
490
  /**
491
- * @public
492
491
  * <p>The ID of the device to delete.</p>
492
+ * @public
493
493
  */
494
494
  id: string | undefined;
495
495
  /**
496
- * @public
497
496
  * <p>Specifies a unique, case-sensitive identifier that you provide to ensure the idempotency
498
497
  * of the request. This lets you safely retry the request without accidentally performing the
499
498
  * same operation a second time. Passing the same value to a later call to an operation
@@ -504,6 +503,7 @@ export interface DeleteDeviceRequest {
504
503
  * you.</p>
505
504
  * <p>If you retry the operation with the same <code>ClientToken</code>, but with different
506
505
  * parameters, the retry fails with an <code>IdempotentParameterMismatch</code> error.</p>
506
+ * @public
507
507
  */
508
508
  clientToken?: string;
509
509
  }
@@ -517,12 +517,11 @@ export interface DeleteDeviceResponse {
517
517
  */
518
518
  export interface DeleteEnvironmentRequest {
519
519
  /**
520
- * @public
521
520
  * <p>The ID of the environment to delete.</p>
521
+ * @public
522
522
  */
523
523
  id: string | undefined;
524
524
  /**
525
- * @public
526
525
  * <p>Specifies a unique, case-sensitive identifier that you provide to ensure the idempotency
527
526
  * of the request. This lets you safely retry the request without accidentally performing the
528
527
  * same operation a second time. Passing the same value to a later call to an operation
@@ -533,6 +532,7 @@ export interface DeleteEnvironmentRequest {
533
532
  * you.</p>
534
533
  * <p>If you retry the operation with the same <code>ClientToken</code>, but with different
535
534
  * parameters, the retry fails with an <code>IdempotentParameterMismatch</code> error.</p>
535
+ * @public
536
536
  */
537
537
  clientToken?: string;
538
538
  }
@@ -558,17 +558,16 @@ export type TargetDeviceStatus = (typeof TargetDeviceStatus)[keyof typeof Target
558
558
  */
559
559
  export interface DeregisterDeviceRequest {
560
560
  /**
561
- * @public
562
561
  * <p>The ID of the device to deregister.</p>
562
+ * @public
563
563
  */
564
564
  id: string | undefined;
565
565
  /**
566
- * @public
567
566
  * <p>The desired new status for the device.</p>
567
+ * @public
568
568
  */
569
569
  targetDeviceStatus?: TargetDeviceStatus;
570
570
  /**
571
- * @public
572
571
  * <p>Specifies a unique, case-sensitive identifier that you provide to ensure the idempotency
573
572
  * of the request. This lets you safely retry the request without accidentally performing the
574
573
  * same operation a second time. Passing the same value to a later call to an operation
@@ -579,6 +578,7 @@ export interface DeregisterDeviceRequest {
579
578
  * you.</p>
580
579
  * <p>If you retry the operation with the same <code>ClientToken</code>, but with different
581
580
  * parameters, the retry fails with an <code>IdempotentParameterMismatch</code> error.</p>
581
+ * @public
582
582
  */
583
583
  clientToken?: string;
584
584
  }
@@ -628,203 +628,203 @@ export declare const DeviceStatus: {
628
628
  */
629
629
  export type DeviceStatus = (typeof DeviceStatus)[keyof typeof DeviceStatus];
630
630
  /**
631
- * @public
632
631
  * <p>Describes a thin client device.</p>
632
+ * @public
633
633
  */
634
634
  export interface Device {
635
635
  /**
636
- * @public
637
636
  * <p>The ID of the device.</p>
637
+ * @public
638
638
  */
639
639
  id?: string;
640
640
  /**
641
- * @public
642
641
  * <p>The hardware serial number of the device.</p>
642
+ * @public
643
643
  */
644
644
  serialNumber?: string;
645
645
  /**
646
- * @public
647
646
  * <p>The name of the device.</p>
647
+ * @public
648
648
  */
649
649
  name?: string;
650
650
  /**
651
- * @public
652
651
  * <p>The model number of the device.</p>
652
+ * @public
653
653
  */
654
654
  model?: string;
655
655
  /**
656
- * @public
657
656
  * <p>The ID of the environment the device is associated with.</p>
657
+ * @public
658
658
  */
659
659
  environmentId?: string;
660
660
  /**
661
- * @public
662
661
  * <p>The status of the device.</p>
662
+ * @public
663
663
  */
664
664
  status?: DeviceStatus;
665
665
  /**
666
- * @public
667
666
  * <p>The ID of the software set currently installed on the device.</p>
667
+ * @public
668
668
  */
669
669
  currentSoftwareSetId?: string;
670
670
  /**
671
- * @public
672
671
  * <p>The version of the software set currently installed on the device.</p>
672
+ * @public
673
673
  */
674
674
  currentSoftwareSetVersion?: string;
675
675
  /**
676
- * @public
677
676
  * <p>The ID of the software set which the device has been set to.</p>
677
+ * @public
678
678
  */
679
679
  desiredSoftwareSetId?: string;
680
680
  /**
681
- * @public
682
681
  * <p>The ID of the software set that is pending to be installed on the device.</p>
682
+ * @public
683
683
  */
684
684
  pendingSoftwareSetId?: string;
685
685
  /**
686
- * @public
687
686
  * <p>The version of the software set that is pending to be installed on the device.</p>
687
+ * @public
688
688
  */
689
689
  pendingSoftwareSetVersion?: string;
690
690
  /**
691
- * @public
692
691
  * <p>An option to define if software updates should be applied within a maintenance
693
692
  * window.</p>
693
+ * @public
694
694
  */
695
695
  softwareSetUpdateSchedule?: SoftwareSetUpdateSchedule;
696
696
  /**
697
- * @public
698
697
  * <p>Describes if the software currently installed on the device is a supported
699
698
  * version.</p>
699
+ * @public
700
700
  */
701
701
  softwareSetComplianceStatus?: DeviceSoftwareSetComplianceStatus;
702
702
  /**
703
- * @public
704
703
  * <p>Describes if the device has a supported version of software installed.</p>
704
+ * @public
705
705
  */
706
706
  softwareSetUpdateStatus?: SoftwareSetUpdateStatus;
707
707
  /**
708
- * @public
709
708
  * <p>The timestamp of the most recent session on the device.</p>
709
+ * @public
710
710
  */
711
711
  lastConnectedAt?: Date;
712
712
  /**
713
- * @public
714
713
  * <p>The timestamp of the most recent check-in of the device.</p>
714
+ * @public
715
715
  */
716
716
  lastPostureAt?: Date;
717
717
  /**
718
- * @public
719
718
  * <p>The timestamp of when the device was created.</p>
719
+ * @public
720
720
  */
721
721
  createdAt?: Date;
722
722
  /**
723
- * @public
724
723
  * <p>The timestamp of when the device was updated.</p>
724
+ * @public
725
725
  */
726
726
  updatedAt?: Date;
727
727
  /**
728
- * @public
729
728
  * <p>The Amazon Resource Name (ARN) of the device.</p>
729
+ * @public
730
730
  */
731
731
  arn?: string;
732
732
  /**
733
- * @public
734
733
  * <p>The Amazon Resource Name (ARN) of the Key Management Service key used to encrypt the
735
734
  * device.</p>
735
+ * @public
736
736
  */
737
737
  kmsKeyArn?: string;
738
738
  /**
739
- * @public
740
739
  * <p>The tag keys and optional values for the resource.</p>
740
+ * @public
741
741
  */
742
742
  tags?: EmbeddedTag;
743
743
  }
744
744
  /**
745
- * @public
746
745
  * <p>Describes a thin client device.</p>
746
+ * @public
747
747
  */
748
748
  export interface DeviceSummary {
749
749
  /**
750
- * @public
751
750
  * <p>The ID of the device.</p>
751
+ * @public
752
752
  */
753
753
  id?: string;
754
754
  /**
755
- * @public
756
755
  * <p>The hardware serial number of the device.</p>
756
+ * @public
757
757
  */
758
758
  serialNumber?: string;
759
759
  /**
760
- * @public
761
760
  * <p>The name of the device.</p>
761
+ * @public
762
762
  */
763
763
  name?: string;
764
764
  /**
765
- * @public
766
765
  * <p>The model number of the device.</p>
766
+ * @public
767
767
  */
768
768
  model?: string;
769
769
  /**
770
- * @public
771
770
  * <p>The ID of the environment the device is associated with.</p>
771
+ * @public
772
772
  */
773
773
  environmentId?: string;
774
774
  /**
775
- * @public
776
775
  * <p>The status of the device.</p>
776
+ * @public
777
777
  */
778
778
  status?: DeviceStatus;
779
779
  /**
780
- * @public
781
780
  * <p>The ID of the software set currently installed on the device.</p>
781
+ * @public
782
782
  */
783
783
  currentSoftwareSetId?: string;
784
784
  /**
785
- * @public
786
785
  * <p>The ID of the software set which the device has been set to.</p>
786
+ * @public
787
787
  */
788
788
  desiredSoftwareSetId?: string;
789
789
  /**
790
- * @public
791
790
  * <p>The ID of the software set that is pending to be installed on the device.</p>
791
+ * @public
792
792
  */
793
793
  pendingSoftwareSetId?: string;
794
794
  /**
795
- * @public
796
795
  * <p>An option to define if software updates should be applied within a maintenance
797
796
  * window.</p>
797
+ * @public
798
798
  */
799
799
  softwareSetUpdateSchedule?: SoftwareSetUpdateSchedule;
800
800
  /**
801
- * @public
802
801
  * <p>The timestamp of the most recent session on the device.</p>
802
+ * @public
803
803
  */
804
804
  lastConnectedAt?: Date;
805
805
  /**
806
- * @public
807
806
  * <p>The timestamp of the most recent check-in of the device.</p>
807
+ * @public
808
808
  */
809
809
  lastPostureAt?: Date;
810
810
  /**
811
- * @public
812
811
  * <p>The timestamp of when the device was created.</p>
812
+ * @public
813
813
  */
814
814
  createdAt?: Date;
815
815
  /**
816
- * @public
817
816
  * <p>The timestamp of when the device was updated.</p>
817
+ * @public
818
818
  */
819
819
  updatedAt?: Date;
820
820
  /**
821
- * @public
822
821
  * <p>The Amazon Resource Name (ARN) of the device.</p>
822
+ * @public
823
823
  */
824
824
  arn?: string;
825
825
  /**
826
- * @public
827
826
  * <p>The tag keys and optional values for the resource.</p>
827
+ * @public
828
828
  */
829
829
  tags?: EmbeddedTag;
830
830
  }
@@ -842,107 +842,107 @@ export declare const EnvironmentSoftwareSetComplianceStatus: {
842
842
  */
843
843
  export type EnvironmentSoftwareSetComplianceStatus = (typeof EnvironmentSoftwareSetComplianceStatus)[keyof typeof EnvironmentSoftwareSetComplianceStatus];
844
844
  /**
845
- * @public
846
845
  * <p>Describes an environment.</p>
846
+ * @public
847
847
  */
848
848
  export interface Environment {
849
849
  /**
850
- * @public
851
850
  * <p>The ID of the environment.</p>
851
+ * @public
852
852
  */
853
853
  id?: string;
854
854
  /**
855
- * @public
856
855
  * <p>The name of the environment.</p>
856
+ * @public
857
857
  */
858
858
  name?: string;
859
859
  /**
860
- * @public
861
860
  * <p>The Amazon Resource Name (ARN) of the desktop to stream from Amazon WorkSpaces,
862
861
  * WorkSpaces Web, or AppStream 2.0.</p>
862
+ * @public
863
863
  */
864
864
  desktopArn?: string;
865
865
  /**
866
- * @public
867
866
  * <p>The URL for the identity provider login (only for environments that use AppStream 2.0).</p>
867
+ * @public
868
868
  */
869
869
  desktopEndpoint?: string;
870
870
  /**
871
- * @public
872
871
  * <p>The type of streaming desktop for the environment.</p>
872
+ * @public
873
873
  */
874
874
  desktopType?: DesktopType;
875
875
  /**
876
- * @public
877
876
  * <p>The activation code to register a device to the environment.</p>
877
+ * @public
878
878
  */
879
879
  activationCode?: string;
880
880
  /**
881
- * @public
882
881
  * <p>The number of devices registered to the environment.</p>
882
+ * @public
883
883
  */
884
884
  registeredDevicesCount?: number;
885
885
  /**
886
- * @public
887
886
  * <p>An option to define if software updates should be applied within a maintenance
888
887
  * window.</p>
888
+ * @public
889
889
  */
890
890
  softwareSetUpdateSchedule?: SoftwareSetUpdateSchedule;
891
891
  /**
892
- * @public
893
892
  * <p>A specification for a time window to apply software updates.</p>
893
+ * @public
894
894
  */
895
895
  maintenanceWindow?: MaintenanceWindow;
896
896
  /**
897
- * @public
898
897
  * <p>An option to define which software updates to apply.</p>
898
+ * @public
899
899
  */
900
900
  softwareSetUpdateMode?: SoftwareSetUpdateMode;
901
901
  /**
902
- * @public
903
902
  * <p>The ID of the software set to apply.</p>
903
+ * @public
904
904
  */
905
905
  desiredSoftwareSetId?: string;
906
906
  /**
907
- * @public
908
907
  * <p>The ID of the software set that is pending to be installed.</p>
908
+ * @public
909
909
  */
910
910
  pendingSoftwareSetId?: string;
911
911
  /**
912
- * @public
913
912
  * <p>The version of the software set that is pending to be installed.</p>
913
+ * @public
914
914
  */
915
915
  pendingSoftwareSetVersion?: string;
916
916
  /**
917
- * @public
918
917
  * <p>Describes if the software currently installed on all devices in the environment is a
919
918
  * supported version.</p>
919
+ * @public
920
920
  */
921
921
  softwareSetComplianceStatus?: EnvironmentSoftwareSetComplianceStatus;
922
922
  /**
923
- * @public
924
923
  * <p>The timestamp of when the environment was created.</p>
924
+ * @public
925
925
  */
926
926
  createdAt?: Date;
927
927
  /**
928
- * @public
929
928
  * <p>The timestamp of when the device was updated.</p>
929
+ * @public
930
930
  */
931
931
  updatedAt?: Date;
932
932
  /**
933
- * @public
934
933
  * <p>The Amazon Resource Name (ARN) of the environment.</p>
934
+ * @public
935
935
  */
936
936
  arn?: string;
937
937
  /**
938
- * @public
939
938
  * <p>The Amazon Resource Name (ARN) of the Key Management Service key used to encrypt the
940
939
  * environment.</p>
940
+ * @public
941
941
  */
942
942
  kmsKeyArn?: string;
943
943
  /**
944
- * @public
945
944
  * <p>The tag keys and optional values for the resource.</p>
945
+ * @public
946
946
  */
947
947
  tags?: EmbeddedTag;
948
948
  }
@@ -951,8 +951,8 @@ export interface Environment {
951
951
  */
952
952
  export interface GetDeviceRequest {
953
953
  /**
954
- * @public
955
954
  * <p>The ID of the device for which to return information.</p>
955
+ * @public
956
956
  */
957
957
  id: string | undefined;
958
958
  }
@@ -961,8 +961,8 @@ export interface GetDeviceRequest {
961
961
  */
962
962
  export interface GetDeviceResponse {
963
963
  /**
964
- * @public
965
964
  * <p>Describes an device.</p>
965
+ * @public
966
966
  */
967
967
  device?: Device;
968
968
  }
@@ -971,8 +971,8 @@ export interface GetDeviceResponse {
971
971
  */
972
972
  export interface GetEnvironmentRequest {
973
973
  /**
974
- * @public
975
974
  * <p>The ID of the environment for which to return information.</p>
975
+ * @public
976
976
  */
977
977
  id: string | undefined;
978
978
  }
@@ -981,8 +981,8 @@ export interface GetEnvironmentRequest {
981
981
  */
982
982
  export interface GetEnvironmentResponse {
983
983
  /**
984
- * @public
985
984
  * <p>Describes an environment.</p>
985
+ * @public
986
986
  */
987
987
  environment?: Environment;
988
988
  }
@@ -991,24 +991,24 @@ export interface GetEnvironmentResponse {
991
991
  */
992
992
  export interface GetSoftwareSetRequest {
993
993
  /**
994
- * @public
995
994
  * <p>The ID of the software set for which to return information.</p>
995
+ * @public
996
996
  */
997
997
  id: string | undefined;
998
998
  }
999
999
  /**
1000
- * @public
1001
1000
  * <p>Describes software.</p>
1001
+ * @public
1002
1002
  */
1003
1003
  export interface Software {
1004
1004
  /**
1005
- * @public
1006
1005
  * <p>The name of the software component.</p>
1006
+ * @public
1007
1007
  */
1008
1008
  name?: string;
1009
1009
  /**
1010
- * @public
1011
1010
  * <p>The version of the software component.</p>
1011
+ * @public
1012
1012
  */
1013
1013
  version?: string;
1014
1014
  }
@@ -1025,43 +1025,43 @@ export declare const SoftwareSetValidationStatus: {
1025
1025
  */
1026
1026
  export type SoftwareSetValidationStatus = (typeof SoftwareSetValidationStatus)[keyof typeof SoftwareSetValidationStatus];
1027
1027
  /**
1028
- * @public
1029
1028
  * <p>Describes a software set.</p>
1029
+ * @public
1030
1030
  */
1031
1031
  export interface SoftwareSet {
1032
1032
  /**
1033
- * @public
1034
1033
  * <p>The ID of the software set.</p>
1034
+ * @public
1035
1035
  */
1036
1036
  id?: string;
1037
1037
  /**
1038
- * @public
1039
1038
  * <p>The version of the software set.</p>
1039
+ * @public
1040
1040
  */
1041
1041
  version?: string;
1042
1042
  /**
1043
- * @public
1044
1043
  * <p>The timestamp of when the software set was released.</p>
1044
+ * @public
1045
1045
  */
1046
1046
  releasedAt?: Date;
1047
1047
  /**
1048
- * @public
1049
1048
  * <p>The timestamp of the end of support for the software set.</p>
1049
+ * @public
1050
1050
  */
1051
1051
  supportedUntil?: Date;
1052
1052
  /**
1053
- * @public
1054
1053
  * <p>An option to define if the software set has been validated.</p>
1054
+ * @public
1055
1055
  */
1056
1056
  validationStatus?: SoftwareSetValidationStatus;
1057
1057
  /**
1058
- * @public
1059
1058
  * <p>A list of the software components in the software set.</p>
1059
+ * @public
1060
1060
  */
1061
1061
  software?: Software[];
1062
1062
  /**
1063
- * @public
1064
1063
  * <p>The Amazon Resource Name (ARN) of the software set.</p>
1064
+ * @public
1065
1065
  */
1066
1066
  arn?: string;
1067
1067
  }
@@ -1070,21 +1070,21 @@ export interface SoftwareSet {
1070
1070
  */
1071
1071
  export interface GetSoftwareSetResponse {
1072
1072
  /**
1073
- * @public
1074
1073
  * <p>Describes a software set.</p>
1074
+ * @public
1075
1075
  */
1076
1076
  softwareSet?: SoftwareSet;
1077
1077
  }
1078
1078
  /**
1079
- * @public
1080
1079
  * <p>Request processing failed due to some unknown error, exception, or failure.</p>
1080
+ * @public
1081
1081
  */
1082
1082
  export declare class InternalServiceException extends __BaseException {
1083
1083
  readonly name: "InternalServiceException";
1084
1084
  readonly $fault: "server";
1085
1085
  /**
1086
- * @public
1087
1086
  * <p>The number of seconds to wait before retrying the next request.</p>
1087
+ * @public
1088
1088
  */
1089
1089
  retryAfterSeconds?: number;
1090
1090
  /**
@@ -1097,20 +1097,20 @@ export declare class InternalServiceException extends __BaseException {
1097
1097
  */
1098
1098
  export interface ListDevicesRequest {
1099
1099
  /**
1100
- * @public
1101
1100
  * <p>If <code>nextToken</code> is returned, there are more results available. The value of
1102
1101
  * <code>nextToken</code> is a unique pagination token for each page. Make the call again
1103
1102
  * using the returned token to retrieve the next page. Keep all other arguments unchanged.
1104
1103
  * Each pagination token expires after 24 hours. Using an expired pagination token will return
1105
1104
  * an <i>HTTP 400 InvalidToken error</i>.</p>
1105
+ * @public
1106
1106
  */
1107
1107
  nextToken?: string;
1108
1108
  /**
1109
- * @public
1110
1109
  * <p>The maximum number of results that are returned per call. You can use
1111
1110
  * <code>nextToken</code> to obtain further pages of results.</p>
1112
1111
  * <p>This is only an upper limit. The actual number of results returned per call might be
1113
1112
  * fewer than the specified maximum.</p>
1113
+ * @public
1114
1114
  */
1115
1115
  maxResults?: number;
1116
1116
  }
@@ -1119,17 +1119,17 @@ export interface ListDevicesRequest {
1119
1119
  */
1120
1120
  export interface ListDevicesResponse {
1121
1121
  /**
1122
- * @public
1123
1122
  * <p>Describes devices.</p>
1123
+ * @public
1124
1124
  */
1125
1125
  devices?: DeviceSummary[];
1126
1126
  /**
1127
- * @public
1128
1127
  * <p>If <code>nextToken</code> is returned, there are more results available. The value of
1129
1128
  * <code>nextToken</code> is a unique pagination token for each page. Make the call again
1130
1129
  * using the returned token to retrieve the next page. Keep all other arguments unchanged.
1131
1130
  * Each pagination token expires after 24 hours. Using an expired pagination token will return
1132
1131
  * an <i>HTTP 400 InvalidToken error</i>.</p>
1132
+ * @public
1133
1133
  */
1134
1134
  nextToken?: string;
1135
1135
  }
@@ -1138,20 +1138,20 @@ export interface ListDevicesResponse {
1138
1138
  */
1139
1139
  export interface ListEnvironmentsRequest {
1140
1140
  /**
1141
- * @public
1142
1141
  * <p>If <code>nextToken</code> is returned, there are more results available. The value of
1143
1142
  * <code>nextToken</code> is a unique pagination token for each page. Make the call again
1144
1143
  * using the returned token to retrieve the next page. Keep all other arguments unchanged.
1145
1144
  * Each pagination token expires after 24 hours. Using an expired pagination token will return
1146
1145
  * an <i>HTTP 400 InvalidToken error</i>.</p>
1146
+ * @public
1147
1147
  */
1148
1148
  nextToken?: string;
1149
1149
  /**
1150
- * @public
1151
1150
  * <p>The maximum number of results that are returned per call. You can use
1152
1151
  * <code>nextToken</code> to obtain further pages of results.</p>
1153
1152
  * <p>This is only an upper limit. The actual number of results returned per call might be
1154
1153
  * fewer than the specified maximum.</p>
1154
+ * @public
1155
1155
  */
1156
1156
  maxResults?: number;
1157
1157
  }
@@ -1160,17 +1160,17 @@ export interface ListEnvironmentsRequest {
1160
1160
  */
1161
1161
  export interface ListEnvironmentsResponse {
1162
1162
  /**
1163
- * @public
1164
1163
  * <p>Describes environments.</p>
1164
+ * @public
1165
1165
  */
1166
1166
  environments?: EnvironmentSummary[];
1167
1167
  /**
1168
- * @public
1169
1168
  * <p>If <code>nextToken</code> is returned, there are more results available. The value of
1170
1169
  * <code>nextToken</code> is a unique pagination token for each page. Make the call again
1171
1170
  * using the returned token to retrieve the next page. Keep all other arguments unchanged.
1172
1171
  * Each pagination token expires after 24 hours. Using an expired pagination token will return
1173
1172
  * an <i>HTTP 400 InvalidToken error</i>.</p>
1173
+ * @public
1174
1174
  */
1175
1175
  nextToken?: string;
1176
1176
  }
@@ -1179,56 +1179,56 @@ export interface ListEnvironmentsResponse {
1179
1179
  */
1180
1180
  export interface ListSoftwareSetsRequest {
1181
1181
  /**
1182
- * @public
1183
1182
  * <p>If <code>nextToken</code> is returned, there are more results available. The value of
1184
1183
  * <code>nextToken</code> is a unique pagination token for each page. Make the call again
1185
1184
  * using the returned token to retrieve the next page. Keep all other arguments unchanged.
1186
1185
  * Each pagination token expires after 24 hours. Using an expired pagination token will return
1187
1186
  * an <i>HTTP 400 InvalidToken error</i>.</p>
1187
+ * @public
1188
1188
  */
1189
1189
  nextToken?: string;
1190
1190
  /**
1191
- * @public
1192
1191
  * <p>The maximum number of results that are returned per call. You can use
1193
1192
  * <code>nextToken</code> to obtain further pages of results.</p>
1194
1193
  * <p>This is only an upper limit. The actual number of results returned per call might be
1195
1194
  * fewer than the specified maximum.</p>
1195
+ * @public
1196
1196
  */
1197
1197
  maxResults?: number;
1198
1198
  }
1199
1199
  /**
1200
- * @public
1201
1200
  * <p>Describes a software set.</p>
1201
+ * @public
1202
1202
  */
1203
1203
  export interface SoftwareSetSummary {
1204
1204
  /**
1205
- * @public
1206
1205
  * <p>The ID of the software set.</p>
1206
+ * @public
1207
1207
  */
1208
1208
  id?: string;
1209
1209
  /**
1210
- * @public
1211
1210
  * <p>The version of the software set.</p>
1211
+ * @public
1212
1212
  */
1213
1213
  version?: string;
1214
1214
  /**
1215
- * @public
1216
1215
  * <p>The timestamp of when the software set was released.</p>
1216
+ * @public
1217
1217
  */
1218
1218
  releasedAt?: Date;
1219
1219
  /**
1220
- * @public
1221
1220
  * <p>The timestamp of the end of support for the software set.</p>
1221
+ * @public
1222
1222
  */
1223
1223
  supportedUntil?: Date;
1224
1224
  /**
1225
- * @public
1226
1225
  * <p>An option to define if the software set has been validated.</p>
1226
+ * @public
1227
1227
  */
1228
1228
  validationStatus?: SoftwareSetValidationStatus;
1229
1229
  /**
1230
- * @public
1231
1230
  * <p>The Amazon Resource Name (ARN) of the software set.</p>
1231
+ * @public
1232
1232
  */
1233
1233
  arn?: string;
1234
1234
  }
@@ -1237,17 +1237,17 @@ export interface SoftwareSetSummary {
1237
1237
  */
1238
1238
  export interface ListSoftwareSetsResponse {
1239
1239
  /**
1240
- * @public
1241
1240
  * <p>Describes software sets.</p>
1241
+ * @public
1242
1242
  */
1243
1243
  softwareSets?: SoftwareSetSummary[];
1244
1244
  /**
1245
- * @public
1246
1245
  * <p>If <code>nextToken</code> is returned, there are more results available. The value of
1247
1246
  * <code>nextToken</code> is a unique pagination token for each page. Make the call again
1248
1247
  * using the returned token to retrieve the next page. Keep all other arguments unchanged.
1249
1248
  * Each pagination token expires after 24 hours. Using an expired pagination token will return
1250
1249
  * an <i>HTTP 400 InvalidToken error</i>.</p>
1250
+ * @public
1251
1251
  */
1252
1252
  nextToken?: string;
1253
1253
  }
@@ -1256,9 +1256,9 @@ export interface ListSoftwareSetsResponse {
1256
1256
  */
1257
1257
  export interface ListTagsForResourceRequest {
1258
1258
  /**
1259
- * @public
1260
1259
  * <p>The Amazon Resource Name (ARN) of the resource for which you want to retrieve
1261
1260
  * tags.</p>
1261
+ * @public
1262
1262
  */
1263
1263
  resourceArn: string | undefined;
1264
1264
  }
@@ -1267,8 +1267,8 @@ export interface ListTagsForResourceRequest {
1267
1267
  */
1268
1268
  export interface ListTagsForResourceResponse {
1269
1269
  /**
1270
- * @public
1271
1270
  * <p>A map of the key-value pairs for the tag or tags assigned to the specified resource.</p>
1271
+ * @public
1272
1272
  */
1273
1273
  tags?: Record<string, string>;
1274
1274
  }
@@ -1277,13 +1277,13 @@ export interface ListTagsForResourceResponse {
1277
1277
  */
1278
1278
  export interface TagResourceRequest {
1279
1279
  /**
1280
- * @public
1281
1280
  * <p>The Amazon Resource Name (ARN) of the resource that you want to tag.</p>
1281
+ * @public
1282
1282
  */
1283
1283
  resourceArn: string | undefined;
1284
1284
  /**
1285
- * @public
1286
1285
  * <p>A map of the key-value pairs of the tag or tags to assign to the resource.</p>
1286
+ * @public
1287
1287
  */
1288
1288
  tags: Record<string, string> | undefined;
1289
1289
  }
@@ -1297,14 +1297,14 @@ export interface TagResourceResponse {
1297
1297
  */
1298
1298
  export interface UntagResourceRequest {
1299
1299
  /**
1300
- * @public
1301
1300
  * <p>The Amazon Resource Name (ARN) of the resource that you want to untag.</p>
1301
+ * @public
1302
1302
  */
1303
1303
  resourceArn: string | undefined;
1304
1304
  /**
1305
- * @public
1306
1305
  * <p>The keys of the key-value pairs for the tag or tags you want to remove from the
1307
1306
  * specified resource.</p>
1307
+ * @public
1308
1308
  */
1309
1309
  tagKeys: string[] | undefined;
1310
1310
  }
@@ -1318,40 +1318,34 @@ export interface UntagResourceResponse {
1318
1318
  */
1319
1319
  export interface UpdateDeviceRequest {
1320
1320
  /**
1321
- * @public
1322
1321
  * <p>The ID of the device to update.</p>
1322
+ * @public
1323
1323
  */
1324
1324
  id: string | undefined;
1325
1325
  /**
1326
- * @public
1327
1326
  * <p>The name of the device to update.</p>
1327
+ * @public
1328
1328
  */
1329
1329
  name?: string;
1330
1330
  /**
1331
- * @public
1332
1331
  * <p>The ID of the software set to apply.</p>
1332
+ * @public
1333
1333
  */
1334
1334
  desiredSoftwareSetId?: string;
1335
1335
  /**
1336
- * @public
1337
1336
  * <p>An option to define if software updates should be applied within a maintenance
1338
1337
  * window.</p>
1339
- */
1340
- softwareSetUpdateSchedule?: SoftwareSetUpdateSchedule;
1341
- /**
1342
1338
  * @public
1343
- * <p>The Amazon Resource Name (ARN) of the Key Management Service key to use for the
1344
- * update.</p>
1345
1339
  */
1346
- kmsKeyArn?: string;
1340
+ softwareSetUpdateSchedule?: SoftwareSetUpdateSchedule;
1347
1341
  }
1348
1342
  /**
1349
1343
  * @public
1350
1344
  */
1351
1345
  export interface UpdateDeviceResponse {
1352
1346
  /**
1353
- * @public
1354
1347
  * <p>Describes a device.</p>
1348
+ * @public
1355
1349
  */
1356
1350
  device?: DeviceSummary;
1357
1351
  }
@@ -1360,45 +1354,45 @@ export interface UpdateDeviceResponse {
1360
1354
  */
1361
1355
  export interface UpdateEnvironmentRequest {
1362
1356
  /**
1363
- * @public
1364
1357
  * <p>The ID of the environment to update.</p>
1358
+ * @public
1365
1359
  */
1366
1360
  id: string | undefined;
1367
1361
  /**
1368
- * @public
1369
1362
  * <p>The name of the environment to update.</p>
1363
+ * @public
1370
1364
  */
1371
1365
  name?: string;
1372
1366
  /**
1373
- * @public
1374
1367
  * <p>The Amazon Resource Name (ARN) of the desktop to stream from Amazon WorkSpaces,
1375
1368
  * WorkSpaces Web, or AppStream 2.0.</p>
1369
+ * @public
1376
1370
  */
1377
1371
  desktopArn?: string;
1378
1372
  /**
1379
- * @public
1380
1373
  * <p>The URL for the identity provider login (only for environments that use AppStream 2.0).</p>
1374
+ * @public
1381
1375
  */
1382
1376
  desktopEndpoint?: string;
1383
1377
  /**
1384
- * @public
1385
1378
  * <p>An option to define if software updates should be applied within a maintenance
1386
1379
  * window.</p>
1380
+ * @public
1387
1381
  */
1388
1382
  softwareSetUpdateSchedule?: SoftwareSetUpdateSchedule;
1389
1383
  /**
1390
- * @public
1391
1384
  * <p>A specification for a time window to apply software updates.</p>
1385
+ * @public
1392
1386
  */
1393
1387
  maintenanceWindow?: MaintenanceWindow;
1394
1388
  /**
1395
- * @public
1396
1389
  * <p>An option to define which software updates to apply.</p>
1390
+ * @public
1397
1391
  */
1398
1392
  softwareSetUpdateMode?: SoftwareSetUpdateMode;
1399
1393
  /**
1400
- * @public
1401
1394
  * <p>The ID of the software set to apply.</p>
1395
+ * @public
1402
1396
  */
1403
1397
  desiredSoftwareSetId?: string;
1404
1398
  }
@@ -1407,8 +1401,8 @@ export interface UpdateEnvironmentRequest {
1407
1401
  */
1408
1402
  export interface UpdateEnvironmentResponse {
1409
1403
  /**
1410
- * @public
1411
1404
  * <p>Describes an environment.</p>
1405
+ * @public
1412
1406
  */
1413
1407
  environment?: EnvironmentSummary;
1414
1408
  }
@@ -1417,13 +1411,13 @@ export interface UpdateEnvironmentResponse {
1417
1411
  */
1418
1412
  export interface UpdateSoftwareSetRequest {
1419
1413
  /**
1420
- * @public
1421
1414
  * <p>The ID of the software set to update.</p>
1415
+ * @public
1422
1416
  */
1423
1417
  id: string | undefined;
1424
1418
  /**
1425
- * @public
1426
1419
  * <p>An option to define if the software set has been validated.</p>
1420
+ * @public
1427
1421
  */
1428
1422
  validationStatus: SoftwareSetValidationStatus | undefined;
1429
1423
  }