aws-sdk-workspacesweb 1.39.0 → 1.41.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fdd33e4f9c11e4f860a27f3017b722a61002236ff10947341277c89a52cdd38e
4
- data.tar.gz: 6176234aada08d7e9da125eb363e9275b54bdc3411e32a633d91584802679eb4
3
+ metadata.gz: e9cb2231f06bfaf90825ba5224c4b95a3676d1f52ac659d9a4321e088cdb2169
4
+ data.tar.gz: 4201a61584d453c8b546b613a0f1132d24272257f028ad2274cf28d901a616ce
5
5
  SHA512:
6
- metadata.gz: 4ba682aefc2b85a6db4b34984fe68f5b4669b05817c78e9241d3a83c6239605cc9f31be3fff0ced343c2f6b8a173f4c5274494136587487d42130061bae879e9
7
- data.tar.gz: 79f24ab10619ed590a7bef4c986ad8f9dd65473412a689496d3d15c855bcc80dbbb06b48f09f04162fe812722c93475128a42023945f6229765ac0ff62b8d223
6
+ metadata.gz: c57658978b263c40e3ef6df1f11139fe7440bf3b73ab2b37fc777f7d77d3b53edfa8b8e90e0e002a1d60575cd85ff36333e2a1a6d93aa773c1da8a8819428626
7
+ data.tar.gz: 43df774451a8db1d6668ca52983a8daa29b2ab804edd71d90b64d787b1b1a90a5b1bc9906c7148edf766be2723c75e137d17faee93c9986afa85db135c8c64c3
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.41.0 (2025-05-01)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.40.0 (2025-02-20)
10
+ ------------------
11
+
12
+ * Feature - Add support for toolbar configuration under user settings.
13
+
4
14
  1.39.0 (2025-02-18)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.39.0
1
+ 1.41.0
@@ -1399,6 +1399,13 @@ module Aws::WorkSpacesWeb
1399
1399
  # The tags to add to the user settings resource. A tag is a key-value
1400
1400
  # pair.
1401
1401
  #
1402
+ # @option params [Types::ToolbarConfiguration] :toolbar_configuration
1403
+ # The configuration of the toolbar. This allows administrators to select
1404
+ # the toolbar type and visual mode, set maximum display resolution for
1405
+ # sessions, and choose which items are visible to end users during their
1406
+ # sessions. If administrators do not modify these settings, end users
1407
+ # retain control over their toolbar preferences.
1408
+ #
1402
1409
  # @option params [required, String] :upload_allowed
1403
1410
  # Specifies whether the user can upload files from the local device to
1404
1411
  # the streaming session.
@@ -1444,6 +1451,12 @@ module Aws::WorkSpacesWeb
1444
1451
  # value: "TagValue", # required
1445
1452
  # },
1446
1453
  # ],
1454
+ # toolbar_configuration: {
1455
+ # hidden_toolbar_items: ["Windows"], # accepts Windows, DualMonitor, FullScreen, Webcam, Microphone
1456
+ # max_display_resolution: "size4096X2160", # accepts size4096X2160, size3840X2160, size3440X1440, size2560X1440, size1920X1080, size1280X720, size1024X768, size800X600
1457
+ # toolbar_type: "Floating", # accepts Floating, Docked
1458
+ # visual_mode: "Dark", # accepts Dark, Light
1459
+ # },
1447
1460
  # upload_allowed: "Disabled", # required, accepts Disabled, Enabled
1448
1461
  # })
1449
1462
  #
@@ -2286,6 +2299,11 @@ module Aws::WorkSpacesWeb
2286
2299
  # resp.user_settings.idle_disconnect_timeout_in_minutes #=> Integer
2287
2300
  # resp.user_settings.paste_allowed #=> String, one of "Disabled", "Enabled"
2288
2301
  # resp.user_settings.print_allowed #=> String, one of "Disabled", "Enabled"
2302
+ # resp.user_settings.toolbar_configuration.hidden_toolbar_items #=> Array
2303
+ # resp.user_settings.toolbar_configuration.hidden_toolbar_items[0] #=> String, one of "Windows", "DualMonitor", "FullScreen", "Webcam", "Microphone"
2304
+ # resp.user_settings.toolbar_configuration.max_display_resolution #=> String, one of "size4096X2160", "size3840X2160", "size3440X1440", "size2560X1440", "size1920X1080", "size1280X720", "size1024X768", "size800X600"
2305
+ # resp.user_settings.toolbar_configuration.toolbar_type #=> String, one of "Floating", "Docked"
2306
+ # resp.user_settings.toolbar_configuration.visual_mode #=> String, one of "Dark", "Light"
2289
2307
  # resp.user_settings.upload_allowed #=> String, one of "Disabled", "Enabled"
2290
2308
  # resp.user_settings.user_settings_arn #=> String
2291
2309
  #
@@ -2816,6 +2834,11 @@ module Aws::WorkSpacesWeb
2816
2834
  # resp.user_settings[0].idle_disconnect_timeout_in_minutes #=> Integer
2817
2835
  # resp.user_settings[0].paste_allowed #=> String, one of "Disabled", "Enabled"
2818
2836
  # resp.user_settings[0].print_allowed #=> String, one of "Disabled", "Enabled"
2837
+ # resp.user_settings[0].toolbar_configuration.hidden_toolbar_items #=> Array
2838
+ # resp.user_settings[0].toolbar_configuration.hidden_toolbar_items[0] #=> String, one of "Windows", "DualMonitor", "FullScreen", "Webcam", "Microphone"
2839
+ # resp.user_settings[0].toolbar_configuration.max_display_resolution #=> String, one of "size4096X2160", "size3840X2160", "size3440X1440", "size2560X1440", "size1920X1080", "size1280X720", "size1024X768", "size800X600"
2840
+ # resp.user_settings[0].toolbar_configuration.toolbar_type #=> String, one of "Floating", "Docked"
2841
+ # resp.user_settings[0].toolbar_configuration.visual_mode #=> String, one of "Dark", "Light"
2819
2842
  # resp.user_settings[0].upload_allowed #=> String, one of "Disabled", "Enabled"
2820
2843
  # resp.user_settings[0].user_settings_arn #=> String
2821
2844
  #
@@ -3539,6 +3562,13 @@ module Aws::WorkSpacesWeb
3539
3562
  # @option params [String] :print_allowed
3540
3563
  # Specifies whether the user can print to the local device.
3541
3564
  #
3565
+ # @option params [Types::ToolbarConfiguration] :toolbar_configuration
3566
+ # The configuration of the toolbar. This allows administrators to select
3567
+ # the toolbar type and visual mode, set maximum display resolution for
3568
+ # sessions, and choose which items are visible to end users during their
3569
+ # sessions. If administrators do not modify these settings, end users
3570
+ # retain control over their toolbar preferences.
3571
+ #
3542
3572
  # @option params [String] :upload_allowed
3543
3573
  # Specifies whether the user can upload files from the local device to
3544
3574
  # the streaming session.
@@ -3577,6 +3607,12 @@ module Aws::WorkSpacesWeb
3577
3607
  # idle_disconnect_timeout_in_minutes: 1,
3578
3608
  # paste_allowed: "Disabled", # accepts Disabled, Enabled
3579
3609
  # print_allowed: "Disabled", # accepts Disabled, Enabled
3610
+ # toolbar_configuration: {
3611
+ # hidden_toolbar_items: ["Windows"], # accepts Windows, DualMonitor, FullScreen, Webcam, Microphone
3612
+ # max_display_resolution: "size4096X2160", # accepts size4096X2160, size3840X2160, size3440X1440, size2560X1440, size1920X1080, size1280X720, size1024X768, size800X600
3613
+ # toolbar_type: "Floating", # accepts Floating, Docked
3614
+ # visual_mode: "Dark", # accepts Dark, Light
3615
+ # },
3580
3616
  # upload_allowed: "Disabled", # accepts Disabled, Enabled
3581
3617
  # user_settings_arn: "ARN", # required
3582
3618
  # })
@@ -3603,6 +3639,11 @@ module Aws::WorkSpacesWeb
3603
3639
  # resp.user_settings.idle_disconnect_timeout_in_minutes #=> Integer
3604
3640
  # resp.user_settings.paste_allowed #=> String, one of "Disabled", "Enabled"
3605
3641
  # resp.user_settings.print_allowed #=> String, one of "Disabled", "Enabled"
3642
+ # resp.user_settings.toolbar_configuration.hidden_toolbar_items #=> Array
3643
+ # resp.user_settings.toolbar_configuration.hidden_toolbar_items[0] #=> String, one of "Windows", "DualMonitor", "FullScreen", "Webcam", "Microphone"
3644
+ # resp.user_settings.toolbar_configuration.max_display_resolution #=> String, one of "size4096X2160", "size3840X2160", "size3440X1440", "size2560X1440", "size1920X1080", "size1280X720", "size1024X768", "size800X600"
3645
+ # resp.user_settings.toolbar_configuration.toolbar_type #=> String, one of "Floating", "Docked"
3646
+ # resp.user_settings.toolbar_configuration.visual_mode #=> String, one of "Dark", "Light"
3606
3647
  # resp.user_settings.upload_allowed #=> String, one of "Disabled", "Enabled"
3607
3648
  # resp.user_settings.user_settings_arn #=> String
3608
3649
  #
@@ -3633,7 +3674,7 @@ module Aws::WorkSpacesWeb
3633
3674
  tracer: tracer
3634
3675
  )
3635
3676
  context[:gem_name] = 'aws-sdk-workspacesweb'
3636
- context[:gem_version] = '1.39.0'
3677
+ context[:gem_version] = '1.41.0'
3637
3678
  Seahorse::Client::Request.new(handlers, context)
3638
3679
  end
3639
3680
 
@@ -145,6 +145,7 @@ module Aws::WorkSpacesWeb
145
145
  GetUserSettingsRequest = Shapes::StructureShape.new(name: 'GetUserSettingsRequest')
146
146
  GetUserSettingsResponse = Shapes::StructureShape.new(name: 'GetUserSettingsResponse')
147
147
  GlobalInlineRedactionUrls = Shapes::ListShape.new(name: 'GlobalInlineRedactionUrls')
148
+ HiddenToolbarItemList = Shapes::ListShape.new(name: 'HiddenToolbarItemList')
148
149
  IdentityProvider = Shapes::StructureShape.new(name: 'IdentityProvider')
149
150
  IdentityProviderDetails = Shapes::MapShape.new(name: 'IdentityProviderDetails')
150
151
  IdentityProviderList = Shapes::ListShape.new(name: 'IdentityProviderList')
@@ -193,6 +194,7 @@ module Aws::WorkSpacesWeb
193
194
  ListUserSettingsRequest = Shapes::StructureShape.new(name: 'ListUserSettingsRequest')
194
195
  ListUserSettingsResponse = Shapes::StructureShape.new(name: 'ListUserSettingsResponse')
195
196
  MaxConcurrentSessions = Shapes::IntegerShape.new(name: 'MaxConcurrentSessions')
197
+ MaxDisplayResolution = Shapes::StringShape.new(name: 'MaxDisplayResolution')
196
198
  MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
197
199
  NetworkSettings = Shapes::StructureShape.new(name: 'NetworkSettings')
198
200
  NetworkSettingsList = Shapes::ListShape.new(name: 'NetworkSettingsList')
@@ -242,6 +244,9 @@ module Aws::WorkSpacesWeb
242
244
  ThrottlingException = Shapes::StructureShape.new(name: 'ThrottlingException')
243
245
  Timestamp = Shapes::TimestampShape.new(name: 'Timestamp')
244
246
  TooManyTagsException = Shapes::StructureShape.new(name: 'TooManyTagsException')
247
+ ToolbarConfiguration = Shapes::StructureShape.new(name: 'ToolbarConfiguration')
248
+ ToolbarItem = Shapes::StringShape.new(name: 'ToolbarItem')
249
+ ToolbarType = Shapes::StringShape.new(name: 'ToolbarType')
245
250
  TrustStore = Shapes::StructureShape.new(name: 'TrustStore')
246
251
  TrustStoreSummary = Shapes::StructureShape.new(name: 'TrustStoreSummary')
247
252
  TrustStoreSummaryList = Shapes::ListShape.new(name: 'TrustStoreSummaryList')
@@ -276,6 +281,7 @@ module Aws::WorkSpacesWeb
276
281
  ValidationExceptionField = Shapes::StructureShape.new(name: 'ValidationExceptionField')
277
282
  ValidationExceptionFieldList = Shapes::ListShape.new(name: 'ValidationExceptionFieldList')
278
283
  ValidationExceptionReason = Shapes::StringShape.new(name: 'ValidationExceptionReason')
284
+ VisualMode = Shapes::StringShape.new(name: 'VisualMode')
279
285
  VpcId = Shapes::StringShape.new(name: 'VpcId')
280
286
  keyArn = Shapes::StringShape.new(name: 'keyArn')
281
287
 
@@ -391,7 +397,7 @@ module Aws::WorkSpacesWeb
391
397
 
392
398
  CreateBrowserSettingsRequest.add_member(:additional_encryption_context, Shapes::ShapeRef.new(shape: EncryptionContextMap, location_name: "additionalEncryptionContext"))
393
399
  CreateBrowserSettingsRequest.add_member(:browser_policy, Shapes::ShapeRef.new(shape: BrowserPolicy, required: true, location_name: "browserPolicy"))
394
- CreateBrowserSettingsRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
400
+ CreateBrowserSettingsRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
395
401
  CreateBrowserSettingsRequest.add_member(:customer_managed_key, Shapes::ShapeRef.new(shape: keyArn, location_name: "customerManagedKey"))
396
402
  CreateBrowserSettingsRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags"))
397
403
  CreateBrowserSettingsRequest.struct_class = Types::CreateBrowserSettingsRequest
@@ -400,7 +406,7 @@ module Aws::WorkSpacesWeb
400
406
  CreateBrowserSettingsResponse.struct_class = Types::CreateBrowserSettingsResponse
401
407
 
402
408
  CreateDataProtectionSettingsRequest.add_member(:additional_encryption_context, Shapes::ShapeRef.new(shape: EncryptionContextMap, location_name: "additionalEncryptionContext"))
403
- CreateDataProtectionSettingsRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
409
+ CreateDataProtectionSettingsRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
404
410
  CreateDataProtectionSettingsRequest.add_member(:customer_managed_key, Shapes::ShapeRef.new(shape: keyArn, location_name: "customerManagedKey"))
405
411
  CreateDataProtectionSettingsRequest.add_member(:description, Shapes::ShapeRef.new(shape: DescriptionSafe, location_name: "description"))
406
412
  CreateDataProtectionSettingsRequest.add_member(:display_name, Shapes::ShapeRef.new(shape: DisplayNameSafe, location_name: "displayName"))
@@ -411,7 +417,7 @@ module Aws::WorkSpacesWeb
411
417
  CreateDataProtectionSettingsResponse.add_member(:data_protection_settings_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location_name: "dataProtectionSettingsArn"))
412
418
  CreateDataProtectionSettingsResponse.struct_class = Types::CreateDataProtectionSettingsResponse
413
419
 
414
- CreateIdentityProviderRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
420
+ CreateIdentityProviderRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
415
421
  CreateIdentityProviderRequest.add_member(:identity_provider_details, Shapes::ShapeRef.new(shape: IdentityProviderDetails, required: true, location_name: "identityProviderDetails"))
416
422
  CreateIdentityProviderRequest.add_member(:identity_provider_name, Shapes::ShapeRef.new(shape: IdentityProviderName, required: true, location_name: "identityProviderName"))
417
423
  CreateIdentityProviderRequest.add_member(:identity_provider_type, Shapes::ShapeRef.new(shape: IdentityProviderType, required: true, location_name: "identityProviderType"))
@@ -423,7 +429,7 @@ module Aws::WorkSpacesWeb
423
429
  CreateIdentityProviderResponse.struct_class = Types::CreateIdentityProviderResponse
424
430
 
425
431
  CreateIpAccessSettingsRequest.add_member(:additional_encryption_context, Shapes::ShapeRef.new(shape: EncryptionContextMap, location_name: "additionalEncryptionContext"))
426
- CreateIpAccessSettingsRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
432
+ CreateIpAccessSettingsRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
427
433
  CreateIpAccessSettingsRequest.add_member(:customer_managed_key, Shapes::ShapeRef.new(shape: keyArn, location_name: "customerManagedKey"))
428
434
  CreateIpAccessSettingsRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
429
435
  CreateIpAccessSettingsRequest.add_member(:display_name, Shapes::ShapeRef.new(shape: DisplayName, location_name: "displayName"))
@@ -434,7 +440,7 @@ module Aws::WorkSpacesWeb
434
440
  CreateIpAccessSettingsResponse.add_member(:ip_access_settings_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location_name: "ipAccessSettingsArn"))
435
441
  CreateIpAccessSettingsResponse.struct_class = Types::CreateIpAccessSettingsResponse
436
442
 
437
- CreateNetworkSettingsRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
443
+ CreateNetworkSettingsRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
438
444
  CreateNetworkSettingsRequest.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: SecurityGroupIdList, required: true, location_name: "securityGroupIds"))
439
445
  CreateNetworkSettingsRequest.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: SubnetIdList, required: true, location_name: "subnetIds"))
440
446
  CreateNetworkSettingsRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags"))
@@ -446,7 +452,7 @@ module Aws::WorkSpacesWeb
446
452
 
447
453
  CreatePortalRequest.add_member(:additional_encryption_context, Shapes::ShapeRef.new(shape: EncryptionContextMap, location_name: "additionalEncryptionContext"))
448
454
  CreatePortalRequest.add_member(:authentication_type, Shapes::ShapeRef.new(shape: AuthenticationType, location_name: "authenticationType"))
449
- CreatePortalRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
455
+ CreatePortalRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
450
456
  CreatePortalRequest.add_member(:customer_managed_key, Shapes::ShapeRef.new(shape: keyArn, location_name: "customerManagedKey"))
451
457
  CreatePortalRequest.add_member(:display_name, Shapes::ShapeRef.new(shape: DisplayName, location_name: "displayName"))
452
458
  CreatePortalRequest.add_member(:instance_type, Shapes::ShapeRef.new(shape: InstanceType, location_name: "instanceType"))
@@ -459,14 +465,14 @@ module Aws::WorkSpacesWeb
459
465
  CreatePortalResponse.struct_class = Types::CreatePortalResponse
460
466
 
461
467
  CreateTrustStoreRequest.add_member(:certificate_list, Shapes::ShapeRef.new(shape: CertificateList, required: true, location_name: "certificateList"))
462
- CreateTrustStoreRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
468
+ CreateTrustStoreRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
463
469
  CreateTrustStoreRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags"))
464
470
  CreateTrustStoreRequest.struct_class = Types::CreateTrustStoreRequest
465
471
 
466
472
  CreateTrustStoreResponse.add_member(:trust_store_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location_name: "trustStoreArn"))
467
473
  CreateTrustStoreResponse.struct_class = Types::CreateTrustStoreResponse
468
474
 
469
- CreateUserAccessLoggingSettingsRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
475
+ CreateUserAccessLoggingSettingsRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
470
476
  CreateUserAccessLoggingSettingsRequest.add_member(:kinesis_stream_arn, Shapes::ShapeRef.new(shape: KinesisStreamArn, required: true, location_name: "kinesisStreamArn"))
471
477
  CreateUserAccessLoggingSettingsRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags"))
472
478
  CreateUserAccessLoggingSettingsRequest.struct_class = Types::CreateUserAccessLoggingSettingsRequest
@@ -475,7 +481,7 @@ module Aws::WorkSpacesWeb
475
481
  CreateUserAccessLoggingSettingsResponse.struct_class = Types::CreateUserAccessLoggingSettingsResponse
476
482
 
477
483
  CreateUserSettingsRequest.add_member(:additional_encryption_context, Shapes::ShapeRef.new(shape: EncryptionContextMap, location_name: "additionalEncryptionContext"))
478
- CreateUserSettingsRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
484
+ CreateUserSettingsRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
479
485
  CreateUserSettingsRequest.add_member(:cookie_synchronization_configuration, Shapes::ShapeRef.new(shape: CookieSynchronizationConfiguration, location_name: "cookieSynchronizationConfiguration"))
480
486
  CreateUserSettingsRequest.add_member(:copy_allowed, Shapes::ShapeRef.new(shape: EnabledType, required: true, location_name: "copyAllowed"))
481
487
  CreateUserSettingsRequest.add_member(:customer_managed_key, Shapes::ShapeRef.new(shape: keyArn, location_name: "customerManagedKey"))
@@ -486,6 +492,7 @@ module Aws::WorkSpacesWeb
486
492
  CreateUserSettingsRequest.add_member(:paste_allowed, Shapes::ShapeRef.new(shape: EnabledType, required: true, location_name: "pasteAllowed"))
487
493
  CreateUserSettingsRequest.add_member(:print_allowed, Shapes::ShapeRef.new(shape: EnabledType, required: true, location_name: "printAllowed"))
488
494
  CreateUserSettingsRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags"))
495
+ CreateUserSettingsRequest.add_member(:toolbar_configuration, Shapes::ShapeRef.new(shape: ToolbarConfiguration, location_name: "toolbarConfiguration"))
489
496
  CreateUserSettingsRequest.add_member(:upload_allowed, Shapes::ShapeRef.new(shape: EnabledType, required: true, location_name: "uploadAllowed"))
490
497
  CreateUserSettingsRequest.struct_class = Types::CreateUserSettingsRequest
491
498
 
@@ -683,6 +690,8 @@ module Aws::WorkSpacesWeb
683
690
 
684
691
  GlobalInlineRedactionUrls.member = Shapes::ShapeRef.new(shape: InlineRedactionUrl)
685
692
 
693
+ HiddenToolbarItemList.member = Shapes::ShapeRef.new(shape: ToolbarItem)
694
+
686
695
  IdentityProvider.add_member(:identity_provider_arn, Shapes::ShapeRef.new(shape: SubresourceARN, required: true, location_name: "identityProviderArn"))
687
696
  IdentityProvider.add_member(:identity_provider_details, Shapes::ShapeRef.new(shape: IdentityProviderDetails, location_name: "identityProviderDetails"))
688
697
  IdentityProvider.add_member(:identity_provider_name, Shapes::ShapeRef.new(shape: IdentityProviderName, location_name: "identityProviderName"))
@@ -952,7 +961,7 @@ module Aws::WorkSpacesWeb
952
961
 
953
962
  TagList.member = Shapes::ShapeRef.new(shape: Tag)
954
963
 
955
- TagResourceRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
964
+ TagResourceRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
956
965
  TagResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location: "uri", location_name: "resourceArn"))
957
966
  TagResourceRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, required: true, location_name: "tags"))
958
967
  TagResourceRequest.struct_class = Types::TagResourceRequest
@@ -969,6 +978,12 @@ module Aws::WorkSpacesWeb
969
978
  TooManyTagsException.add_member(:resource_name, Shapes::ShapeRef.new(shape: ARN, location_name: "resourceName"))
970
979
  TooManyTagsException.struct_class = Types::TooManyTagsException
971
980
 
981
+ ToolbarConfiguration.add_member(:hidden_toolbar_items, Shapes::ShapeRef.new(shape: HiddenToolbarItemList, location_name: "hiddenToolbarItems"))
982
+ ToolbarConfiguration.add_member(:max_display_resolution, Shapes::ShapeRef.new(shape: MaxDisplayResolution, location_name: "maxDisplayResolution"))
983
+ ToolbarConfiguration.add_member(:toolbar_type, Shapes::ShapeRef.new(shape: ToolbarType, location_name: "toolbarType"))
984
+ ToolbarConfiguration.add_member(:visual_mode, Shapes::ShapeRef.new(shape: VisualMode, location_name: "visualMode"))
985
+ ToolbarConfiguration.struct_class = Types::ToolbarConfiguration
986
+
972
987
  TrustStore.add_member(:associated_portal_arns, Shapes::ShapeRef.new(shape: ArnList, location_name: "associatedPortalArns"))
973
988
  TrustStore.add_member(:trust_store_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location_name: "trustStoreArn"))
974
989
  TrustStore.struct_class = Types::TrustStore
@@ -986,13 +1001,13 @@ module Aws::WorkSpacesWeb
986
1001
 
987
1002
  UpdateBrowserSettingsRequest.add_member(:browser_policy, Shapes::ShapeRef.new(shape: BrowserPolicy, location_name: "browserPolicy"))
988
1003
  UpdateBrowserSettingsRequest.add_member(:browser_settings_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location: "uri", location_name: "browserSettingsArn"))
989
- UpdateBrowserSettingsRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
1004
+ UpdateBrowserSettingsRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
990
1005
  UpdateBrowserSettingsRequest.struct_class = Types::UpdateBrowserSettingsRequest
991
1006
 
992
1007
  UpdateBrowserSettingsResponse.add_member(:browser_settings, Shapes::ShapeRef.new(shape: BrowserSettings, required: true, location_name: "browserSettings"))
993
1008
  UpdateBrowserSettingsResponse.struct_class = Types::UpdateBrowserSettingsResponse
994
1009
 
995
- UpdateDataProtectionSettingsRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
1010
+ UpdateDataProtectionSettingsRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
996
1011
  UpdateDataProtectionSettingsRequest.add_member(:data_protection_settings_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location: "uri", location_name: "dataProtectionSettingsArn"))
997
1012
  UpdateDataProtectionSettingsRequest.add_member(:description, Shapes::ShapeRef.new(shape: DescriptionSafe, location_name: "description"))
998
1013
  UpdateDataProtectionSettingsRequest.add_member(:display_name, Shapes::ShapeRef.new(shape: DisplayNameSafe, location_name: "displayName"))
@@ -1002,7 +1017,7 @@ module Aws::WorkSpacesWeb
1002
1017
  UpdateDataProtectionSettingsResponse.add_member(:data_protection_settings, Shapes::ShapeRef.new(shape: DataProtectionSettings, required: true, location_name: "dataProtectionSettings"))
1003
1018
  UpdateDataProtectionSettingsResponse.struct_class = Types::UpdateDataProtectionSettingsResponse
1004
1019
 
1005
- UpdateIdentityProviderRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
1020
+ UpdateIdentityProviderRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
1006
1021
  UpdateIdentityProviderRequest.add_member(:identity_provider_arn, Shapes::ShapeRef.new(shape: SubresourceARN, required: true, location: "uri", location_name: "identityProviderArn"))
1007
1022
  UpdateIdentityProviderRequest.add_member(:identity_provider_details, Shapes::ShapeRef.new(shape: IdentityProviderDetails, location_name: "identityProviderDetails"))
1008
1023
  UpdateIdentityProviderRequest.add_member(:identity_provider_name, Shapes::ShapeRef.new(shape: IdentityProviderName, location_name: "identityProviderName"))
@@ -1012,7 +1027,7 @@ module Aws::WorkSpacesWeb
1012
1027
  UpdateIdentityProviderResponse.add_member(:identity_provider, Shapes::ShapeRef.new(shape: IdentityProvider, required: true, location_name: "identityProvider"))
1013
1028
  UpdateIdentityProviderResponse.struct_class = Types::UpdateIdentityProviderResponse
1014
1029
 
1015
- UpdateIpAccessSettingsRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
1030
+ UpdateIpAccessSettingsRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
1016
1031
  UpdateIpAccessSettingsRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
1017
1032
  UpdateIpAccessSettingsRequest.add_member(:display_name, Shapes::ShapeRef.new(shape: DisplayName, location_name: "displayName"))
1018
1033
  UpdateIpAccessSettingsRequest.add_member(:ip_access_settings_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location: "uri", location_name: "ipAccessSettingsArn"))
@@ -1022,7 +1037,7 @@ module Aws::WorkSpacesWeb
1022
1037
  UpdateIpAccessSettingsResponse.add_member(:ip_access_settings, Shapes::ShapeRef.new(shape: IpAccessSettings, required: true, location_name: "ipAccessSettings"))
1023
1038
  UpdateIpAccessSettingsResponse.struct_class = Types::UpdateIpAccessSettingsResponse
1024
1039
 
1025
- UpdateNetworkSettingsRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
1040
+ UpdateNetworkSettingsRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
1026
1041
  UpdateNetworkSettingsRequest.add_member(:network_settings_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location: "uri", location_name: "networkSettingsArn"))
1027
1042
  UpdateNetworkSettingsRequest.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: SecurityGroupIdList, location_name: "securityGroupIds"))
1028
1043
  UpdateNetworkSettingsRequest.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: SubnetIdList, location_name: "subnetIds"))
@@ -1044,14 +1059,14 @@ module Aws::WorkSpacesWeb
1044
1059
 
1045
1060
  UpdateTrustStoreRequest.add_member(:certificates_to_add, Shapes::ShapeRef.new(shape: CertificateList, location_name: "certificatesToAdd"))
1046
1061
  UpdateTrustStoreRequest.add_member(:certificates_to_delete, Shapes::ShapeRef.new(shape: CertificateThumbprintList, location_name: "certificatesToDelete"))
1047
- UpdateTrustStoreRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
1062
+ UpdateTrustStoreRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
1048
1063
  UpdateTrustStoreRequest.add_member(:trust_store_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location: "uri", location_name: "trustStoreArn"))
1049
1064
  UpdateTrustStoreRequest.struct_class = Types::UpdateTrustStoreRequest
1050
1065
 
1051
1066
  UpdateTrustStoreResponse.add_member(:trust_store_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location_name: "trustStoreArn"))
1052
1067
  UpdateTrustStoreResponse.struct_class = Types::UpdateTrustStoreResponse
1053
1068
 
1054
- UpdateUserAccessLoggingSettingsRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
1069
+ UpdateUserAccessLoggingSettingsRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
1055
1070
  UpdateUserAccessLoggingSettingsRequest.add_member(:kinesis_stream_arn, Shapes::ShapeRef.new(shape: KinesisStreamArn, location_name: "kinesisStreamArn"))
1056
1071
  UpdateUserAccessLoggingSettingsRequest.add_member(:user_access_logging_settings_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location: "uri", location_name: "userAccessLoggingSettingsArn"))
1057
1072
  UpdateUserAccessLoggingSettingsRequest.struct_class = Types::UpdateUserAccessLoggingSettingsRequest
@@ -1059,7 +1074,7 @@ module Aws::WorkSpacesWeb
1059
1074
  UpdateUserAccessLoggingSettingsResponse.add_member(:user_access_logging_settings, Shapes::ShapeRef.new(shape: UserAccessLoggingSettings, required: true, location_name: "userAccessLoggingSettings"))
1060
1075
  UpdateUserAccessLoggingSettingsResponse.struct_class = Types::UpdateUserAccessLoggingSettingsResponse
1061
1076
 
1062
- UpdateUserSettingsRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
1077
+ UpdateUserSettingsRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
1063
1078
  UpdateUserSettingsRequest.add_member(:cookie_synchronization_configuration, Shapes::ShapeRef.new(shape: CookieSynchronizationConfiguration, location_name: "cookieSynchronizationConfiguration"))
1064
1079
  UpdateUserSettingsRequest.add_member(:copy_allowed, Shapes::ShapeRef.new(shape: EnabledType, location_name: "copyAllowed"))
1065
1080
  UpdateUserSettingsRequest.add_member(:deep_link_allowed, Shapes::ShapeRef.new(shape: EnabledType, location_name: "deepLinkAllowed"))
@@ -1068,6 +1083,7 @@ module Aws::WorkSpacesWeb
1068
1083
  UpdateUserSettingsRequest.add_member(:idle_disconnect_timeout_in_minutes, Shapes::ShapeRef.new(shape: IdleDisconnectTimeoutInMinutes, location_name: "idleDisconnectTimeoutInMinutes"))
1069
1084
  UpdateUserSettingsRequest.add_member(:paste_allowed, Shapes::ShapeRef.new(shape: EnabledType, location_name: "pasteAllowed"))
1070
1085
  UpdateUserSettingsRequest.add_member(:print_allowed, Shapes::ShapeRef.new(shape: EnabledType, location_name: "printAllowed"))
1086
+ UpdateUserSettingsRequest.add_member(:toolbar_configuration, Shapes::ShapeRef.new(shape: ToolbarConfiguration, location_name: "toolbarConfiguration"))
1071
1087
  UpdateUserSettingsRequest.add_member(:upload_allowed, Shapes::ShapeRef.new(shape: EnabledType, location_name: "uploadAllowed"))
1072
1088
  UpdateUserSettingsRequest.add_member(:user_settings_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location: "uri", location_name: "userSettingsArn"))
1073
1089
  UpdateUserSettingsRequest.struct_class = Types::UpdateUserSettingsRequest
@@ -1097,6 +1113,7 @@ module Aws::WorkSpacesWeb
1097
1113
  UserSettings.add_member(:idle_disconnect_timeout_in_minutes, Shapes::ShapeRef.new(shape: IdleDisconnectTimeoutInMinutes, location_name: "idleDisconnectTimeoutInMinutes"))
1098
1114
  UserSettings.add_member(:paste_allowed, Shapes::ShapeRef.new(shape: EnabledType, location_name: "pasteAllowed"))
1099
1115
  UserSettings.add_member(:print_allowed, Shapes::ShapeRef.new(shape: EnabledType, location_name: "printAllowed"))
1116
+ UserSettings.add_member(:toolbar_configuration, Shapes::ShapeRef.new(shape: ToolbarConfiguration, location_name: "toolbarConfiguration"))
1100
1117
  UserSettings.add_member(:upload_allowed, Shapes::ShapeRef.new(shape: EnabledType, location_name: "uploadAllowed"))
1101
1118
  UserSettings.add_member(:user_settings_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location_name: "userSettingsArn"))
1102
1119
  UserSettings.struct_class = Types::UserSettings
@@ -1111,6 +1128,7 @@ module Aws::WorkSpacesWeb
1111
1128
  UserSettingsSummary.add_member(:idle_disconnect_timeout_in_minutes, Shapes::ShapeRef.new(shape: IdleDisconnectTimeoutInMinutes, location_name: "idleDisconnectTimeoutInMinutes"))
1112
1129
  UserSettingsSummary.add_member(:paste_allowed, Shapes::ShapeRef.new(shape: EnabledType, location_name: "pasteAllowed"))
1113
1130
  UserSettingsSummary.add_member(:print_allowed, Shapes::ShapeRef.new(shape: EnabledType, location_name: "printAllowed"))
1131
+ UserSettingsSummary.add_member(:toolbar_configuration, Shapes::ShapeRef.new(shape: ToolbarConfiguration, location_name: "toolbarConfiguration"))
1114
1132
  UserSettingsSummary.add_member(:upload_allowed, Shapes::ShapeRef.new(shape: EnabledType, location_name: "uploadAllowed"))
1115
1133
  UserSettingsSummary.add_member(:user_settings_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location_name: "userSettingsArn"))
1116
1134
  UserSettingsSummary.struct_class = Types::UserSettingsSummary
@@ -1081,6 +1081,14 @@ module Aws::WorkSpacesWeb
1081
1081
  # pair.
1082
1082
  # @return [Array<Types::Tag>]
1083
1083
  #
1084
+ # @!attribute [rw] toolbar_configuration
1085
+ # The configuration of the toolbar. This allows administrators to
1086
+ # select the toolbar type and visual mode, set maximum display
1087
+ # resolution for sessions, and choose which items are visible to end
1088
+ # users during their sessions. If administrators do not modify these
1089
+ # settings, end users retain control over their toolbar preferences.
1090
+ # @return [Types::ToolbarConfiguration]
1091
+ #
1084
1092
  # @!attribute [rw] upload_allowed
1085
1093
  # Specifies whether the user can upload files from the local device to
1086
1094
  # the streaming session.
@@ -1101,6 +1109,7 @@ module Aws::WorkSpacesWeb
1101
1109
  :paste_allowed,
1102
1110
  :print_allowed,
1103
1111
  :tags,
1112
+ :toolbar_configuration,
1104
1113
  :upload_allowed)
1105
1114
  SENSITIVE = [:cookie_synchronization_configuration, :tags]
1106
1115
  include Aws::Structure
@@ -3172,6 +3181,39 @@ module Aws::WorkSpacesWeb
3172
3181
  include Aws::Structure
3173
3182
  end
3174
3183
 
3184
+ # The configuration of the toolbar. This allows administrators to select
3185
+ # the toolbar type and visual mode, set maximum display resolution for
3186
+ # sessions, and choose which items are visible to end users during their
3187
+ # sessions. If administrators do not modify these settings, end users
3188
+ # retain control over their toolbar preferences.
3189
+ #
3190
+ # @!attribute [rw] hidden_toolbar_items
3191
+ # The list of toolbar items to be hidden.
3192
+ # @return [Array<String>]
3193
+ #
3194
+ # @!attribute [rw] max_display_resolution
3195
+ # The maximum display resolution that is allowed for the session.
3196
+ # @return [String]
3197
+ #
3198
+ # @!attribute [rw] toolbar_type
3199
+ # The type of toolbar displayed during the session.
3200
+ # @return [String]
3201
+ #
3202
+ # @!attribute [rw] visual_mode
3203
+ # The visual mode of the toolbar.
3204
+ # @return [String]
3205
+ #
3206
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/ToolbarConfiguration AWS API Documentation
3207
+ #
3208
+ class ToolbarConfiguration < Struct.new(
3209
+ :hidden_toolbar_items,
3210
+ :max_display_resolution,
3211
+ :toolbar_type,
3212
+ :visual_mode)
3213
+ SENSITIVE = []
3214
+ include Aws::Structure
3215
+ end
3216
+
3175
3217
  # A trust store that can be associated with a web portal. A trust store
3176
3218
  # contains certificate authority (CA) certificates. Once associated with
3177
3219
  # a web portal, the browser in a streaming session will recognize
@@ -3769,6 +3811,14 @@ module Aws::WorkSpacesWeb
3769
3811
  # Specifies whether the user can print to the local device.
3770
3812
  # @return [String]
3771
3813
  #
3814
+ # @!attribute [rw] toolbar_configuration
3815
+ # The configuration of the toolbar. This allows administrators to
3816
+ # select the toolbar type and visual mode, set maximum display
3817
+ # resolution for sessions, and choose which items are visible to end
3818
+ # users during their sessions. If administrators do not modify these
3819
+ # settings, end users retain control over their toolbar preferences.
3820
+ # @return [Types::ToolbarConfiguration]
3821
+ #
3772
3822
  # @!attribute [rw] upload_allowed
3773
3823
  # Specifies whether the user can upload files from the local device to
3774
3824
  # the streaming session.
@@ -3790,6 +3840,7 @@ module Aws::WorkSpacesWeb
3790
3840
  :idle_disconnect_timeout_in_minutes,
3791
3841
  :paste_allowed,
3792
3842
  :print_allowed,
3843
+ :toolbar_configuration,
3793
3844
  :upload_allowed,
3794
3845
  :user_settings_arn)
3795
3846
  SENSITIVE = [:cookie_synchronization_configuration]
@@ -3912,6 +3963,14 @@ module Aws::WorkSpacesWeb
3912
3963
  # Specifies whether the user can print to the local device.
3913
3964
  # @return [String]
3914
3965
  #
3966
+ # @!attribute [rw] toolbar_configuration
3967
+ # The configuration of the toolbar. This allows administrators to
3968
+ # select the toolbar type and visual mode, set maximum display
3969
+ # resolution for sessions, and choose which items are visible to end
3970
+ # users during their sessions. If administrators do not modify these
3971
+ # settings, end users retain control over their toolbar preferences.
3972
+ # @return [Types::ToolbarConfiguration]
3973
+ #
3915
3974
  # @!attribute [rw] upload_allowed
3916
3975
  # Specifies whether the user can upload files from the local device to
3917
3976
  # the streaming session.
@@ -3935,6 +3994,7 @@ module Aws::WorkSpacesWeb
3935
3994
  :idle_disconnect_timeout_in_minutes,
3936
3995
  :paste_allowed,
3937
3996
  :print_allowed,
3997
+ :toolbar_configuration,
3938
3998
  :upload_allowed,
3939
3999
  :user_settings_arn)
3940
4000
  SENSITIVE = [:cookie_synchronization_configuration]
@@ -3984,6 +4044,14 @@ module Aws::WorkSpacesWeb
3984
4044
  # Specifies whether the user can print to the local device.
3985
4045
  # @return [String]
3986
4046
  #
4047
+ # @!attribute [rw] toolbar_configuration
4048
+ # The configuration of the toolbar. This allows administrators to
4049
+ # select the toolbar type and visual mode, set maximum display
4050
+ # resolution for sessions, and choose which items are visible to end
4051
+ # users during their sessions. If administrators do not modify these
4052
+ # settings, end users retain control over their toolbar preferences.
4053
+ # @return [Types::ToolbarConfiguration]
4054
+ #
3987
4055
  # @!attribute [rw] upload_allowed
3988
4056
  # Specifies whether the user can upload files from the local device to
3989
4057
  # the streaming session.
@@ -4004,6 +4072,7 @@ module Aws::WorkSpacesWeb
4004
4072
  :idle_disconnect_timeout_in_minutes,
4005
4073
  :paste_allowed,
4006
4074
  :print_allowed,
4075
+ :toolbar_configuration,
4007
4076
  :upload_allowed,
4008
4077
  :user_settings_arn)
4009
4078
  SENSITIVE = [:cookie_synchronization_configuration]
@@ -54,7 +54,7 @@ module Aws::WorkSpacesWeb
54
54
  autoload :EndpointProvider, 'aws-sdk-workspacesweb/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-workspacesweb/endpoints'
56
56
 
57
- GEM_VERSION = '1.39.0'
57
+ GEM_VERSION = '1.41.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -383,6 +383,12 @@ module Aws
383
383
  value: ::String
384
384
  },
385
385
  ],
386
+ ?toolbar_configuration: {
387
+ hidden_toolbar_items: Array[("Windows" | "DualMonitor" | "FullScreen" | "Webcam" | "Microphone")]?,
388
+ max_display_resolution: ("size4096X2160" | "size3840X2160" | "size3440X1440" | "size2560X1440" | "size1920X1080" | "size1280X720" | "size1024X768" | "size800X600")?,
389
+ toolbar_type: ("Floating" | "Docked")?,
390
+ visual_mode: ("Dark" | "Light")?
391
+ },
386
392
  upload_allowed: ("Disabled" | "Enabled")
387
393
  ) -> _CreateUserSettingsResponseSuccess
388
394
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateUserSettingsResponseSuccess
@@ -1005,6 +1011,12 @@ module Aws
1005
1011
  ?idle_disconnect_timeout_in_minutes: ::Integer,
1006
1012
  ?paste_allowed: ("Disabled" | "Enabled"),
1007
1013
  ?print_allowed: ("Disabled" | "Enabled"),
1014
+ ?toolbar_configuration: {
1015
+ hidden_toolbar_items: Array[("Windows" | "DualMonitor" | "FullScreen" | "Webcam" | "Microphone")]?,
1016
+ max_display_resolution: ("size4096X2160" | "size3840X2160" | "size3440X1440" | "size2560X1440" | "size1920X1080" | "size1280X720" | "size1024X768" | "size800X600")?,
1017
+ toolbar_type: ("Floating" | "Docked")?,
1018
+ visual_mode: ("Dark" | "Light")?
1019
+ },
1008
1020
  ?upload_allowed: ("Disabled" | "Enabled"),
1009
1021
  user_settings_arn: ::String
1010
1022
  ) -> _UpdateUserSettingsResponseSuccess
data/sig/types.rbs CHANGED
@@ -280,6 +280,7 @@ module Aws::WorkSpacesWeb
280
280
  attr_accessor paste_allowed: ("Disabled" | "Enabled")
281
281
  attr_accessor print_allowed: ("Disabled" | "Enabled")
282
282
  attr_accessor tags: ::Array[Types::Tag]
283
+ attr_accessor toolbar_configuration: Types::ToolbarConfiguration
283
284
  attr_accessor upload_allowed: ("Disabled" | "Enabled")
284
285
  SENSITIVE: [:cookie_synchronization_configuration]
285
286
  end
@@ -926,6 +927,14 @@ module Aws::WorkSpacesWeb
926
927
  SENSITIVE: []
927
928
  end
928
929
 
930
+ class ToolbarConfiguration
931
+ attr_accessor hidden_toolbar_items: ::Array[("Windows" | "DualMonitor" | "FullScreen" | "Webcam" | "Microphone")]
932
+ attr_accessor max_display_resolution: ("size4096X2160" | "size3840X2160" | "size3440X1440" | "size2560X1440" | "size1920X1080" | "size1280X720" | "size1024X768" | "size800X600")
933
+ attr_accessor toolbar_type: ("Floating" | "Docked")
934
+ attr_accessor visual_mode: ("Dark" | "Light")
935
+ SENSITIVE: []
936
+ end
937
+
929
938
  class TrustStore
930
939
  attr_accessor associated_portal_arns: ::Array[::String]
931
940
  attr_accessor trust_store_arn: ::String
@@ -1063,6 +1072,7 @@ module Aws::WorkSpacesWeb
1063
1072
  attr_accessor idle_disconnect_timeout_in_minutes: ::Integer
1064
1073
  attr_accessor paste_allowed: ("Disabled" | "Enabled")
1065
1074
  attr_accessor print_allowed: ("Disabled" | "Enabled")
1075
+ attr_accessor toolbar_configuration: Types::ToolbarConfiguration
1066
1076
  attr_accessor upload_allowed: ("Disabled" | "Enabled")
1067
1077
  attr_accessor user_settings_arn: ::String
1068
1078
  SENSITIVE: [:cookie_synchronization_configuration]
@@ -1098,6 +1108,7 @@ module Aws::WorkSpacesWeb
1098
1108
  attr_accessor idle_disconnect_timeout_in_minutes: ::Integer
1099
1109
  attr_accessor paste_allowed: ("Disabled" | "Enabled")
1100
1110
  attr_accessor print_allowed: ("Disabled" | "Enabled")
1111
+ attr_accessor toolbar_configuration: Types::ToolbarConfiguration
1101
1112
  attr_accessor upload_allowed: ("Disabled" | "Enabled")
1102
1113
  attr_accessor user_settings_arn: ::String
1103
1114
  SENSITIVE: [:cookie_synchronization_configuration]
@@ -1112,6 +1123,7 @@ module Aws::WorkSpacesWeb
1112
1123
  attr_accessor idle_disconnect_timeout_in_minutes: ::Integer
1113
1124
  attr_accessor paste_allowed: ("Disabled" | "Enabled")
1114
1125
  attr_accessor print_allowed: ("Disabled" | "Enabled")
1126
+ attr_accessor toolbar_configuration: Types::ToolbarConfiguration
1115
1127
  attr_accessor upload_allowed: ("Disabled" | "Enabled")
1116
1128
  attr_accessor user_settings_arn: ::String
1117
1129
  SENSITIVE: [:cookie_synchronization_configuration]
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-workspacesweb
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.39.0
4
+ version: 1.41.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2025-02-18 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: aws-sdk-core
@@ -77,7 +76,6 @@ licenses:
77
76
  metadata:
78
77
  source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-workspacesweb
79
78
  changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-workspacesweb/CHANGELOG.md
80
- post_install_message:
81
79
  rdoc_options: []
82
80
  require_paths:
83
81
  - lib
@@ -92,8 +90,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
92
90
  - !ruby/object:Gem::Version
93
91
  version: '0'
94
92
  requirements: []
95
- rubygems_version: 3.4.10
96
- signing_key:
93
+ rubygems_version: 3.6.7
97
94
  specification_version: 4
98
95
  summary: AWS SDK for Ruby - Amazon WorkSpaces Web
99
96
  test_files: []