aws-sdk-workspacesweb 1.39.0 → 1.40.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: d3678372691e2c6411220ab5ba437376dc1586e45c697c8e5fe1f4a867f85af4
4
+ data.tar.gz: 2bcaa9c59db2db5d4555440431f0cdde6301b09a02816a6faaa522231f0c56c6
5
5
  SHA512:
6
- metadata.gz: 4ba682aefc2b85a6db4b34984fe68f5b4669b05817c78e9241d3a83c6239605cc9f31be3fff0ced343c2f6b8a173f4c5274494136587487d42130061bae879e9
7
- data.tar.gz: 79f24ab10619ed590a7bef4c986ad8f9dd65473412a689496d3d15c855bcc80dbbb06b48f09f04162fe812722c93475128a42023945f6229765ac0ff62b8d223
6
+ metadata.gz: e041bb033c5667fa0851475d8866f32aacbf10c4b55b6b0825123927840fc9d3a3e0e25fb28a232a418c4520e456190c7e42998d61136c58d4f87475961f2d1b
7
+ data.tar.gz: f2f5fbb5368feadcfcd5246df084c29d42be715a3575c393b87edaaff75fbe8eedcfbe565390cc897a3caa95e8ad6dc139a4a3d0f51b459eb177d240c5e5cdee
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.40.0 (2025-02-20)
5
+ ------------------
6
+
7
+ * Feature - Add support for toolbar configuration under user settings.
8
+
4
9
  1.39.0 (2025-02-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.39.0
1
+ 1.40.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.40.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
 
@@ -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"))
@@ -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
@@ -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.40.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,14 @@
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.40.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-02-18 00:00:00.000000000 Z
11
+ date: 2025-02-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core