aws-sdk-workspaces 1.162.0 → 1.164.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: 65be2df37f17d2e84fd5b4efca9687b1cc03f4195782415d5c5e505f6e22630c
4
- data.tar.gz: 5c4390a253eff59696c8b5499189b64fc7a1256e7d2cb71b0d67bfcb5e2d8d06
3
+ metadata.gz: 36a2938429843f55f627640be9885dbc775bd0d03d02f141eeae9240497f0d39
4
+ data.tar.gz: e50ac8c557b753063551b093fb95432516b21af3823dd512d463d21b8fd0ddd0
5
5
  SHA512:
6
- metadata.gz: c8c320471044aeeb1f600d1926bd77f225846a9030d7f3a79ddfc570dc2a9fe5a9f952e5891723eab6dd2d08580031e656a7392a9f68a71772170a468842c2cb
7
- data.tar.gz: '03195b199426a25c6032b4b79b8d211cd863eeafedd99ef58e8bcab08615d004815643d522ecd36b93d5bf55fbd09cc752a3f3bdba48320765c619f3e6e16da1'
6
+ metadata.gz: 2e3d1580fdd028b813c53b9179d8bd5bad9cfc8a7fbe17262eb452d2523cd4aee8c5e1b8c325db33ae570e7761b893882b6c4439727dfe381f1a95b3b0bb82ea
7
+ data.tar.gz: b5b9cd87db5127e046be39580a8aa8a8478026610a423b9138da3e752b20edf49de024afb9d05f14dac3f4622c2d870eeeab61f76361163dd0ac2441da63212f
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.164.0 (2026-08-18)
5
+ ------------------
6
+
7
+ * Feature - Amazon WorkSpaces now supports nested virtualization, allowing you to run hypervisors and virtualization-based workloads within your WorkSpaces. You can enable or disable nested virtualization when creating a WorkSpace or by modifying an existing WorkSpace's properties.
8
+
9
+ 1.163.0 (2026-08-04)
10
+ ------------------
11
+
12
+ * Feature - Added ClientExperiencePolicy to ClientProperties object for ModifyClientProperties and DescribeClientProperties APIs.
13
+
4
14
  1.162.0 (2026-07-09)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.162.0
1
+ 1.164.0
@@ -1296,6 +1296,7 @@ module Aws::WorkSpaces
1296
1296
  # mode: "ENABLED_AUTO", # required, accepts ENABLED_AUTO, DISABLED, INHERITED
1297
1297
  # preferred_protocol: "TCP", # accepts TCP, NONE, INHERITED
1298
1298
  # },
1299
+ # nested_virtualization_enabled: false,
1299
1300
  # },
1300
1301
  # tags: [
1301
1302
  # {
@@ -1328,6 +1329,7 @@ module Aws::WorkSpaces
1328
1329
  # resp.failed_requests[0].workspace_request.workspace_properties.operating_system_name #=> String, one of "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", "WINDOWS_SERVER_2025", "RHEL_8", "ROCKY_8"
1329
1330
  # resp.failed_requests[0].workspace_request.workspace_properties.global_accelerator.mode #=> String, one of "ENABLED_AUTO", "DISABLED", "INHERITED"
1330
1331
  # resp.failed_requests[0].workspace_request.workspace_properties.global_accelerator.preferred_protocol #=> String, one of "TCP", "NONE", "INHERITED"
1332
+ # resp.failed_requests[0].workspace_request.workspace_properties.nested_virtualization_enabled #=> Boolean
1331
1333
  # resp.failed_requests[0].workspace_request.tags #=> Array
1332
1334
  # resp.failed_requests[0].workspace_request.tags[0].key #=> String
1333
1335
  # resp.failed_requests[0].workspace_request.tags[0].value #=> String
@@ -1361,8 +1363,9 @@ module Aws::WorkSpaces
1361
1363
  # resp.pending_requests[0].workspace_properties.operating_system_name #=> String, one of "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", "WINDOWS_SERVER_2025", "RHEL_8", "ROCKY_8"
1362
1364
  # resp.pending_requests[0].workspace_properties.global_accelerator.mode #=> String, one of "ENABLED_AUTO", "DISABLED", "INHERITED"
1363
1365
  # resp.pending_requests[0].workspace_properties.global_accelerator.preferred_protocol #=> String, one of "TCP", "NONE", "INHERITED"
1366
+ # resp.pending_requests[0].workspace_properties.nested_virtualization_enabled #=> Boolean
1364
1367
  # resp.pending_requests[0].modification_states #=> Array
1365
- # resp.pending_requests[0].modification_states[0].resource #=> String, one of "ROOT_VOLUME", "USER_VOLUME", "COMPUTE_TYPE", "PROTOCOL"
1368
+ # resp.pending_requests[0].modification_states[0].resource #=> String, one of "ROOT_VOLUME", "USER_VOLUME", "COMPUTE_TYPE", "PROTOCOL", "NESTED_VIRTUALIZATION"
1366
1369
  # resp.pending_requests[0].modification_states[0].state #=> String, one of "UPDATE_INITIATED", "UPDATE_IN_PROGRESS", "UPDATE_FAILED"
1367
1370
  # resp.pending_requests[0].related_workspaces #=> Array
1368
1371
  # resp.pending_requests[0].related_workspaces[0].workspace_id #=> String
@@ -1385,8 +1388,20 @@ module Aws::WorkSpaces
1385
1388
  req.send_request(options)
1386
1389
  end
1387
1390
 
1391
+ # <note markdown="1"> End of support notice: On December 31, 2027, Amazon Web Services will
1392
+ # end support for Amazon WorkSpaces Pools. After December 31, 2027, you
1393
+ # will no longer be able to access the Amazon WorkSpaces Pools console
1394
+ # or Amazon WorkSpaces Pools resources. For more information, see
1395
+ # [Amazon WorkSpaces Pools end of support][1].
1396
+ #
1397
+ # </note>
1398
+ #
1388
1399
  # Creates a pool of WorkSpaces.
1389
1400
  #
1401
+ #
1402
+ #
1403
+ # [1]: https://docs.aws.amazon.com/workspaces/latest/adminguide/wsp-pools-end-of-support.html
1404
+ #
1390
1405
  # @option params [required, String] :pool_name
1391
1406
  # The name of the pool.
1392
1407
  #
@@ -2144,6 +2159,7 @@ module Aws::WorkSpaces
2144
2159
  # resp.client_properties_list[0].resource_id #=> String
2145
2160
  # resp.client_properties_list[0].client_properties.reconnect_enabled #=> String, one of "ENABLED", "DISABLED"
2146
2161
  # resp.client_properties_list[0].client_properties.log_upload_enabled #=> String, one of "ENABLED", "DISABLED"
2162
+ # resp.client_properties_list[0].client_properties.client_experience_policy #=> String
2147
2163
  #
2148
2164
  # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/DescribeClientProperties AWS API Documentation
2149
2165
  #
@@ -2923,8 +2939,9 @@ module Aws::WorkSpaces
2923
2939
  # resp.workspaces[0].workspace_properties.operating_system_name #=> String, one of "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", "WINDOWS_SERVER_2025", "RHEL_8", "ROCKY_8"
2924
2940
  # resp.workspaces[0].workspace_properties.global_accelerator.mode #=> String, one of "ENABLED_AUTO", "DISABLED", "INHERITED"
2925
2941
  # resp.workspaces[0].workspace_properties.global_accelerator.preferred_protocol #=> String, one of "TCP", "NONE", "INHERITED"
2942
+ # resp.workspaces[0].workspace_properties.nested_virtualization_enabled #=> Boolean
2926
2943
  # resp.workspaces[0].modification_states #=> Array
2927
- # resp.workspaces[0].modification_states[0].resource #=> String, one of "ROOT_VOLUME", "USER_VOLUME", "COMPUTE_TYPE", "PROTOCOL"
2944
+ # resp.workspaces[0].modification_states[0].resource #=> String, one of "ROOT_VOLUME", "USER_VOLUME", "COMPUTE_TYPE", "PROTOCOL", "NESTED_VIRTUALIZATION"
2928
2945
  # resp.workspaces[0].modification_states[0].state #=> String, one of "UPDATE_INITIATED", "UPDATE_IN_PROGRESS", "UPDATE_FAILED"
2929
2946
  # resp.workspaces[0].related_workspaces #=> Array
2930
2947
  # resp.workspaces[0].related_workspaces[0].workspace_id #=> String
@@ -2988,9 +3005,21 @@ module Aws::WorkSpaces
2988
3005
  req.send_request(options)
2989
3006
  end
2990
3007
 
3008
+ # <note markdown="1"> End of support notice: On December 31, 2027, Amazon Web Services will
3009
+ # end support for Amazon WorkSpaces Pools. After December 31, 2027, you
3010
+ # will no longer be able to access the Amazon WorkSpaces Pools console
3011
+ # or Amazon WorkSpaces Pools resources. For more information, see
3012
+ # [Amazon WorkSpaces Pools end of support][1].
3013
+ #
3014
+ # </note>
3015
+ #
2991
3016
  # Retrieves a list that describes the streaming sessions for a specified
2992
3017
  # pool.
2993
3018
  #
3019
+ #
3020
+ #
3021
+ # [1]: https://docs.aws.amazon.com/workspaces/latest/adminguide/wsp-pools-end-of-support.html
3022
+ #
2994
3023
  # @option params [required, String] :pool_id
2995
3024
  # The identifier of the pool.
2996
3025
  #
@@ -3043,8 +3072,20 @@ module Aws::WorkSpaces
3043
3072
  req.send_request(options)
3044
3073
  end
3045
3074
 
3075
+ # <note markdown="1"> End of support notice: On December 31, 2027, Amazon Web Services will
3076
+ # end support for Amazon WorkSpaces Pools. After December 31, 2027, you
3077
+ # will no longer be able to access the Amazon WorkSpaces Pools console
3078
+ # or Amazon WorkSpaces Pools resources. For more information, see
3079
+ # [Amazon WorkSpaces Pools end of support][1].
3080
+ #
3081
+ # </note>
3082
+ #
3046
3083
  # Describes the specified WorkSpaces Pools.
3047
3084
  #
3085
+ #
3086
+ #
3087
+ # [1]: https://docs.aws.amazon.com/workspaces/latest/adminguide/wsp-pools-end-of-support.html
3088
+ #
3048
3089
  # @option params [Array<String>] :pool_ids
3049
3090
  # The identifier of the WorkSpaces Pools.
3050
3091
  #
@@ -3711,6 +3752,12 @@ module Aws::WorkSpaces
3711
3752
  # For available migration scenarios, details about what happens during
3712
3753
  # migration, and best practices, see [Migrate a WorkSpace][1].
3713
3754
  #
3755
+ # <note markdown="1"> If the source WorkSpace has nested virtualization enabled and the
3756
+ # target bundle does not support nested virtualization, the migration
3757
+ # fails.
3758
+ #
3759
+ # </note>
3760
+ #
3714
3761
  #
3715
3762
  #
3716
3763
  # [1]: https://docs.aws.amazon.com/workspaces/latest/adminguide/migrate-workspaces.html
@@ -3837,6 +3884,7 @@ module Aws::WorkSpaces
3837
3884
  # client_properties: { # required
3838
3885
  # reconnect_enabled: "ENABLED", # accepts ENABLED, DISABLED
3839
3886
  # log_upload_enabled: "ENABLED", # accepts ENABLED, DISABLED
3887
+ # client_experience_policy: "ClientExperiencePolicy",
3840
3888
  # },
3841
3889
  # })
3842
3890
  #
@@ -4133,6 +4181,7 @@ module Aws::WorkSpaces
4133
4181
  # mode: "ENABLED_AUTO", # required, accepts ENABLED_AUTO, DISABLED, INHERITED
4134
4182
  # preferred_protocol: "TCP", # accepts TCP, NONE, INHERITED
4135
4183
  # },
4184
+ # nested_virtualization_enabled: false,
4136
4185
  # },
4137
4186
  # data_replication: "NO_REPLICATION", # accepts NO_REPLICATION, PRIMARY_AS_SOURCE
4138
4187
  # })
@@ -4519,11 +4568,23 @@ module Aws::WorkSpaces
4519
4568
  req.send_request(options)
4520
4569
  end
4521
4570
 
4571
+ # <note markdown="1"> End of support notice: On December 31, 2027, Amazon Web Services will
4572
+ # end support for Amazon WorkSpaces Pools. After December 31, 2027, you
4573
+ # will no longer be able to access the Amazon WorkSpaces Pools console
4574
+ # or Amazon WorkSpaces Pools resources. For more information, see
4575
+ # [Amazon WorkSpaces Pools end of support][1].
4576
+ #
4577
+ # </note>
4578
+ #
4522
4579
  # Starts the specified pool.
4523
4580
  #
4524
4581
  # You cannot start a pool unless it has a running mode of `AutoStop` and
4525
4582
  # a state of `STOPPED`.
4526
4583
  #
4584
+ #
4585
+ #
4586
+ # [1]: https://docs.aws.amazon.com/workspaces/latest/adminguide/wsp-pools-end-of-support.html
4587
+ #
4527
4588
  # @option params [required, String] :pool_id
4528
4589
  # The identifier of the pool.
4529
4590
  #
@@ -4583,12 +4644,24 @@ module Aws::WorkSpaces
4583
4644
  req.send_request(options)
4584
4645
  end
4585
4646
 
4647
+ # <note markdown="1"> End of support notice: On December 31, 2027, Amazon Web Services will
4648
+ # end support for Amazon WorkSpaces Pools. After December 31, 2027, you
4649
+ # will no longer be able to access the Amazon WorkSpaces Pools console
4650
+ # or Amazon WorkSpaces Pools resources. For more information, see
4651
+ # [Amazon WorkSpaces Pools end of support][1].
4652
+ #
4653
+ # </note>
4654
+ #
4586
4655
  # Stops the specified pool.
4587
4656
  #
4588
4657
  # You cannot stop a WorkSpace pool unless it has a running mode of
4589
4658
  # `AutoStop` and a state of `AVAILABLE`, `IMPAIRED`, `UNHEALTHY`, or
4590
4659
  # `ERROR`.
4591
4660
  #
4661
+ #
4662
+ #
4663
+ # [1]: https://docs.aws.amazon.com/workspaces/latest/adminguide/wsp-pools-end-of-support.html
4664
+ #
4592
4665
  # @option params [required, String] :pool_id
4593
4666
  # The identifier of the pool.
4594
4667
  #
@@ -4678,8 +4751,20 @@ module Aws::WorkSpaces
4678
4751
  req.send_request(options)
4679
4752
  end
4680
4753
 
4754
+ # <note markdown="1"> End of support notice: On December 31, 2027, Amazon Web Services will
4755
+ # end support for Amazon WorkSpaces Pools. After December 31, 2027, you
4756
+ # will no longer be able to access the Amazon WorkSpaces Pools console
4757
+ # or Amazon WorkSpaces Pools resources. For more information, see
4758
+ # [Amazon WorkSpaces Pools end of support][1].
4759
+ #
4760
+ # </note>
4761
+ #
4681
4762
  # Terminates the specified pool.
4682
4763
  #
4764
+ #
4765
+ #
4766
+ # [1]: https://docs.aws.amazon.com/workspaces/latest/adminguide/wsp-pools-end-of-support.html
4767
+ #
4683
4768
  # @option params [required, String] :pool_id
4684
4769
  # The identifier of the pool.
4685
4770
  #
@@ -4700,8 +4785,20 @@ module Aws::WorkSpaces
4700
4785
  req.send_request(options)
4701
4786
  end
4702
4787
 
4788
+ # <note markdown="1"> End of support notice: On December 31, 2027, Amazon Web Services will
4789
+ # end support for Amazon WorkSpaces Pools. After December 31, 2027, you
4790
+ # will no longer be able to access the Amazon WorkSpaces Pools console
4791
+ # or Amazon WorkSpaces Pools resources. For more information, see
4792
+ # [Amazon WorkSpaces Pools end of support][1].
4793
+ #
4794
+ # </note>
4795
+ #
4703
4796
  # Terminates the pool session.
4704
4797
  #
4798
+ #
4799
+ #
4800
+ # [1]: https://docs.aws.amazon.com/workspaces/latest/adminguide/wsp-pools-end-of-support.html
4801
+ #
4705
4802
  # @option params [required, String] :session_id
4706
4803
  # The identifier of the pool session.
4707
4804
  #
@@ -4947,8 +5044,20 @@ module Aws::WorkSpaces
4947
5044
  req.send_request(options)
4948
5045
  end
4949
5046
 
5047
+ # <note markdown="1"> End of support notice: On December 31, 2027, Amazon Web Services will
5048
+ # end support for Amazon WorkSpaces Pools. After December 31, 2027, you
5049
+ # will no longer be able to access the Amazon WorkSpaces Pools console
5050
+ # or Amazon WorkSpaces Pools resources. For more information, see
5051
+ # [Amazon WorkSpaces Pools end of support][1].
5052
+ #
5053
+ # </note>
5054
+ #
4950
5055
  # Updates the specified pool.
4951
5056
  #
5057
+ #
5058
+ #
5059
+ # [1]: https://docs.aws.amazon.com/workspaces/latest/adminguide/wsp-pools-end-of-support.html
5060
+ #
4952
5061
  # @option params [required, String] :pool_id
4953
5062
  # The identifier of the specified pool to update.
4954
5063
  #
@@ -5052,7 +5161,7 @@ module Aws::WorkSpaces
5052
5161
  tracer: tracer
5053
5162
  )
5054
5163
  context[:gem_name] = 'aws-sdk-workspaces'
5055
- context[:gem_version] = '1.162.0'
5164
+ context[:gem_version] = '1.164.0'
5056
5165
  Seahorse::Client::Request.new(handlers, context)
5057
5166
  end
5058
5167
 
@@ -83,6 +83,7 @@ module Aws::WorkSpaces
83
83
  ClientDeviceType = Shapes::StringShape.new(name: 'ClientDeviceType')
84
84
  ClientDeviceTypeList = Shapes::ListShape.new(name: 'ClientDeviceTypeList')
85
85
  ClientEmail = Shapes::StringShape.new(name: 'ClientEmail')
86
+ ClientExperiencePolicy = Shapes::StringShape.new(name: 'ClientExperiencePolicy')
86
87
  ClientLocale = Shapes::StringShape.new(name: 'ClientLocale')
87
88
  ClientLoginMessage = Shapes::StringShape.new(name: 'ClientLoginMessage')
88
89
  ClientProperties = Shapes::StructureShape.new(name: 'ClientProperties')
@@ -691,6 +692,7 @@ module Aws::WorkSpaces
691
692
 
692
693
  ClientProperties.add_member(:reconnect_enabled, Shapes::ShapeRef.new(shape: ReconnectEnum, location_name: "ReconnectEnabled"))
693
694
  ClientProperties.add_member(:log_upload_enabled, Shapes::ShapeRef.new(shape: LogUploadEnum, location_name: "LogUploadEnabled"))
695
+ ClientProperties.add_member(:client_experience_policy, Shapes::ShapeRef.new(shape: ClientExperiencePolicy, location_name: "ClientExperiencePolicy"))
694
696
  ClientProperties.struct_class = Types::ClientProperties
695
697
 
696
698
  ClientPropertiesList.member = Shapes::ShapeRef.new(shape: ClientPropertiesResult)
@@ -1948,6 +1950,7 @@ module Aws::WorkSpaces
1948
1950
  WorkspaceProperties.add_member(:protocols, Shapes::ShapeRef.new(shape: ProtocolList, location_name: "Protocols"))
1949
1951
  WorkspaceProperties.add_member(:operating_system_name, Shapes::ShapeRef.new(shape: OperatingSystemName, location_name: "OperatingSystemName"))
1950
1952
  WorkspaceProperties.add_member(:global_accelerator, Shapes::ShapeRef.new(shape: GlobalAcceleratorForWorkSpace, location_name: "GlobalAccelerator"))
1953
+ WorkspaceProperties.add_member(:nested_virtualization_enabled, Shapes::ShapeRef.new(shape: BooleanObject, location_name: "NestedVirtualizationEnabled"))
1951
1954
  WorkspaceProperties.struct_class = Types::WorkspaceProperties
1952
1955
 
1953
1956
  WorkspaceRequest.add_member(:directory_id, Shapes::ShapeRef.new(shape: DirectoryId, required: true, location_name: "DirectoryId"))
@@ -546,11 +546,19 @@ module Aws::WorkSpaces
546
546
  # the specified directory.
547
547
  # @return [String]
548
548
  #
549
+ # @!attribute [rw] client_experience_policy
550
+ # The client experience policy that determines which client experience
551
+ # the user sees. Administrators can set this policy to control the
552
+ # client experience for users in a directory. Valid values include
553
+ # `FORCE_CLASSIC`, `FORCE_UI_2026`, and `USER_CHOICE`.
554
+ # @return [String]
555
+ #
549
556
  # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/ClientProperties AWS API Documentation
550
557
  #
551
558
  class ClientProperties < Struct.new(
552
559
  :reconnect_enabled,
553
- :log_upload_enabled)
560
+ :log_upload_enabled,
561
+ :client_experience_policy)
554
562
  SENSITIVE = []
555
563
  include Aws::Structure
556
564
  end
@@ -3816,7 +3824,7 @@ module Aws::WorkSpaces
3816
3824
  # Describes a WorkSpace modification.
3817
3825
  #
3818
3826
  # @!attribute [rw] resource
3819
- # The resource.
3827
+ # The WorkSpace property being modified.
3820
3828
  # @return [String]
3821
3829
  #
3822
3830
  # @!attribute [rw] state
@@ -6212,6 +6220,18 @@ module Aws::WorkSpaces
6212
6220
  # Indicates the Global Accelerator properties.
6213
6221
  # @return [Types::GlobalAcceleratorForWorkSpace]
6214
6222
  #
6223
+ # @!attribute [rw] nested_virtualization_enabled
6224
+ # Specifies whether nested virtualization is enabled for the
6225
+ # WorkSpace.
6226
+ #
6227
+ # For more information, see [Nested virtualization for Amazon
6228
+ # WorkSpaces][1].
6229
+ #
6230
+ #
6231
+ #
6232
+ # [1]: https://docs.aws.amazon.com/workspaces/latest/adminguide/nested-virtualization.html
6233
+ # @return [Boolean]
6234
+ #
6215
6235
  # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/WorkspaceProperties AWS API Documentation
6216
6236
  #
6217
6237
  class WorkspaceProperties < Struct.new(
@@ -6222,7 +6242,8 @@ module Aws::WorkSpaces
6222
6242
  :compute_type_name,
6223
6243
  :protocols,
6224
6244
  :operating_system_name,
6225
- :global_accelerator)
6245
+ :global_accelerator,
6246
+ :nested_virtualization_enabled)
6226
6247
  SENSITIVE = []
6227
6248
  include Aws::Structure
6228
6249
  end
@@ -54,7 +54,7 @@ module Aws::WorkSpaces
54
54
  autoload :EndpointProvider, 'aws-sdk-workspaces/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-workspaces/endpoints'
56
56
 
57
- GEM_VERSION = '1.162.0'
57
+ GEM_VERSION = '1.164.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -1035,7 +1035,8 @@ module Aws
1035
1035
  resource_id: ::String,
1036
1036
  client_properties: {
1037
1037
  reconnect_enabled: ("ENABLED" | "DISABLED")?,
1038
- log_upload_enabled: ("ENABLED" | "DISABLED")?
1038
+ log_upload_enabled: ("ENABLED" | "DISABLED")?,
1039
+ client_experience_policy: ::String?
1039
1040
  }
1040
1041
  ) -> _ModifyClientPropertiesResponseSuccess
1041
1042
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyClientPropertiesResponseSuccess
data/sig/params.rbs CHANGED
@@ -19,7 +19,8 @@ module Aws
19
19
  global_accelerator: {
20
20
  mode: ("ENABLED_AUTO" | "DISABLED" | "INHERITED"),
21
21
  preferred_protocol: ("TCP" | "NONE" | "INHERITED")?
22
- }?
22
+ }?,
23
+ nested_virtualization_enabled: bool?
23
24
  }
24
25
 
25
26
  end
data/sig/types.rbs CHANGED
@@ -166,6 +166,7 @@ module Aws::WorkSpaces
166
166
  class ClientProperties
167
167
  attr_accessor reconnect_enabled: ("ENABLED" | "DISABLED")
168
168
  attr_accessor log_upload_enabled: ("ENABLED" | "DISABLED")
169
+ attr_accessor client_experience_policy: ::String
169
170
  SENSITIVE: []
170
171
  end
171
172
 
@@ -1107,7 +1108,7 @@ module Aws::WorkSpaces
1107
1108
  end
1108
1109
 
1109
1110
  class ModificationState
1110
- attr_accessor resource: ("ROOT_VOLUME" | "USER_VOLUME" | "COMPUTE_TYPE" | "PROTOCOL")
1111
+ attr_accessor resource: ("ROOT_VOLUME" | "USER_VOLUME" | "COMPUTE_TYPE" | "PROTOCOL" | "NESTED_VIRTUALIZATION")
1111
1112
  attr_accessor state: ("UPDATE_INITIATED" | "UPDATE_IN_PROGRESS" | "UPDATE_FAILED")
1112
1113
  SENSITIVE: []
1113
1114
  end
@@ -1767,6 +1768,7 @@ module Aws::WorkSpaces
1767
1768
  attr_accessor protocols: ::Array[("PCOIP" | "WSP")]
1768
1769
  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" | "WINDOWS_SERVER_2025" | "RHEL_8" | "ROCKY_8")
1769
1770
  attr_accessor global_accelerator: Types::GlobalAcceleratorForWorkSpace
1771
+ attr_accessor nested_virtualization_enabled: bool
1770
1772
  SENSITIVE: []
1771
1773
  end
1772
1774
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-workspaces
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.162.0
4
+ version: 1.164.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services