aws-sdk-workspaces 1.131.0 → 1.133.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: f15c430736b6f7c9bbc7f3d7ccf9d810fa6a5e3fee87c5caca2cd6a660201f48
4
- data.tar.gz: 7cfc6cfa22276ec49c0ceb806c9bbe6af689cfe3b0787e318e968ca4bf9f1dcf
3
+ metadata.gz: 25c75fabd03cac281c49fb245b4c0b2fe0eb3661406d99c74142be6499577694
4
+ data.tar.gz: 48d42862f87cde184548d6e80647a9b6996802ffb8437a65de7ea745926d7956
5
5
  SHA512:
6
- metadata.gz: e9f12da4ceddccf753abf455cbad099c4d8c9c4501b3d81a418c0eb4f2a02aa9489277c27ad6de38f1da62c041cf058e5064465c4e90a7413c06487c5c3dbe5b
7
- data.tar.gz: 51d447a1129ef3dbe0c55e0d27dc11dc1f98b78798b27434793e22fb743b7b015f08a8aa63f4246ca39691bf668ff4e2219f60b21c8307937b1e5a949775c369
6
+ metadata.gz: d1658be58c12b5fa8d8dffc8140eb236c3a078f32a8c9c464297cce9860d2deba7f89aea14f277343c80bd67515d4f6ce9465a1443503ed84602d8abd2739874
7
+ data.tar.gz: 66d618b5f0d7ded9d5135da51fd2c53842582c9a7d9e1121d418fc4047fbeeb4e010d64ee6f024639a172bf976d451cfca9de2ce68458e41e6aca6a41dd88486
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.133.0 (2025-03-06)
5
+ ------------------
6
+
7
+ * Feature - Added a new ModifyEndpointEncryptionMode API for managing endpoint encryption settings.
8
+
9
+ 1.132.0 (2025-03-05)
10
+ ------------------
11
+
12
+ * Feature - Added DeviceTypeWorkSpacesThinClient type to allow users to access their WorkSpaces through a WorkSpaces Thin Client.
13
+
4
14
  1.131.0 (2025-02-18)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.131.0
1
+ 1.133.0
@@ -670,7 +670,7 @@ module Aws::WorkSpaces
670
670
  # same Region.
671
671
  #
672
672
  # In Amazon Web Services GovCloud (US), to copy images to and from other
673
- # Regions, contact Amazon Web Services Support.
673
+ # Regions, contact Amazon Web ServicesSupport.
674
674
  #
675
675
  # Before copying a shared image, be sure to verify that it has been
676
676
  # shared from the correct Amazon Web Services account. To determine if
@@ -2588,6 +2588,7 @@ module Aws::WorkSpaces
2588
2588
  # resp.directories[0].workspace_access_properties.device_type_chrome_os #=> String, one of "ALLOW", "DENY"
2589
2589
  # resp.directories[0].workspace_access_properties.device_type_zero_client #=> String, one of "ALLOW", "DENY"
2590
2590
  # resp.directories[0].workspace_access_properties.device_type_linux #=> String, one of "ALLOW", "DENY"
2591
+ # resp.directories[0].workspace_access_properties.device_type_work_spaces_thin_client #=> String, one of "ALLOW", "DENY"
2591
2592
  # resp.directories[0].tenancy #=> String, one of "DEDICATED", "SHARED"
2592
2593
  # resp.directories[0].selfservice_permissions.restart_workspace #=> String, one of "ENABLED", "DISABLED"
2593
2594
  # resp.directories[0].selfservice_permissions.increase_volume_size #=> String, one of "ENABLED", "DISABLED"
@@ -2599,6 +2600,7 @@ module Aws::WorkSpaces
2599
2600
  # resp.directories[0].saml_properties.relay_state_parameter_name #=> String
2600
2601
  # resp.directories[0].certificate_based_auth_properties.status #=> String, one of "DISABLED", "ENABLED"
2601
2602
  # resp.directories[0].certificate_based_auth_properties.certificate_authority_arn #=> String
2603
+ # resp.directories[0].endpoint_encryption_mode #=> String, one of "STANDARD_TLS", "FIPS_VALIDATED"
2602
2604
  # resp.directories[0].microsoft_entra_config.tenant_id #=> String
2603
2605
  # resp.directories[0].microsoft_entra_config.application_config_secret_arn #=> String
2604
2606
  # resp.directories[0].workspace_directory_name #=> String
@@ -2924,7 +2926,8 @@ module Aws::WorkSpaces
2924
2926
  # The identifier of the user.
2925
2927
  #
2926
2928
  # @option params [Integer] :limit
2927
- # The maximum number of items to return.
2929
+ # The maximum size of each page of results. The default value is 20 and
2930
+ # the maximum value is 50.
2928
2931
  #
2929
2932
  # @option params [String] :next_token
2930
2933
  # If you received a `NextToken` from a previous call that was paginated,
@@ -3684,6 +3687,35 @@ module Aws::WorkSpaces
3684
3687
  req.send_request(options)
3685
3688
  end
3686
3689
 
3690
+ # Modifies the endpoint encryption mode that allows you to configure the
3691
+ # specified directory between Standard TLS and FIPS 140-2 validated
3692
+ # mode.
3693
+ #
3694
+ # @option params [required, String] :directory_id
3695
+ # The identifier of the directory.
3696
+ #
3697
+ # @option params [required, String] :endpoint_encryption_mode
3698
+ # The encryption mode used for endpoint connections when streaming to
3699
+ # WorkSpaces Personal or WorkSpace Pools.
3700
+ #
3701
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
3702
+ #
3703
+ # @example Request syntax with placeholder values
3704
+ #
3705
+ # resp = client.modify_endpoint_encryption_mode({
3706
+ # directory_id: "DirectoryId", # required
3707
+ # endpoint_encryption_mode: "STANDARD_TLS", # required, accepts STANDARD_TLS, FIPS_VALIDATED
3708
+ # })
3709
+ #
3710
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/ModifyEndpointEncryptionMode AWS API Documentation
3711
+ #
3712
+ # @overload modify_endpoint_encryption_mode(params = {})
3713
+ # @param [Hash] params ({})
3714
+ def modify_endpoint_encryption_mode(params = {}, options = {})
3715
+ req = build_request(:modify_endpoint_encryption_mode, params)
3716
+ req.send_request(options)
3717
+ end
3718
+
3687
3719
  # Modifies multiple properties related to SAML 2.0 authentication,
3688
3720
  # including the enablement status, user access URL, and relay state
3689
3721
  # parameter name that are used for configuring federation with an SAML
@@ -3842,6 +3874,7 @@ module Aws::WorkSpaces
3842
3874
  # device_type_chrome_os: "ALLOW", # accepts ALLOW, DENY
3843
3875
  # device_type_zero_client: "ALLOW", # accepts ALLOW, DENY
3844
3876
  # device_type_linux: "ALLOW", # accepts ALLOW, DENY
3877
+ # device_type_work_spaces_thin_client: "ALLOW", # accepts ALLOW, DENY
3845
3878
  # },
3846
3879
  # })
3847
3880
  #
@@ -4417,7 +4450,7 @@ module Aws::WorkSpaces
4417
4450
  #
4418
4451
  # Terminating a WorkSpace is a permanent action and cannot be undone.
4419
4452
  # The user's data is destroyed. If you need to archive any user data,
4420
- # contact Amazon Web Services Support before terminating the WorkSpace.
4453
+ # contact Amazon Web ServicesSupport before terminating the WorkSpace.
4421
4454
  #
4422
4455
  # You can terminate a WorkSpace that is in any state except `SUSPENDED`.
4423
4456
  #
@@ -4698,7 +4731,7 @@ module Aws::WorkSpaces
4698
4731
  # same Region.
4699
4732
  #
4700
4733
  # In Amazon Web Services GovCloud (US), to copy images to and from other
4701
- # Regions, contact Amazon Web Services Support.
4734
+ # Regions, contact Amazon Web ServicesSupport.
4702
4735
  #
4703
4736
  # For more information about sharing images, see [ Share or Unshare a
4704
4737
  # Custom WorkSpaces Image][1].
@@ -4709,8 +4742,8 @@ module Aws::WorkSpaces
4709
4742
  # * Sharing Bring Your Own License (BYOL) images across Amazon Web
4710
4743
  # Services accounts isn't supported at this time in Amazon Web
4711
4744
  # Services GovCloud (US). To share BYOL images across accounts in
4712
- # Amazon Web Services GovCloud (US), contact Amazon Web Services
4713
- # Support.
4745
+ # Amazon Web Services GovCloud (US), contact Amazon Web
4746
+ # ServicesSupport.
4714
4747
  #
4715
4748
  # </note>
4716
4749
  #
@@ -4850,7 +4883,7 @@ module Aws::WorkSpaces
4850
4883
  tracer: tracer
4851
4884
  )
4852
4885
  context[:gem_name] = 'aws-sdk-workspaces'
4853
- context[:gem_version] = '1.131.0'
4886
+ context[:gem_version] = '1.133.0'
4854
4887
  Seahorse::Client::Request.new(handlers, context)
4855
4888
  end
4856
4889
 
@@ -239,6 +239,7 @@ module Aws::WorkSpaces
239
239
  DnsIpAddresses = Shapes::ListShape.new(name: 'DnsIpAddresses')
240
240
  DomainName = Shapes::StringShape.new(name: 'DomainName')
241
241
  Ec2ImageId = Shapes::StringShape.new(name: 'Ec2ImageId')
242
+ EndpointEncryptionMode = Shapes::StringShape.new(name: 'EndpointEncryptionMode')
242
243
  ErrorDetails = Shapes::StructureShape.new(name: 'ErrorDetails')
243
244
  ErrorDetailsList = Shapes::ListShape.new(name: 'ErrorDetailsList')
244
245
  ErrorMessage = Shapes::StringShape.new(name: 'ErrorMessage')
@@ -319,6 +320,8 @@ module Aws::WorkSpaces
319
320
  ModifyCertificateBasedAuthPropertiesResult = Shapes::StructureShape.new(name: 'ModifyCertificateBasedAuthPropertiesResult')
320
321
  ModifyClientPropertiesRequest = Shapes::StructureShape.new(name: 'ModifyClientPropertiesRequest')
321
322
  ModifyClientPropertiesResult = Shapes::StructureShape.new(name: 'ModifyClientPropertiesResult')
323
+ ModifyEndpointEncryptionModeRequest = Shapes::StructureShape.new(name: 'ModifyEndpointEncryptionModeRequest')
324
+ ModifyEndpointEncryptionModeResponse = Shapes::StructureShape.new(name: 'ModifyEndpointEncryptionModeResponse')
322
325
  ModifySamlPropertiesRequest = Shapes::StructureShape.new(name: 'ModifySamlPropertiesRequest')
323
326
  ModifySamlPropertiesResult = Shapes::StructureShape.new(name: 'ModifySamlPropertiesResult')
324
327
  ModifySelfservicePermissionsRequest = Shapes::StructureShape.new(name: 'ModifySelfservicePermissionsRequest')
@@ -1347,6 +1350,12 @@ module Aws::WorkSpaces
1347
1350
 
1348
1351
  ModifyClientPropertiesResult.struct_class = Types::ModifyClientPropertiesResult
1349
1352
 
1353
+ ModifyEndpointEncryptionModeRequest.add_member(:directory_id, Shapes::ShapeRef.new(shape: DirectoryId, required: true, location_name: "DirectoryId"))
1354
+ ModifyEndpointEncryptionModeRequest.add_member(:endpoint_encryption_mode, Shapes::ShapeRef.new(shape: EndpointEncryptionMode, required: true, location_name: "EndpointEncryptionMode"))
1355
+ ModifyEndpointEncryptionModeRequest.struct_class = Types::ModifyEndpointEncryptionModeRequest
1356
+
1357
+ ModifyEndpointEncryptionModeResponse.struct_class = Types::ModifyEndpointEncryptionModeResponse
1358
+
1350
1359
  ModifySamlPropertiesRequest.add_member(:resource_id, Shapes::ShapeRef.new(shape: DirectoryId, required: true, location_name: "ResourceId"))
1351
1360
  ModifySamlPropertiesRequest.add_member(:saml_properties, Shapes::ShapeRef.new(shape: SamlProperties, location_name: "SamlProperties"))
1352
1361
  ModifySamlPropertiesRequest.add_member(:properties_to_delete, Shapes::ShapeRef.new(shape: DeletableSamlPropertiesList, location_name: "PropertiesToDelete"))
@@ -1745,6 +1754,7 @@ module Aws::WorkSpaces
1745
1754
  WorkspaceAccessProperties.add_member(:device_type_chrome_os, Shapes::ShapeRef.new(shape: AccessPropertyValue, location_name: "DeviceTypeChromeOs"))
1746
1755
  WorkspaceAccessProperties.add_member(:device_type_zero_client, Shapes::ShapeRef.new(shape: AccessPropertyValue, location_name: "DeviceTypeZeroClient"))
1747
1756
  WorkspaceAccessProperties.add_member(:device_type_linux, Shapes::ShapeRef.new(shape: AccessPropertyValue, location_name: "DeviceTypeLinux"))
1757
+ WorkspaceAccessProperties.add_member(:device_type_work_spaces_thin_client, Shapes::ShapeRef.new(shape: AccessPropertyValue, location_name: "DeviceTypeWorkSpacesThinClient"))
1748
1758
  WorkspaceAccessProperties.struct_class = Types::WorkspaceAccessProperties
1749
1759
 
1750
1760
  WorkspaceBundle.add_member(:bundle_id, Shapes::ShapeRef.new(shape: BundleId, location_name: "BundleId"))
@@ -1796,6 +1806,7 @@ module Aws::WorkSpaces
1796
1806
  WorkspaceDirectory.add_member(:selfservice_permissions, Shapes::ShapeRef.new(shape: SelfservicePermissions, location_name: "SelfservicePermissions"))
1797
1807
  WorkspaceDirectory.add_member(:saml_properties, Shapes::ShapeRef.new(shape: SamlProperties, location_name: "SamlProperties"))
1798
1808
  WorkspaceDirectory.add_member(:certificate_based_auth_properties, Shapes::ShapeRef.new(shape: CertificateBasedAuthProperties, location_name: "CertificateBasedAuthProperties"))
1809
+ WorkspaceDirectory.add_member(:endpoint_encryption_mode, Shapes::ShapeRef.new(shape: EndpointEncryptionMode, location_name: "EndpointEncryptionMode"))
1799
1810
  WorkspaceDirectory.add_member(:microsoft_entra_config, Shapes::ShapeRef.new(shape: MicrosoftEntraConfig, location_name: "MicrosoftEntraConfig"))
1800
1811
  WorkspaceDirectory.add_member(:workspace_directory_name, Shapes::ShapeRef.new(shape: WorkspaceDirectoryName, location_name: "WorkspaceDirectoryName"))
1801
1812
  WorkspaceDirectory.add_member(:workspace_directory_description, Shapes::ShapeRef.new(shape: WorkspaceDirectoryDescription, location_name: "WorkspaceDirectoryDescription"))
@@ -2711,6 +2722,17 @@ module Aws::WorkSpaces
2711
2722
  o.errors << Shapes::ShapeRef.new(shape: OperationNotSupportedException)
2712
2723
  end)
2713
2724
 
2725
+ api.add_operation(:modify_endpoint_encryption_mode, Seahorse::Model::Operation.new.tap do |o|
2726
+ o.name = "ModifyEndpointEncryptionMode"
2727
+ o.http_method = "POST"
2728
+ o.http_request_uri = "/"
2729
+ o.input = Shapes::ShapeRef.new(shape: ModifyEndpointEncryptionModeRequest)
2730
+ o.output = Shapes::ShapeRef.new(shape: ModifyEndpointEncryptionModeResponse)
2731
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
2732
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2733
+ o.errors << Shapes::ShapeRef.new(shape: OperationNotSupportedException)
2734
+ end)
2735
+
2714
2736
  api.add_operation(:modify_saml_properties, Seahorse::Model::Operation.new.tap do |o|
2715
2737
  o.name = "ModifySamlProperties"
2716
2738
  o.http_method = "POST"
@@ -2485,7 +2485,8 @@ module Aws::WorkSpaces
2485
2485
  # @return [String]
2486
2486
  #
2487
2487
  # @!attribute [rw] limit
2488
- # The maximum number of items to return.
2488
+ # The maximum size of each page of results. The default value is 20
2489
+ # and the maximum value is 50.
2489
2490
  # @return [Integer]
2490
2491
  #
2491
2492
  # @!attribute [rw] next_token
@@ -3647,6 +3648,28 @@ module Aws::WorkSpaces
3647
3648
  #
3648
3649
  class ModifyClientPropertiesResult < Aws::EmptyStructure; end
3649
3650
 
3651
+ # @!attribute [rw] directory_id
3652
+ # The identifier of the directory.
3653
+ # @return [String]
3654
+ #
3655
+ # @!attribute [rw] endpoint_encryption_mode
3656
+ # The encryption mode used for endpoint connections when streaming to
3657
+ # WorkSpaces Personal or WorkSpace Pools.
3658
+ # @return [String]
3659
+ #
3660
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/ModifyEndpointEncryptionModeRequest AWS API Documentation
3661
+ #
3662
+ class ModifyEndpointEncryptionModeRequest < Struct.new(
3663
+ :directory_id,
3664
+ :endpoint_encryption_mode)
3665
+ SENSITIVE = []
3666
+ include Aws::Structure
3667
+ end
3668
+
3669
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/ModifyEndpointEncryptionModeResponse AWS API Documentation
3670
+ #
3671
+ class ModifyEndpointEncryptionModeResponse < Aws::EmptyStructure; end
3672
+
3650
3673
  # @!attribute [rw] resource_id
3651
3674
  # The directory identifier for which you want to configure SAML
3652
3675
  # properties.
@@ -5373,6 +5396,11 @@ module Aws::WorkSpaces
5373
5396
  # WorkSpaces.
5374
5397
  # @return [String]
5375
5398
  #
5399
+ # @!attribute [rw] device_type_work_spaces_thin_client
5400
+ # Indicates whether users can access their WorkSpaces through a
5401
+ # WorkSpaces Thin Client.
5402
+ # @return [String]
5403
+ #
5376
5404
  # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/WorkspaceAccessProperties AWS API Documentation
5377
5405
  #
5378
5406
  class WorkspaceAccessProperties < Struct.new(
@@ -5383,7 +5411,8 @@ module Aws::WorkSpaces
5383
5411
  :device_type_android,
5384
5412
  :device_type_chrome_os,
5385
5413
  :device_type_zero_client,
5386
- :device_type_linux)
5414
+ :device_type_linux,
5415
+ :device_type_work_spaces_thin_client)
5387
5416
  SENSITIVE = []
5388
5417
  include Aws::Structure
5389
5418
  end
@@ -5687,6 +5716,11 @@ module Aws::WorkSpaces
5687
5716
  # for WorkSpaces login.
5688
5717
  # @return [Types::CertificateBasedAuthProperties]
5689
5718
  #
5719
+ # @!attribute [rw] endpoint_encryption_mode
5720
+ # Endpoint encryption mode that allows you to configure the specified
5721
+ # directory between Standard TLS and FIPS 140-2 validated mode.
5722
+ # @return [String]
5723
+ #
5690
5724
  # @!attribute [rw] microsoft_entra_config
5691
5725
  # Specifies details about Microsoft Entra configurations.
5692
5726
  # @return [Types::MicrosoftEntraConfig]
@@ -5745,6 +5779,7 @@ module Aws::WorkSpaces
5745
5779
  :selfservice_permissions,
5746
5780
  :saml_properties,
5747
5781
  :certificate_based_auth_properties,
5782
+ :endpoint_encryption_mode,
5748
5783
  :microsoft_entra_config,
5749
5784
  :workspace_directory_name,
5750
5785
  :workspace_directory_description,
@@ -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.131.0'
57
+ GEM_VERSION = '1.133.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -1000,6 +1000,16 @@ module Aws
1000
1000
  ) -> _ModifyClientPropertiesResponseSuccess
1001
1001
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyClientPropertiesResponseSuccess
1002
1002
 
1003
+ interface _ModifyEndpointEncryptionModeResponseSuccess
1004
+ include ::Seahorse::Client::_ResponseSuccess[Types::ModifyEndpointEncryptionModeResponse]
1005
+ end
1006
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpaces/Client.html#modify_endpoint_encryption_mode-instance_method
1007
+ def modify_endpoint_encryption_mode: (
1008
+ directory_id: ::String,
1009
+ endpoint_encryption_mode: ("STANDARD_TLS" | "FIPS_VALIDATED")
1010
+ ) -> _ModifyEndpointEncryptionModeResponseSuccess
1011
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyEndpointEncryptionModeResponseSuccess
1012
+
1003
1013
  interface _ModifySamlPropertiesResponseSuccess
1004
1014
  include ::Seahorse::Client::_ResponseSuccess[Types::ModifySamlPropertiesResult]
1005
1015
  end
@@ -1074,7 +1084,8 @@ module Aws
1074
1084
  device_type_android: ("ALLOW" | "DENY")?,
1075
1085
  device_type_chrome_os: ("ALLOW" | "DENY")?,
1076
1086
  device_type_zero_client: ("ALLOW" | "DENY")?,
1077
- device_type_linux: ("ALLOW" | "DENY")?
1087
+ device_type_linux: ("ALLOW" | "DENY")?,
1088
+ device_type_work_spaces_thin_client: ("ALLOW" | "DENY")?
1078
1089
  }
1079
1090
  ) -> _ModifyWorkspaceAccessPropertiesResponseSuccess
1080
1091
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyWorkspaceAccessPropertiesResponseSuccess
data/sig/types.rbs CHANGED
@@ -1061,6 +1061,15 @@ module Aws::WorkSpaces
1061
1061
  class ModifyClientPropertiesResult < Aws::EmptyStructure
1062
1062
  end
1063
1063
 
1064
+ class ModifyEndpointEncryptionModeRequest
1065
+ attr_accessor directory_id: ::String
1066
+ attr_accessor endpoint_encryption_mode: ("STANDARD_TLS" | "FIPS_VALIDATED")
1067
+ SENSITIVE: []
1068
+ end
1069
+
1070
+ class ModifyEndpointEncryptionModeResponse < Aws::EmptyStructure
1071
+ end
1072
+
1064
1073
  class ModifySamlPropertiesRequest
1065
1074
  attr_accessor resource_id: ::String
1066
1075
  attr_accessor saml_properties: Types::SamlProperties
@@ -1579,6 +1588,7 @@ module Aws::WorkSpaces
1579
1588
  attr_accessor device_type_chrome_os: ("ALLOW" | "DENY")
1580
1589
  attr_accessor device_type_zero_client: ("ALLOW" | "DENY")
1581
1590
  attr_accessor device_type_linux: ("ALLOW" | "DENY")
1591
+ attr_accessor device_type_work_spaces_thin_client: ("ALLOW" | "DENY")
1582
1592
  SENSITIVE: []
1583
1593
  end
1584
1594
 
@@ -1636,6 +1646,7 @@ module Aws::WorkSpaces
1636
1646
  attr_accessor selfservice_permissions: Types::SelfservicePermissions
1637
1647
  attr_accessor saml_properties: Types::SamlProperties
1638
1648
  attr_accessor certificate_based_auth_properties: Types::CertificateBasedAuthProperties
1649
+ attr_accessor endpoint_encryption_mode: ("STANDARD_TLS" | "FIPS_VALIDATED")
1639
1650
  attr_accessor microsoft_entra_config: Types::MicrosoftEntraConfig
1640
1651
  attr_accessor workspace_directory_name: ::String
1641
1652
  attr_accessor workspace_directory_description: ::String
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-workspaces
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.131.0
4
+ version: 1.133.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-03-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core