aws-sdk-workspaces 1.96.0 → 1.97.0

Sign up to get free protection for your applications and to get access to all the features.
data/sig/types.rbs ADDED
@@ -0,0 +1,1392 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws::WorkSpaces
9
+ module Types
10
+
11
+ class AccessDeniedException
12
+ attr_accessor message: ::String
13
+ SENSITIVE: []
14
+ end
15
+
16
+ class AccountModification
17
+ attr_accessor modification_state: ("PENDING" | "COMPLETED" | "FAILED")
18
+ attr_accessor dedicated_tenancy_support: ("ENABLED" | "DISABLED")
19
+ attr_accessor dedicated_tenancy_management_cidr_range: ::String
20
+ attr_accessor start_time: ::Time
21
+ attr_accessor error_code: ::String
22
+ attr_accessor error_message: ::String
23
+ SENSITIVE: []
24
+ end
25
+
26
+ class ApplicationNotSupportedException < Aws::EmptyStructure
27
+ end
28
+
29
+ class ApplicationResourceAssociation
30
+ attr_accessor application_id: ::String
31
+ attr_accessor associated_resource_id: ::String
32
+ attr_accessor associated_resource_type: ("WORKSPACE" | "BUNDLE" | "IMAGE")
33
+ attr_accessor created: ::Time
34
+ attr_accessor last_updated_time: ::Time
35
+ attr_accessor state: ("PENDING_INSTALL" | "PENDING_INSTALL_DEPLOYMENT" | "PENDING_UNINSTALL" | "PENDING_UNINSTALL_DEPLOYMENT" | "INSTALLING" | "UNINSTALLING" | "ERROR" | "COMPLETED" | "REMOVED")
36
+ attr_accessor state_reason: Types::AssociationStateReason
37
+ SENSITIVE: []
38
+ end
39
+
40
+ class AssociateConnectionAliasRequest
41
+ attr_accessor alias_id: ::String
42
+ attr_accessor resource_id: ::String
43
+ SENSITIVE: []
44
+ end
45
+
46
+ class AssociateConnectionAliasResult
47
+ attr_accessor connection_identifier: ::String
48
+ SENSITIVE: []
49
+ end
50
+
51
+ class AssociateIpGroupsRequest
52
+ attr_accessor directory_id: ::String
53
+ attr_accessor group_ids: ::Array[::String]
54
+ SENSITIVE: []
55
+ end
56
+
57
+ class AssociateIpGroupsResult < Aws::EmptyStructure
58
+ end
59
+
60
+ class AssociateWorkspaceApplicationRequest
61
+ attr_accessor workspace_id: ::String
62
+ attr_accessor application_id: ::String
63
+ SENSITIVE: []
64
+ end
65
+
66
+ class AssociateWorkspaceApplicationResult
67
+ attr_accessor association: Types::WorkspaceResourceAssociation
68
+ SENSITIVE: []
69
+ end
70
+
71
+ class AssociationStateReason
72
+ attr_accessor error_code: ("ValidationError.InsufficientDiskSpace" | "ValidationError.InsufficientMemory" | "ValidationError.UnsupportedOperatingSystem" | "DeploymentError.InternalServerError" | "DeploymentError.WorkspaceUnreachable")
73
+ attr_accessor error_message: ::String
74
+ SENSITIVE: []
75
+ end
76
+
77
+ class AuthorizeIpRulesRequest
78
+ attr_accessor group_id: ::String
79
+ attr_accessor user_rules: ::Array[Types::IpRuleItem]
80
+ SENSITIVE: []
81
+ end
82
+
83
+ class AuthorizeIpRulesResult < Aws::EmptyStructure
84
+ end
85
+
86
+ class BundleResourceAssociation
87
+ attr_accessor associated_resource_id: ::String
88
+ attr_accessor associated_resource_type: ("APPLICATION")
89
+ attr_accessor bundle_id: ::String
90
+ attr_accessor created: ::Time
91
+ attr_accessor last_updated_time: ::Time
92
+ attr_accessor state: ("PENDING_INSTALL" | "PENDING_INSTALL_DEPLOYMENT" | "PENDING_UNINSTALL" | "PENDING_UNINSTALL_DEPLOYMENT" | "INSTALLING" | "UNINSTALLING" | "ERROR" | "COMPLETED" | "REMOVED")
93
+ attr_accessor state_reason: Types::AssociationStateReason
94
+ SENSITIVE: []
95
+ end
96
+
97
+ class CertificateBasedAuthProperties
98
+ attr_accessor status: ("DISABLED" | "ENABLED")
99
+ attr_accessor certificate_authority_arn: ::String
100
+ SENSITIVE: []
101
+ end
102
+
103
+ class ClientProperties
104
+ attr_accessor reconnect_enabled: ("ENABLED" | "DISABLED")
105
+ attr_accessor log_upload_enabled: ("ENABLED" | "DISABLED")
106
+ SENSITIVE: []
107
+ end
108
+
109
+ class ClientPropertiesResult
110
+ attr_accessor resource_id: ::String
111
+ attr_accessor client_properties: Types::ClientProperties
112
+ SENSITIVE: []
113
+ end
114
+
115
+ class ComputeNotCompatibleException < Aws::EmptyStructure
116
+ end
117
+
118
+ class ComputeType
119
+ attr_accessor name: ("VALUE" | "STANDARD" | "PERFORMANCE" | "POWER" | "GRAPHICS" | "POWERPRO" | "GRAPHICSPRO" | "GRAPHICS_G4DN" | "GRAPHICSPRO_G4DN")
120
+ SENSITIVE: []
121
+ end
122
+
123
+ class ConnectClientAddIn
124
+ attr_accessor add_in_id: ::String
125
+ attr_accessor resource_id: ::String
126
+ attr_accessor name: ::String
127
+ attr_accessor url: ::String
128
+ SENSITIVE: []
129
+ end
130
+
131
+ class ConnectionAlias
132
+ attr_accessor connection_string: ::String
133
+ attr_accessor alias_id: ::String
134
+ attr_accessor state: ("CREATING" | "CREATED" | "DELETING")
135
+ attr_accessor owner_account_id: ::String
136
+ attr_accessor associations: ::Array[Types::ConnectionAliasAssociation]
137
+ SENSITIVE: []
138
+ end
139
+
140
+ class ConnectionAliasAssociation
141
+ attr_accessor association_status: ("NOT_ASSOCIATED" | "ASSOCIATED_WITH_OWNER_ACCOUNT" | "ASSOCIATED_WITH_SHARED_ACCOUNT" | "PENDING_ASSOCIATION" | "PENDING_DISASSOCIATION")
142
+ attr_accessor associated_account_id: ::String
143
+ attr_accessor resource_id: ::String
144
+ attr_accessor connection_identifier: ::String
145
+ SENSITIVE: []
146
+ end
147
+
148
+ class ConnectionAliasPermission
149
+ attr_accessor shared_account_id: ::String
150
+ attr_accessor allow_association: bool
151
+ SENSITIVE: []
152
+ end
153
+
154
+ class CopyWorkspaceImageRequest
155
+ attr_accessor name: ::String
156
+ attr_accessor description: ::String
157
+ attr_accessor source_image_id: ::String
158
+ attr_accessor source_region: ::String
159
+ attr_accessor tags: ::Array[Types::Tag]
160
+ SENSITIVE: []
161
+ end
162
+
163
+ class CopyWorkspaceImageResult
164
+ attr_accessor image_id: ::String
165
+ SENSITIVE: []
166
+ end
167
+
168
+ class CreateConnectClientAddInRequest
169
+ attr_accessor resource_id: ::String
170
+ attr_accessor name: ::String
171
+ attr_accessor url: ::String
172
+ SENSITIVE: []
173
+ end
174
+
175
+ class CreateConnectClientAddInResult
176
+ attr_accessor add_in_id: ::String
177
+ SENSITIVE: []
178
+ end
179
+
180
+ class CreateConnectionAliasRequest
181
+ attr_accessor connection_string: ::String
182
+ attr_accessor tags: ::Array[Types::Tag]
183
+ SENSITIVE: []
184
+ end
185
+
186
+ class CreateConnectionAliasResult
187
+ attr_accessor alias_id: ::String
188
+ SENSITIVE: []
189
+ end
190
+
191
+ class CreateIpGroupRequest
192
+ attr_accessor group_name: ::String
193
+ attr_accessor group_desc: ::String
194
+ attr_accessor user_rules: ::Array[Types::IpRuleItem]
195
+ attr_accessor tags: ::Array[Types::Tag]
196
+ SENSITIVE: []
197
+ end
198
+
199
+ class CreateIpGroupResult
200
+ attr_accessor group_id: ::String
201
+ SENSITIVE: []
202
+ end
203
+
204
+ class CreateStandbyWorkspacesRequest
205
+ attr_accessor primary_region: ::String
206
+ attr_accessor standby_workspaces: ::Array[Types::StandbyWorkspace]
207
+ SENSITIVE: []
208
+ end
209
+
210
+ class CreateStandbyWorkspacesResult
211
+ attr_accessor failed_standby_requests: ::Array[Types::FailedCreateStandbyWorkspacesRequest]
212
+ attr_accessor pending_standby_requests: ::Array[Types::PendingCreateStandbyWorkspacesRequest]
213
+ SENSITIVE: []
214
+ end
215
+
216
+ class CreateTagsRequest
217
+ attr_accessor resource_id: ::String
218
+ attr_accessor tags: ::Array[Types::Tag]
219
+ SENSITIVE: []
220
+ end
221
+
222
+ class CreateTagsResult < Aws::EmptyStructure
223
+ end
224
+
225
+ class CreateUpdatedWorkspaceImageRequest
226
+ attr_accessor name: ::String
227
+ attr_accessor description: ::String
228
+ attr_accessor source_image_id: ::String
229
+ attr_accessor tags: ::Array[Types::Tag]
230
+ SENSITIVE: []
231
+ end
232
+
233
+ class CreateUpdatedWorkspaceImageResult
234
+ attr_accessor image_id: ::String
235
+ SENSITIVE: []
236
+ end
237
+
238
+ class CreateWorkspaceBundleRequest
239
+ attr_accessor bundle_name: ::String
240
+ attr_accessor bundle_description: ::String
241
+ attr_accessor image_id: ::String
242
+ attr_accessor compute_type: Types::ComputeType
243
+ attr_accessor user_storage: Types::UserStorage
244
+ attr_accessor root_storage: Types::RootStorage
245
+ attr_accessor tags: ::Array[Types::Tag]
246
+ SENSITIVE: []
247
+ end
248
+
249
+ class CreateWorkspaceBundleResult
250
+ attr_accessor workspace_bundle: Types::WorkspaceBundle
251
+ SENSITIVE: []
252
+ end
253
+
254
+ class CreateWorkspaceImageRequest
255
+ attr_accessor name: ::String
256
+ attr_accessor description: ::String
257
+ attr_accessor workspace_id: ::String
258
+ attr_accessor tags: ::Array[Types::Tag]
259
+ SENSITIVE: []
260
+ end
261
+
262
+ class CreateWorkspaceImageResult
263
+ attr_accessor image_id: ::String
264
+ attr_accessor name: ::String
265
+ attr_accessor description: ::String
266
+ attr_accessor operating_system: Types::OperatingSystem
267
+ attr_accessor state: ("AVAILABLE" | "PENDING" | "ERROR")
268
+ attr_accessor required_tenancy: ("DEFAULT" | "DEDICATED")
269
+ attr_accessor created: ::Time
270
+ attr_accessor owner_account_id: ::String
271
+ SENSITIVE: []
272
+ end
273
+
274
+ class CreateWorkspacesRequest
275
+ attr_accessor workspaces: ::Array[Types::WorkspaceRequest]
276
+ SENSITIVE: []
277
+ end
278
+
279
+ class CreateWorkspacesResult
280
+ attr_accessor failed_requests: ::Array[Types::FailedCreateWorkspaceRequest]
281
+ attr_accessor pending_requests: ::Array[Types::Workspace]
282
+ SENSITIVE: []
283
+ end
284
+
285
+ class DataReplicationSettings
286
+ attr_accessor data_replication: ("NO_REPLICATION" | "PRIMARY_AS_SOURCE")
287
+ attr_accessor recovery_snapshot_time: ::Time
288
+ SENSITIVE: []
289
+ end
290
+
291
+ class DefaultClientBrandingAttributes
292
+ attr_accessor logo_url: ::String
293
+ attr_accessor support_email: ::String
294
+ attr_accessor support_link: ::String
295
+ attr_accessor forgot_password_link: ::String
296
+ attr_accessor login_message: ::Hash[::String, ::String]
297
+ SENSITIVE: []
298
+ end
299
+
300
+ class DefaultImportClientBrandingAttributes
301
+ attr_accessor logo: ::String
302
+ attr_accessor support_email: ::String
303
+ attr_accessor support_link: ::String
304
+ attr_accessor forgot_password_link: ::String
305
+ attr_accessor login_message: ::Hash[::String, ::String]
306
+ SENSITIVE: []
307
+ end
308
+
309
+ class DefaultWorkspaceCreationProperties
310
+ attr_accessor enable_work_docs: bool
311
+ attr_accessor enable_internet_access: bool
312
+ attr_accessor default_ou: ::String
313
+ attr_accessor custom_security_group_id: ::String
314
+ attr_accessor user_enabled_as_local_administrator: bool
315
+ attr_accessor enable_maintenance_mode: bool
316
+ SENSITIVE: []
317
+ end
318
+
319
+ class DeleteClientBrandingRequest
320
+ attr_accessor resource_id: ::String
321
+ attr_accessor platforms: ::Array[("DeviceTypeWindows" | "DeviceTypeOsx" | "DeviceTypeAndroid" | "DeviceTypeIos" | "DeviceTypeLinux" | "DeviceTypeWeb")]
322
+ SENSITIVE: []
323
+ end
324
+
325
+ class DeleteClientBrandingResult < Aws::EmptyStructure
326
+ end
327
+
328
+ class DeleteConnectClientAddInRequest
329
+ attr_accessor add_in_id: ::String
330
+ attr_accessor resource_id: ::String
331
+ SENSITIVE: []
332
+ end
333
+
334
+ class DeleteConnectClientAddInResult < Aws::EmptyStructure
335
+ end
336
+
337
+ class DeleteConnectionAliasRequest
338
+ attr_accessor alias_id: ::String
339
+ SENSITIVE: []
340
+ end
341
+
342
+ class DeleteConnectionAliasResult < Aws::EmptyStructure
343
+ end
344
+
345
+ class DeleteIpGroupRequest
346
+ attr_accessor group_id: ::String
347
+ SENSITIVE: []
348
+ end
349
+
350
+ class DeleteIpGroupResult < Aws::EmptyStructure
351
+ end
352
+
353
+ class DeleteTagsRequest
354
+ attr_accessor resource_id: ::String
355
+ attr_accessor tag_keys: ::Array[::String]
356
+ SENSITIVE: []
357
+ end
358
+
359
+ class DeleteTagsResult < Aws::EmptyStructure
360
+ end
361
+
362
+ class DeleteWorkspaceBundleRequest
363
+ attr_accessor bundle_id: ::String
364
+ SENSITIVE: []
365
+ end
366
+
367
+ class DeleteWorkspaceBundleResult < Aws::EmptyStructure
368
+ end
369
+
370
+ class DeleteWorkspaceImageRequest
371
+ attr_accessor image_id: ::String
372
+ SENSITIVE: []
373
+ end
374
+
375
+ class DeleteWorkspaceImageResult < Aws::EmptyStructure
376
+ end
377
+
378
+ class DeployWorkspaceApplicationsRequest
379
+ attr_accessor workspace_id: ::String
380
+ attr_accessor force: bool
381
+ SENSITIVE: []
382
+ end
383
+
384
+ class DeployWorkspaceApplicationsResult
385
+ attr_accessor deployment: Types::WorkSpaceApplicationDeployment
386
+ SENSITIVE: []
387
+ end
388
+
389
+ class DeregisterWorkspaceDirectoryRequest
390
+ attr_accessor directory_id: ::String
391
+ SENSITIVE: []
392
+ end
393
+
394
+ class DeregisterWorkspaceDirectoryResult < Aws::EmptyStructure
395
+ end
396
+
397
+ class DescribeAccountModificationsRequest
398
+ attr_accessor next_token: ::String
399
+ SENSITIVE: []
400
+ end
401
+
402
+ class DescribeAccountModificationsResult
403
+ attr_accessor account_modifications: ::Array[Types::AccountModification]
404
+ attr_accessor next_token: ::String
405
+ SENSITIVE: []
406
+ end
407
+
408
+ class DescribeAccountRequest < Aws::EmptyStructure
409
+ end
410
+
411
+ class DescribeAccountResult
412
+ attr_accessor dedicated_tenancy_support: ("ENABLED" | "DISABLED")
413
+ attr_accessor dedicated_tenancy_management_cidr_range: ::String
414
+ SENSITIVE: []
415
+ end
416
+
417
+ class DescribeApplicationAssociationsRequest
418
+ attr_accessor max_results: ::Integer
419
+ attr_accessor next_token: ::String
420
+ attr_accessor application_id: ::String
421
+ attr_accessor associated_resource_types: ::Array[("WORKSPACE" | "BUNDLE" | "IMAGE")]
422
+ SENSITIVE: []
423
+ end
424
+
425
+ class DescribeApplicationAssociationsResult
426
+ attr_accessor associations: ::Array[Types::ApplicationResourceAssociation]
427
+ attr_accessor next_token: ::String
428
+ SENSITIVE: []
429
+ end
430
+
431
+ class DescribeApplicationsRequest
432
+ attr_accessor application_ids: ::Array[::String]
433
+ attr_accessor compute_type_names: ::Array[("VALUE" | "STANDARD" | "PERFORMANCE" | "POWER" | "GRAPHICS" | "POWERPRO" | "GRAPHICSPRO" | "GRAPHICS_G4DN" | "GRAPHICSPRO_G4DN")]
434
+ attr_accessor license_type: ("LICENSED" | "UNLICENSED")
435
+ attr_accessor operating_system_names: ::Array[("AMAZON_LINUX_2" | "UBUNTU_18_04" | "UBUNTU_20_04" | "UBUNTU_22_04" | "UNKNOWN" | "WINDOWS_10" | "WINDOWS_11" | "WINDOWS_7" | "WINDOWS_SERVER_2016" | "WINDOWS_SERVER_2019" | "WINDOWS_SERVER_2022")]
436
+ attr_accessor owner: ::String
437
+ attr_accessor max_results: ::Integer
438
+ attr_accessor next_token: ::String
439
+ SENSITIVE: []
440
+ end
441
+
442
+ class DescribeApplicationsResult
443
+ attr_accessor applications: ::Array[Types::WorkSpaceApplication]
444
+ attr_accessor next_token: ::String
445
+ SENSITIVE: []
446
+ end
447
+
448
+ class DescribeBundleAssociationsRequest
449
+ attr_accessor bundle_id: ::String
450
+ attr_accessor associated_resource_types: ::Array[("APPLICATION")]
451
+ SENSITIVE: []
452
+ end
453
+
454
+ class DescribeBundleAssociationsResult
455
+ attr_accessor associations: ::Array[Types::BundleResourceAssociation]
456
+ SENSITIVE: []
457
+ end
458
+
459
+ class DescribeClientBrandingRequest
460
+ attr_accessor resource_id: ::String
461
+ SENSITIVE: []
462
+ end
463
+
464
+ class DescribeClientBrandingResult
465
+ attr_accessor device_type_windows: Types::DefaultClientBrandingAttributes
466
+ attr_accessor device_type_osx: Types::DefaultClientBrandingAttributes
467
+ attr_accessor device_type_android: Types::DefaultClientBrandingAttributes
468
+ attr_accessor device_type_ios: Types::IosClientBrandingAttributes
469
+ attr_accessor device_type_linux: Types::DefaultClientBrandingAttributes
470
+ attr_accessor device_type_web: Types::DefaultClientBrandingAttributes
471
+ SENSITIVE: []
472
+ end
473
+
474
+ class DescribeClientPropertiesRequest
475
+ attr_accessor resource_ids: ::Array[::String]
476
+ SENSITIVE: []
477
+ end
478
+
479
+ class DescribeClientPropertiesResult
480
+ attr_accessor client_properties_list: ::Array[Types::ClientPropertiesResult]
481
+ SENSITIVE: []
482
+ end
483
+
484
+ class DescribeConnectClientAddInsRequest
485
+ attr_accessor resource_id: ::String
486
+ attr_accessor next_token: ::String
487
+ attr_accessor max_results: ::Integer
488
+ SENSITIVE: []
489
+ end
490
+
491
+ class DescribeConnectClientAddInsResult
492
+ attr_accessor add_ins: ::Array[Types::ConnectClientAddIn]
493
+ attr_accessor next_token: ::String
494
+ SENSITIVE: []
495
+ end
496
+
497
+ class DescribeConnectionAliasPermissionsRequest
498
+ attr_accessor alias_id: ::String
499
+ attr_accessor next_token: ::String
500
+ attr_accessor max_results: ::Integer
501
+ SENSITIVE: []
502
+ end
503
+
504
+ class DescribeConnectionAliasPermissionsResult
505
+ attr_accessor alias_id: ::String
506
+ attr_accessor connection_alias_permissions: ::Array[Types::ConnectionAliasPermission]
507
+ attr_accessor next_token: ::String
508
+ SENSITIVE: []
509
+ end
510
+
511
+ class DescribeConnectionAliasesRequest
512
+ attr_accessor alias_ids: ::Array[::String]
513
+ attr_accessor resource_id: ::String
514
+ attr_accessor limit: ::Integer
515
+ attr_accessor next_token: ::String
516
+ SENSITIVE: []
517
+ end
518
+
519
+ class DescribeConnectionAliasesResult
520
+ attr_accessor connection_aliases: ::Array[Types::ConnectionAlias]
521
+ attr_accessor next_token: ::String
522
+ SENSITIVE: []
523
+ end
524
+
525
+ class DescribeImageAssociationsRequest
526
+ attr_accessor image_id: ::String
527
+ attr_accessor associated_resource_types: ::Array[("APPLICATION")]
528
+ SENSITIVE: []
529
+ end
530
+
531
+ class DescribeImageAssociationsResult
532
+ attr_accessor associations: ::Array[Types::ImageResourceAssociation]
533
+ SENSITIVE: []
534
+ end
535
+
536
+ class DescribeIpGroupsRequest
537
+ attr_accessor group_ids: ::Array[::String]
538
+ attr_accessor next_token: ::String
539
+ attr_accessor max_results: ::Integer
540
+ SENSITIVE: []
541
+ end
542
+
543
+ class DescribeIpGroupsResult
544
+ attr_accessor result: ::Array[Types::WorkspacesIpGroup]
545
+ attr_accessor next_token: ::String
546
+ SENSITIVE: []
547
+ end
548
+
549
+ class DescribeTagsRequest
550
+ attr_accessor resource_id: ::String
551
+ SENSITIVE: []
552
+ end
553
+
554
+ class DescribeTagsResult
555
+ attr_accessor tag_list: ::Array[Types::Tag]
556
+ SENSITIVE: []
557
+ end
558
+
559
+ class DescribeWorkspaceAssociationsRequest
560
+ attr_accessor workspace_id: ::String
561
+ attr_accessor associated_resource_types: ::Array[("APPLICATION")]
562
+ SENSITIVE: []
563
+ end
564
+
565
+ class DescribeWorkspaceAssociationsResult
566
+ attr_accessor associations: ::Array[Types::WorkspaceResourceAssociation]
567
+ SENSITIVE: []
568
+ end
569
+
570
+ class DescribeWorkspaceBundlesRequest
571
+ attr_accessor bundle_ids: ::Array[::String]
572
+ attr_accessor owner: ::String
573
+ attr_accessor next_token: ::String
574
+ SENSITIVE: []
575
+ end
576
+
577
+ class DescribeWorkspaceBundlesResult
578
+ attr_accessor bundles: ::Array[Types::WorkspaceBundle]
579
+ attr_accessor next_token: ::String
580
+ SENSITIVE: []
581
+ end
582
+
583
+ class DescribeWorkspaceDirectoriesRequest
584
+ attr_accessor directory_ids: ::Array[::String]
585
+ attr_accessor limit: ::Integer
586
+ attr_accessor next_token: ::String
587
+ SENSITIVE: []
588
+ end
589
+
590
+ class DescribeWorkspaceDirectoriesResult
591
+ attr_accessor directories: ::Array[Types::WorkspaceDirectory]
592
+ attr_accessor next_token: ::String
593
+ SENSITIVE: []
594
+ end
595
+
596
+ class DescribeWorkspaceImagePermissionsRequest
597
+ attr_accessor image_id: ::String
598
+ attr_accessor next_token: ::String
599
+ attr_accessor max_results: ::Integer
600
+ SENSITIVE: []
601
+ end
602
+
603
+ class DescribeWorkspaceImagePermissionsResult
604
+ attr_accessor image_id: ::String
605
+ attr_accessor image_permissions: ::Array[Types::ImagePermission]
606
+ attr_accessor next_token: ::String
607
+ SENSITIVE: []
608
+ end
609
+
610
+ class DescribeWorkspaceImagesRequest
611
+ attr_accessor image_ids: ::Array[::String]
612
+ attr_accessor image_type: ("OWNED" | "SHARED")
613
+ attr_accessor next_token: ::String
614
+ attr_accessor max_results: ::Integer
615
+ SENSITIVE: []
616
+ end
617
+
618
+ class DescribeWorkspaceImagesResult
619
+ attr_accessor images: ::Array[Types::WorkspaceImage]
620
+ attr_accessor next_token: ::String
621
+ SENSITIVE: []
622
+ end
623
+
624
+ class DescribeWorkspaceSnapshotsRequest
625
+ attr_accessor workspace_id: ::String
626
+ SENSITIVE: []
627
+ end
628
+
629
+ class DescribeWorkspaceSnapshotsResult
630
+ attr_accessor rebuild_snapshots: ::Array[Types::Snapshot]
631
+ attr_accessor restore_snapshots: ::Array[Types::Snapshot]
632
+ SENSITIVE: []
633
+ end
634
+
635
+ class DescribeWorkspacesConnectionStatusRequest
636
+ attr_accessor workspace_ids: ::Array[::String]
637
+ attr_accessor next_token: ::String
638
+ SENSITIVE: []
639
+ end
640
+
641
+ class DescribeWorkspacesConnectionStatusResult
642
+ attr_accessor workspaces_connection_status: ::Array[Types::WorkspaceConnectionStatus]
643
+ attr_accessor next_token: ::String
644
+ SENSITIVE: []
645
+ end
646
+
647
+ class DescribeWorkspacesRequest
648
+ attr_accessor workspace_ids: ::Array[::String]
649
+ attr_accessor directory_id: ::String
650
+ attr_accessor user_name: ::String
651
+ attr_accessor bundle_id: ::String
652
+ attr_accessor limit: ::Integer
653
+ attr_accessor next_token: ::String
654
+ SENSITIVE: []
655
+ end
656
+
657
+ class DescribeWorkspacesResult
658
+ attr_accessor workspaces: ::Array[Types::Workspace]
659
+ attr_accessor next_token: ::String
660
+ SENSITIVE: []
661
+ end
662
+
663
+ class DisassociateConnectionAliasRequest
664
+ attr_accessor alias_id: ::String
665
+ SENSITIVE: []
666
+ end
667
+
668
+ class DisassociateConnectionAliasResult < Aws::EmptyStructure
669
+ end
670
+
671
+ class DisassociateIpGroupsRequest
672
+ attr_accessor directory_id: ::String
673
+ attr_accessor group_ids: ::Array[::String]
674
+ SENSITIVE: []
675
+ end
676
+
677
+ class DisassociateIpGroupsResult < Aws::EmptyStructure
678
+ end
679
+
680
+ class DisassociateWorkspaceApplicationRequest
681
+ attr_accessor workspace_id: ::String
682
+ attr_accessor application_id: ::String
683
+ SENSITIVE: []
684
+ end
685
+
686
+ class DisassociateWorkspaceApplicationResult
687
+ attr_accessor association: Types::WorkspaceResourceAssociation
688
+ SENSITIVE: []
689
+ end
690
+
691
+ class ErrorDetails
692
+ attr_accessor error_code: ("OutdatedPowershellVersion" | "OfficeInstalled" | "PCoIPAgentInstalled" | "WindowsUpdatesEnabled" | "AutoMountDisabled" | "WorkspacesBYOLAccountNotFound" | "WorkspacesBYOLAccountDisabled" | "DHCPDisabled" | "DiskFreeSpace" | "AdditionalDrivesAttached" | "OSNotSupported" | "DomainJoined" | "AzureDomainJoined" | "FirewallEnabled" | "VMWareToolsInstalled" | "DiskSizeExceeded" | "IncompatiblePartitioning" | "PendingReboot" | "AutoLogonEnabled" | "RealTimeUniversalDisabled" | "MultipleBootPartition" | "Requires64BitOS" | "ZeroRearmCount" | "InPlaceUpgrade" | "AntiVirusInstalled" | "UEFINotSupported")
693
+ attr_accessor error_message: ::String
694
+ SENSITIVE: []
695
+ end
696
+
697
+ class FailedCreateStandbyWorkspacesRequest
698
+ attr_accessor standby_workspace_request: Types::StandbyWorkspace
699
+ attr_accessor error_code: ::String
700
+ attr_accessor error_message: ::String
701
+ SENSITIVE: []
702
+ end
703
+
704
+ class FailedCreateWorkspaceRequest
705
+ attr_accessor workspace_request: Types::WorkspaceRequest
706
+ attr_accessor error_code: ::String
707
+ attr_accessor error_message: ::String
708
+ SENSITIVE: []
709
+ end
710
+
711
+ class FailedWorkspaceChangeRequest
712
+ attr_accessor workspace_id: ::String
713
+ attr_accessor error_code: ::String
714
+ attr_accessor error_message: ::String
715
+ SENSITIVE: []
716
+ end
717
+
718
+ class ImagePermission
719
+ attr_accessor shared_account_id: ::String
720
+ SENSITIVE: []
721
+ end
722
+
723
+ class ImageResourceAssociation
724
+ attr_accessor associated_resource_id: ::String
725
+ attr_accessor associated_resource_type: ("APPLICATION")
726
+ attr_accessor created: ::Time
727
+ attr_accessor last_updated_time: ::Time
728
+ attr_accessor image_id: ::String
729
+ attr_accessor state: ("PENDING_INSTALL" | "PENDING_INSTALL_DEPLOYMENT" | "PENDING_UNINSTALL" | "PENDING_UNINSTALL_DEPLOYMENT" | "INSTALLING" | "UNINSTALLING" | "ERROR" | "COMPLETED" | "REMOVED")
730
+ attr_accessor state_reason: Types::AssociationStateReason
731
+ SENSITIVE: []
732
+ end
733
+
734
+ class ImportClientBrandingRequest
735
+ attr_accessor resource_id: ::String
736
+ attr_accessor device_type_windows: Types::DefaultImportClientBrandingAttributes
737
+ attr_accessor device_type_osx: Types::DefaultImportClientBrandingAttributes
738
+ attr_accessor device_type_android: Types::DefaultImportClientBrandingAttributes
739
+ attr_accessor device_type_ios: Types::IosImportClientBrandingAttributes
740
+ attr_accessor device_type_linux: Types::DefaultImportClientBrandingAttributes
741
+ attr_accessor device_type_web: Types::DefaultImportClientBrandingAttributes
742
+ SENSITIVE: []
743
+ end
744
+
745
+ class ImportClientBrandingResult
746
+ attr_accessor device_type_windows: Types::DefaultClientBrandingAttributes
747
+ attr_accessor device_type_osx: Types::DefaultClientBrandingAttributes
748
+ attr_accessor device_type_android: Types::DefaultClientBrandingAttributes
749
+ attr_accessor device_type_ios: Types::IosClientBrandingAttributes
750
+ attr_accessor device_type_linux: Types::DefaultClientBrandingAttributes
751
+ attr_accessor device_type_web: Types::DefaultClientBrandingAttributes
752
+ SENSITIVE: []
753
+ end
754
+
755
+ class ImportWorkspaceImageRequest
756
+ attr_accessor ec2_image_id: ::String
757
+ attr_accessor ingestion_process: ("BYOL_REGULAR" | "BYOL_GRAPHICS" | "BYOL_GRAPHICSPRO" | "BYOL_GRAPHICS_G4DN" | "BYOL_REGULAR_WSP" | "BYOL_REGULAR_BYOP" | "BYOL_GRAPHICS_G4DN_BYOP")
758
+ attr_accessor image_name: ::String
759
+ attr_accessor image_description: ::String
760
+ attr_accessor tags: ::Array[Types::Tag]
761
+ attr_accessor applications: ::Array[("Microsoft_Office_2016" | "Microsoft_Office_2019")]
762
+ SENSITIVE: []
763
+ end
764
+
765
+ class ImportWorkspaceImageResult
766
+ attr_accessor image_id: ::String
767
+ SENSITIVE: []
768
+ end
769
+
770
+ class IncompatibleApplicationsException < Aws::EmptyStructure
771
+ end
772
+
773
+ class InvalidParameterValuesException
774
+ attr_accessor message: ::String
775
+ SENSITIVE: []
776
+ end
777
+
778
+ class InvalidResourceStateException
779
+ attr_accessor message: ::String
780
+ SENSITIVE: []
781
+ end
782
+
783
+ class IosClientBrandingAttributes
784
+ attr_accessor logo_url: ::String
785
+ attr_accessor logo_2x_url: ::String
786
+ attr_accessor logo_3x_url: ::String
787
+ attr_accessor support_email: ::String
788
+ attr_accessor support_link: ::String
789
+ attr_accessor forgot_password_link: ::String
790
+ attr_accessor login_message: ::Hash[::String, ::String]
791
+ SENSITIVE: []
792
+ end
793
+
794
+ class IosImportClientBrandingAttributes
795
+ attr_accessor logo: ::String
796
+ attr_accessor logo_2x: ::String
797
+ attr_accessor logo_3x: ::String
798
+ attr_accessor support_email: ::String
799
+ attr_accessor support_link: ::String
800
+ attr_accessor forgot_password_link: ::String
801
+ attr_accessor login_message: ::Hash[::String, ::String]
802
+ SENSITIVE: []
803
+ end
804
+
805
+ class IpRuleItem
806
+ attr_accessor ip_rule: ::String
807
+ attr_accessor rule_desc: ::String
808
+ SENSITIVE: []
809
+ end
810
+
811
+ class ListAvailableManagementCidrRangesRequest
812
+ attr_accessor management_cidr_range_constraint: ::String
813
+ attr_accessor max_results: ::Integer
814
+ attr_accessor next_token: ::String
815
+ SENSITIVE: []
816
+ end
817
+
818
+ class ListAvailableManagementCidrRangesResult
819
+ attr_accessor management_cidr_ranges: ::Array[::String]
820
+ attr_accessor next_token: ::String
821
+ SENSITIVE: []
822
+ end
823
+
824
+ class MigrateWorkspaceRequest
825
+ attr_accessor source_workspace_id: ::String
826
+ attr_accessor bundle_id: ::String
827
+ SENSITIVE: []
828
+ end
829
+
830
+ class MigrateWorkspaceResult
831
+ attr_accessor source_workspace_id: ::String
832
+ attr_accessor target_workspace_id: ::String
833
+ SENSITIVE: []
834
+ end
835
+
836
+ class ModificationState
837
+ attr_accessor resource: ("ROOT_VOLUME" | "USER_VOLUME" | "COMPUTE_TYPE")
838
+ attr_accessor state: ("UPDATE_INITIATED" | "UPDATE_IN_PROGRESS")
839
+ SENSITIVE: []
840
+ end
841
+
842
+ class ModifyAccountRequest
843
+ attr_accessor dedicated_tenancy_support: ("ENABLED")
844
+ attr_accessor dedicated_tenancy_management_cidr_range: ::String
845
+ SENSITIVE: []
846
+ end
847
+
848
+ class ModifyAccountResult < Aws::EmptyStructure
849
+ end
850
+
851
+ class ModifyCertificateBasedAuthPropertiesRequest
852
+ attr_accessor resource_id: ::String
853
+ attr_accessor certificate_based_auth_properties: Types::CertificateBasedAuthProperties
854
+ attr_accessor properties_to_delete: ::Array[("CERTIFICATE_BASED_AUTH_PROPERTIES_CERTIFICATE_AUTHORITY_ARN")]
855
+ SENSITIVE: []
856
+ end
857
+
858
+ class ModifyCertificateBasedAuthPropertiesResult < Aws::EmptyStructure
859
+ end
860
+
861
+ class ModifyClientPropertiesRequest
862
+ attr_accessor resource_id: ::String
863
+ attr_accessor client_properties: Types::ClientProperties
864
+ SENSITIVE: []
865
+ end
866
+
867
+ class ModifyClientPropertiesResult < Aws::EmptyStructure
868
+ end
869
+
870
+ class ModifySamlPropertiesRequest
871
+ attr_accessor resource_id: ::String
872
+ attr_accessor saml_properties: Types::SamlProperties
873
+ attr_accessor properties_to_delete: ::Array[("SAML_PROPERTIES_USER_ACCESS_URL" | "SAML_PROPERTIES_RELAY_STATE_PARAMETER_NAME")]
874
+ SENSITIVE: []
875
+ end
876
+
877
+ class ModifySamlPropertiesResult < Aws::EmptyStructure
878
+ end
879
+
880
+ class ModifySelfservicePermissionsRequest
881
+ attr_accessor resource_id: ::String
882
+ attr_accessor selfservice_permissions: Types::SelfservicePermissions
883
+ SENSITIVE: []
884
+ end
885
+
886
+ class ModifySelfservicePermissionsResult < Aws::EmptyStructure
887
+ end
888
+
889
+ class ModifyWorkspaceAccessPropertiesRequest
890
+ attr_accessor resource_id: ::String
891
+ attr_accessor workspace_access_properties: Types::WorkspaceAccessProperties
892
+ SENSITIVE: []
893
+ end
894
+
895
+ class ModifyWorkspaceAccessPropertiesResult < Aws::EmptyStructure
896
+ end
897
+
898
+ class ModifyWorkspaceCreationPropertiesRequest
899
+ attr_accessor resource_id: ::String
900
+ attr_accessor workspace_creation_properties: Types::WorkspaceCreationProperties
901
+ SENSITIVE: []
902
+ end
903
+
904
+ class ModifyWorkspaceCreationPropertiesResult < Aws::EmptyStructure
905
+ end
906
+
907
+ class ModifyWorkspacePropertiesRequest
908
+ attr_accessor workspace_id: ::String
909
+ attr_accessor workspace_properties: Types::WorkspaceProperties
910
+ attr_accessor data_replication: ("NO_REPLICATION" | "PRIMARY_AS_SOURCE")
911
+ SENSITIVE: []
912
+ end
913
+
914
+ class ModifyWorkspacePropertiesResult < Aws::EmptyStructure
915
+ end
916
+
917
+ class ModifyWorkspaceStateRequest
918
+ attr_accessor workspace_id: ::String
919
+ attr_accessor workspace_state: ("AVAILABLE" | "ADMIN_MAINTENANCE")
920
+ SENSITIVE: []
921
+ end
922
+
923
+ class ModifyWorkspaceStateResult < Aws::EmptyStructure
924
+ end
925
+
926
+ class OperatingSystem
927
+ attr_accessor type: ("WINDOWS" | "LINUX")
928
+ SENSITIVE: []
929
+ end
930
+
931
+ class OperatingSystemNotCompatibleException < Aws::EmptyStructure
932
+ end
933
+
934
+ class OperationInProgressException
935
+ attr_accessor message: ::String
936
+ SENSITIVE: []
937
+ end
938
+
939
+ class OperationNotSupportedException
940
+ attr_accessor message: ::String
941
+ attr_accessor reason: ::String
942
+ SENSITIVE: []
943
+ end
944
+
945
+ class PendingCreateStandbyWorkspacesRequest
946
+ attr_accessor user_name: ::String
947
+ attr_accessor directory_id: ::String
948
+ attr_accessor state: ("PENDING" | "AVAILABLE" | "IMPAIRED" | "UNHEALTHY" | "REBOOTING" | "STARTING" | "REBUILDING" | "RESTORING" | "MAINTENANCE" | "ADMIN_MAINTENANCE" | "TERMINATING" | "TERMINATED" | "SUSPENDED" | "UPDATING" | "STOPPING" | "STOPPED" | "ERROR")
949
+ attr_accessor workspace_id: ::String
950
+ SENSITIVE: []
951
+ end
952
+
953
+ class RebootRequest
954
+ attr_accessor workspace_id: ::String
955
+ SENSITIVE: []
956
+ end
957
+
958
+ class RebootWorkspacesRequest
959
+ attr_accessor reboot_workspace_requests: ::Array[Types::RebootRequest]
960
+ SENSITIVE: []
961
+ end
962
+
963
+ class RebootWorkspacesResult
964
+ attr_accessor failed_requests: ::Array[Types::FailedWorkspaceChangeRequest]
965
+ SENSITIVE: []
966
+ end
967
+
968
+ class RebuildRequest
969
+ attr_accessor workspace_id: ::String
970
+ SENSITIVE: []
971
+ end
972
+
973
+ class RebuildWorkspacesRequest
974
+ attr_accessor rebuild_workspace_requests: ::Array[Types::RebuildRequest]
975
+ SENSITIVE: []
976
+ end
977
+
978
+ class RebuildWorkspacesResult
979
+ attr_accessor failed_requests: ::Array[Types::FailedWorkspaceChangeRequest]
980
+ SENSITIVE: []
981
+ end
982
+
983
+ class RegisterWorkspaceDirectoryRequest
984
+ attr_accessor directory_id: ::String
985
+ attr_accessor subnet_ids: ::Array[::String]
986
+ attr_accessor enable_work_docs: bool
987
+ attr_accessor enable_self_service: bool
988
+ attr_accessor tenancy: ("DEDICATED" | "SHARED")
989
+ attr_accessor tags: ::Array[Types::Tag]
990
+ SENSITIVE: []
991
+ end
992
+
993
+ class RegisterWorkspaceDirectoryResult < Aws::EmptyStructure
994
+ end
995
+
996
+ class RelatedWorkspaceProperties
997
+ attr_accessor workspace_id: ::String
998
+ attr_accessor region: ::String
999
+ attr_accessor state: ("PENDING" | "AVAILABLE" | "IMPAIRED" | "UNHEALTHY" | "REBOOTING" | "STARTING" | "REBUILDING" | "RESTORING" | "MAINTENANCE" | "ADMIN_MAINTENANCE" | "TERMINATING" | "TERMINATED" | "SUSPENDED" | "UPDATING" | "STOPPING" | "STOPPED" | "ERROR")
1000
+ attr_accessor type: ("PRIMARY" | "STANDBY")
1001
+ SENSITIVE: []
1002
+ end
1003
+
1004
+ class ResourceAlreadyExistsException
1005
+ attr_accessor message: ::String
1006
+ SENSITIVE: []
1007
+ end
1008
+
1009
+ class ResourceAssociatedException
1010
+ attr_accessor message: ::String
1011
+ SENSITIVE: []
1012
+ end
1013
+
1014
+ class ResourceCreationFailedException
1015
+ attr_accessor message: ::String
1016
+ SENSITIVE: []
1017
+ end
1018
+
1019
+ class ResourceInUseException
1020
+ attr_accessor message: ::String
1021
+ attr_accessor resource_id: ::String
1022
+ SENSITIVE: []
1023
+ end
1024
+
1025
+ class ResourceLimitExceededException
1026
+ attr_accessor message: ::String
1027
+ SENSITIVE: []
1028
+ end
1029
+
1030
+ class ResourceNotFoundException
1031
+ attr_accessor message: ::String
1032
+ attr_accessor resource_id: ::String
1033
+ SENSITIVE: []
1034
+ end
1035
+
1036
+ class ResourceUnavailableException
1037
+ attr_accessor message: ::String
1038
+ attr_accessor resource_id: ::String
1039
+ SENSITIVE: []
1040
+ end
1041
+
1042
+ class RestoreWorkspaceRequest
1043
+ attr_accessor workspace_id: ::String
1044
+ SENSITIVE: []
1045
+ end
1046
+
1047
+ class RestoreWorkspaceResult < Aws::EmptyStructure
1048
+ end
1049
+
1050
+ class RevokeIpRulesRequest
1051
+ attr_accessor group_id: ::String
1052
+ attr_accessor user_rules: ::Array[::String]
1053
+ SENSITIVE: []
1054
+ end
1055
+
1056
+ class RevokeIpRulesResult < Aws::EmptyStructure
1057
+ end
1058
+
1059
+ class RootStorage
1060
+ attr_accessor capacity: ::String
1061
+ SENSITIVE: []
1062
+ end
1063
+
1064
+ class SamlProperties
1065
+ attr_accessor status: ("DISABLED" | "ENABLED" | "ENABLED_WITH_DIRECTORY_LOGIN_FALLBACK")
1066
+ attr_accessor user_access_url: ::String
1067
+ attr_accessor relay_state_parameter_name: ::String
1068
+ SENSITIVE: []
1069
+ end
1070
+
1071
+ class SelfservicePermissions
1072
+ attr_accessor restart_workspace: ("ENABLED" | "DISABLED")
1073
+ attr_accessor increase_volume_size: ("ENABLED" | "DISABLED")
1074
+ attr_accessor change_compute_type: ("ENABLED" | "DISABLED")
1075
+ attr_accessor switch_running_mode: ("ENABLED" | "DISABLED")
1076
+ attr_accessor rebuild_workspace: ("ENABLED" | "DISABLED")
1077
+ SENSITIVE: []
1078
+ end
1079
+
1080
+ class Snapshot
1081
+ attr_accessor snapshot_time: ::Time
1082
+ SENSITIVE: []
1083
+ end
1084
+
1085
+ class StandbyWorkspace
1086
+ attr_accessor primary_workspace_id: ::String
1087
+ attr_accessor volume_encryption_key: ::String
1088
+ attr_accessor directory_id: ::String
1089
+ attr_accessor tags: ::Array[Types::Tag]
1090
+ attr_accessor data_replication: ("NO_REPLICATION" | "PRIMARY_AS_SOURCE")
1091
+ SENSITIVE: []
1092
+ end
1093
+
1094
+ class StandbyWorkspacesProperties
1095
+ attr_accessor standby_workspace_id: ::String
1096
+ attr_accessor data_replication: ("NO_REPLICATION" | "PRIMARY_AS_SOURCE")
1097
+ attr_accessor recovery_snapshot_time: ::Time
1098
+ SENSITIVE: []
1099
+ end
1100
+
1101
+ class StartRequest
1102
+ attr_accessor workspace_id: ::String
1103
+ SENSITIVE: []
1104
+ end
1105
+
1106
+ class StartWorkspacesRequest
1107
+ attr_accessor start_workspace_requests: ::Array[Types::StartRequest]
1108
+ SENSITIVE: []
1109
+ end
1110
+
1111
+ class StartWorkspacesResult
1112
+ attr_accessor failed_requests: ::Array[Types::FailedWorkspaceChangeRequest]
1113
+ SENSITIVE: []
1114
+ end
1115
+
1116
+ class StopRequest
1117
+ attr_accessor workspace_id: ::String
1118
+ SENSITIVE: []
1119
+ end
1120
+
1121
+ class StopWorkspacesRequest
1122
+ attr_accessor stop_workspace_requests: ::Array[Types::StopRequest]
1123
+ SENSITIVE: []
1124
+ end
1125
+
1126
+ class StopWorkspacesResult
1127
+ attr_accessor failed_requests: ::Array[Types::FailedWorkspaceChangeRequest]
1128
+ SENSITIVE: []
1129
+ end
1130
+
1131
+ class Tag
1132
+ attr_accessor key: ::String
1133
+ attr_accessor value: ::String
1134
+ SENSITIVE: []
1135
+ end
1136
+
1137
+ class TerminateRequest
1138
+ attr_accessor workspace_id: ::String
1139
+ SENSITIVE: []
1140
+ end
1141
+
1142
+ class TerminateWorkspacesRequest
1143
+ attr_accessor terminate_workspace_requests: ::Array[Types::TerminateRequest]
1144
+ SENSITIVE: []
1145
+ end
1146
+
1147
+ class TerminateWorkspacesResult
1148
+ attr_accessor failed_requests: ::Array[Types::FailedWorkspaceChangeRequest]
1149
+ SENSITIVE: []
1150
+ end
1151
+
1152
+ class UnsupportedNetworkConfigurationException
1153
+ attr_accessor message: ::String
1154
+ SENSITIVE: []
1155
+ end
1156
+
1157
+ class UnsupportedWorkspaceConfigurationException
1158
+ attr_accessor message: ::String
1159
+ SENSITIVE: []
1160
+ end
1161
+
1162
+ class UpdateConnectClientAddInRequest
1163
+ attr_accessor add_in_id: ::String
1164
+ attr_accessor resource_id: ::String
1165
+ attr_accessor name: ::String
1166
+ attr_accessor url: ::String
1167
+ SENSITIVE: []
1168
+ end
1169
+
1170
+ class UpdateConnectClientAddInResult < Aws::EmptyStructure
1171
+ end
1172
+
1173
+ class UpdateConnectionAliasPermissionRequest
1174
+ attr_accessor alias_id: ::String
1175
+ attr_accessor connection_alias_permission: Types::ConnectionAliasPermission
1176
+ SENSITIVE: []
1177
+ end
1178
+
1179
+ class UpdateConnectionAliasPermissionResult < Aws::EmptyStructure
1180
+ end
1181
+
1182
+ class UpdateResult
1183
+ attr_accessor update_available: bool
1184
+ attr_accessor description: ::String
1185
+ SENSITIVE: []
1186
+ end
1187
+
1188
+ class UpdateRulesOfIpGroupRequest
1189
+ attr_accessor group_id: ::String
1190
+ attr_accessor user_rules: ::Array[Types::IpRuleItem]
1191
+ SENSITIVE: []
1192
+ end
1193
+
1194
+ class UpdateRulesOfIpGroupResult < Aws::EmptyStructure
1195
+ end
1196
+
1197
+ class UpdateWorkspaceBundleRequest
1198
+ attr_accessor bundle_id: ::String
1199
+ attr_accessor image_id: ::String
1200
+ SENSITIVE: []
1201
+ end
1202
+
1203
+ class UpdateWorkspaceBundleResult < Aws::EmptyStructure
1204
+ end
1205
+
1206
+ class UpdateWorkspaceImagePermissionRequest
1207
+ attr_accessor image_id: ::String
1208
+ attr_accessor allow_copy_image: bool
1209
+ attr_accessor shared_account_id: ::String
1210
+ SENSITIVE: []
1211
+ end
1212
+
1213
+ class UpdateWorkspaceImagePermissionResult < Aws::EmptyStructure
1214
+ end
1215
+
1216
+ class UserStorage
1217
+ attr_accessor capacity: ::String
1218
+ SENSITIVE: []
1219
+ end
1220
+
1221
+ class WorkSpaceApplication
1222
+ attr_accessor application_id: ::String
1223
+ attr_accessor created: ::Time
1224
+ attr_accessor description: ::String
1225
+ attr_accessor license_type: ("LICENSED" | "UNLICENSED")
1226
+ attr_accessor name: ::String
1227
+ attr_accessor owner: ::String
1228
+ attr_accessor state: ("PENDING" | "ERROR" | "AVAILABLE" | "UNINSTALL_ONLY")
1229
+ attr_accessor supported_compute_type_names: ::Array[("VALUE" | "STANDARD" | "PERFORMANCE" | "POWER" | "GRAPHICS" | "POWERPRO" | "GRAPHICSPRO" | "GRAPHICS_G4DN" | "GRAPHICSPRO_G4DN")]
1230
+ attr_accessor supported_operating_system_names: ::Array[("AMAZON_LINUX_2" | "UBUNTU_18_04" | "UBUNTU_20_04" | "UBUNTU_22_04" | "UNKNOWN" | "WINDOWS_10" | "WINDOWS_11" | "WINDOWS_7" | "WINDOWS_SERVER_2016" | "WINDOWS_SERVER_2019" | "WINDOWS_SERVER_2022")]
1231
+ SENSITIVE: []
1232
+ end
1233
+
1234
+ class WorkSpaceApplicationDeployment
1235
+ attr_accessor associations: ::Array[Types::WorkspaceResourceAssociation]
1236
+ SENSITIVE: []
1237
+ end
1238
+
1239
+ class Workspace
1240
+ attr_accessor workspace_id: ::String
1241
+ attr_accessor directory_id: ::String
1242
+ attr_accessor user_name: ::String
1243
+ attr_accessor ip_address: ::String
1244
+ attr_accessor state: ("PENDING" | "AVAILABLE" | "IMPAIRED" | "UNHEALTHY" | "REBOOTING" | "STARTING" | "REBUILDING" | "RESTORING" | "MAINTENANCE" | "ADMIN_MAINTENANCE" | "TERMINATING" | "TERMINATED" | "SUSPENDED" | "UPDATING" | "STOPPING" | "STOPPED" | "ERROR")
1245
+ attr_accessor bundle_id: ::String
1246
+ attr_accessor subnet_id: ::String
1247
+ attr_accessor error_message: ::String
1248
+ attr_accessor error_code: ::String
1249
+ attr_accessor computer_name: ::String
1250
+ attr_accessor volume_encryption_key: ::String
1251
+ attr_accessor user_volume_encryption_enabled: bool
1252
+ attr_accessor root_volume_encryption_enabled: bool
1253
+ attr_accessor workspace_properties: Types::WorkspaceProperties
1254
+ attr_accessor modification_states: ::Array[Types::ModificationState]
1255
+ attr_accessor related_workspaces: ::Array[Types::RelatedWorkspaceProperties]
1256
+ attr_accessor data_replication_settings: Types::DataReplicationSettings
1257
+ attr_accessor standby_workspaces_properties: ::Array[Types::StandbyWorkspacesProperties]
1258
+ SENSITIVE: []
1259
+ end
1260
+
1261
+ class WorkspaceAccessProperties
1262
+ attr_accessor device_type_windows: ("ALLOW" | "DENY")
1263
+ attr_accessor device_type_osx: ("ALLOW" | "DENY")
1264
+ attr_accessor device_type_web: ("ALLOW" | "DENY")
1265
+ attr_accessor device_type_ios: ("ALLOW" | "DENY")
1266
+ attr_accessor device_type_android: ("ALLOW" | "DENY")
1267
+ attr_accessor device_type_chrome_os: ("ALLOW" | "DENY")
1268
+ attr_accessor device_type_zero_client: ("ALLOW" | "DENY")
1269
+ attr_accessor device_type_linux: ("ALLOW" | "DENY")
1270
+ SENSITIVE: []
1271
+ end
1272
+
1273
+ class WorkspaceBundle
1274
+ attr_accessor bundle_id: ::String
1275
+ attr_accessor name: ::String
1276
+ attr_accessor owner: ::String
1277
+ attr_accessor description: ::String
1278
+ attr_accessor image_id: ::String
1279
+ attr_accessor root_storage: Types::RootStorage
1280
+ attr_accessor user_storage: Types::UserStorage
1281
+ attr_accessor compute_type: Types::ComputeType
1282
+ attr_accessor last_updated_time: ::Time
1283
+ attr_accessor creation_time: ::Time
1284
+ attr_accessor state: ("AVAILABLE" | "PENDING" | "ERROR")
1285
+ attr_accessor bundle_type: ("REGULAR" | "STANDBY")
1286
+ SENSITIVE: []
1287
+ end
1288
+
1289
+ class WorkspaceConnectionStatus
1290
+ attr_accessor workspace_id: ::String
1291
+ attr_accessor connection_state: ("CONNECTED" | "DISCONNECTED" | "UNKNOWN")
1292
+ attr_accessor connection_state_check_timestamp: ::Time
1293
+ attr_accessor last_known_user_connection_timestamp: ::Time
1294
+ SENSITIVE: []
1295
+ end
1296
+
1297
+ class WorkspaceCreationProperties
1298
+ attr_accessor enable_work_docs: bool
1299
+ attr_accessor enable_internet_access: bool
1300
+ attr_accessor default_ou: ::String
1301
+ attr_accessor custom_security_group_id: ::String
1302
+ attr_accessor user_enabled_as_local_administrator: bool
1303
+ attr_accessor enable_maintenance_mode: bool
1304
+ SENSITIVE: []
1305
+ end
1306
+
1307
+ class WorkspaceDirectory
1308
+ attr_accessor directory_id: ::String
1309
+ attr_accessor alias: ::String
1310
+ attr_accessor directory_name: ::String
1311
+ attr_accessor registration_code: ::String
1312
+ attr_accessor subnet_ids: ::Array[::String]
1313
+ attr_accessor dns_ip_addresses: ::Array[::String]
1314
+ attr_accessor customer_user_name: ::String
1315
+ attr_accessor iam_role_id: ::String
1316
+ attr_accessor directory_type: ("SIMPLE_AD" | "AD_CONNECTOR")
1317
+ attr_accessor workspace_security_group_id: ::String
1318
+ attr_accessor state: ("REGISTERING" | "REGISTERED" | "DEREGISTERING" | "DEREGISTERED" | "ERROR")
1319
+ attr_accessor workspace_creation_properties: Types::DefaultWorkspaceCreationProperties
1320
+ attr_accessor ip_group_ids: ::Array[::String]
1321
+ attr_accessor workspace_access_properties: Types::WorkspaceAccessProperties
1322
+ attr_accessor tenancy: ("DEDICATED" | "SHARED")
1323
+ attr_accessor selfservice_permissions: Types::SelfservicePermissions
1324
+ attr_accessor saml_properties: Types::SamlProperties
1325
+ attr_accessor certificate_based_auth_properties: Types::CertificateBasedAuthProperties
1326
+ SENSITIVE: []
1327
+ end
1328
+
1329
+ class WorkspaceImage
1330
+ attr_accessor image_id: ::String
1331
+ attr_accessor name: ::String
1332
+ attr_accessor description: ::String
1333
+ attr_accessor operating_system: Types::OperatingSystem
1334
+ attr_accessor state: ("AVAILABLE" | "PENDING" | "ERROR")
1335
+ attr_accessor required_tenancy: ("DEFAULT" | "DEDICATED")
1336
+ attr_accessor error_code: ::String
1337
+ attr_accessor error_message: ::String
1338
+ attr_accessor created: ::Time
1339
+ attr_accessor owner_account_id: ::String
1340
+ attr_accessor updates: Types::UpdateResult
1341
+ attr_accessor error_details: ::Array[Types::ErrorDetails]
1342
+ SENSITIVE: []
1343
+ end
1344
+
1345
+ class WorkspaceProperties
1346
+ attr_accessor running_mode: ("AUTO_STOP" | "ALWAYS_ON" | "MANUAL")
1347
+ attr_accessor running_mode_auto_stop_timeout_in_minutes: ::Integer
1348
+ attr_accessor root_volume_size_gib: ::Integer
1349
+ attr_accessor user_volume_size_gib: ::Integer
1350
+ attr_accessor compute_type_name: ("VALUE" | "STANDARD" | "PERFORMANCE" | "POWER" | "GRAPHICS" | "POWERPRO" | "GRAPHICSPRO" | "GRAPHICS_G4DN" | "GRAPHICSPRO_G4DN")
1351
+ attr_accessor protocols: ::Array[("PCOIP" | "WSP")]
1352
+ attr_accessor operating_system_name: ("AMAZON_LINUX_2" | "UBUNTU_18_04" | "UBUNTU_20_04" | "UBUNTU_22_04" | "UNKNOWN" | "WINDOWS_10" | "WINDOWS_11" | "WINDOWS_7" | "WINDOWS_SERVER_2016" | "WINDOWS_SERVER_2019" | "WINDOWS_SERVER_2022")
1353
+ SENSITIVE: []
1354
+ end
1355
+
1356
+ class WorkspaceRequest
1357
+ attr_accessor directory_id: ::String
1358
+ attr_accessor user_name: ::String
1359
+ attr_accessor bundle_id: ::String
1360
+ attr_accessor volume_encryption_key: ::String
1361
+ attr_accessor user_volume_encryption_enabled: bool
1362
+ attr_accessor root_volume_encryption_enabled: bool
1363
+ attr_accessor workspace_properties: Types::WorkspaceProperties
1364
+ attr_accessor tags: ::Array[Types::Tag]
1365
+ SENSITIVE: []
1366
+ end
1367
+
1368
+ class WorkspaceResourceAssociation
1369
+ attr_accessor associated_resource_id: ::String
1370
+ attr_accessor associated_resource_type: ("APPLICATION")
1371
+ attr_accessor created: ::Time
1372
+ attr_accessor last_updated_time: ::Time
1373
+ attr_accessor state: ("PENDING_INSTALL" | "PENDING_INSTALL_DEPLOYMENT" | "PENDING_UNINSTALL" | "PENDING_UNINSTALL_DEPLOYMENT" | "INSTALLING" | "UNINSTALLING" | "ERROR" | "COMPLETED" | "REMOVED")
1374
+ attr_accessor state_reason: Types::AssociationStateReason
1375
+ attr_accessor workspace_id: ::String
1376
+ SENSITIVE: []
1377
+ end
1378
+
1379
+ class WorkspacesDefaultRoleNotFoundException
1380
+ attr_accessor message: ::String
1381
+ SENSITIVE: []
1382
+ end
1383
+
1384
+ class WorkspacesIpGroup
1385
+ attr_accessor group_id: ::String
1386
+ attr_accessor group_name: ::String
1387
+ attr_accessor group_desc: ::String
1388
+ attr_accessor user_rules: ::Array[Types::IpRuleItem]
1389
+ SENSITIVE: []
1390
+ end
1391
+ end
1392
+ end