aws-sdk-workspaces 1.132.0 → 1.134.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: 6c544343c4ff56b0ace2ac7f0f7fc7802aaac61df5bb803e05295ba3ade9da06
4
- data.tar.gz: 369d3154ea09c787816a27574bb142d2c7257e7ff6678bdb9129ee46cabbbdaf
3
+ metadata.gz: f61db8c8d4ad4e1a2a8b24533f04df4104d29aa6e59af4a26f07af1c54e7e6af
4
+ data.tar.gz: 24ab005d017766e0612dc77f73e782d8b6e20c1ca374fdac33745b0bb0fec66f
5
5
  SHA512:
6
- metadata.gz: f33599316316a5267920c2abf796afe3fb61c39d7c8aee9ff7365ba11148b38879bc3458443b05bddd59a00ba19b77876c7667340532fbdbb266a538cd06aa7b
7
- data.tar.gz: 7e66c97a37f63837eb4985208a2c53e595d5399a6d3ad096fd37caac9404fbc282c7e19ecd959bcb08912a1a86580882f0073b30a64130eaf187108107df8a5d
6
+ metadata.gz: cc329cd551b5f58eb1464db2d51a41c04d4bb1248ba4c7394e778953fa7149aca6b363b9ad871b310e790770afae96626090735f13ef5483baadccf620e14f3b
7
+ data.tar.gz: 7be7538ae677744f3f3276312bc3d2a06678a61eeea569025b9160a6542eaf8ff2617ab6dd585c1cf63c05f4ed31fdd561ba5faefcb7a1cd387aa2961d34a2b7
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.134.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.133.0 (2025-03-06)
10
+ ------------------
11
+
12
+ * Feature - Added a new ModifyEndpointEncryptionMode API for managing endpoint encryption settings.
13
+
4
14
  1.132.0 (2025-03-05)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.132.0
1
+ 1.134.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
@@ -2600,6 +2600,7 @@ module Aws::WorkSpaces
2600
2600
  # resp.directories[0].saml_properties.relay_state_parameter_name #=> String
2601
2601
  # resp.directories[0].certificate_based_auth_properties.status #=> String, one of "DISABLED", "ENABLED"
2602
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"
2603
2604
  # resp.directories[0].microsoft_entra_config.tenant_id #=> String
2604
2605
  # resp.directories[0].microsoft_entra_config.application_config_secret_arn #=> String
2605
2606
  # resp.directories[0].workspace_directory_name #=> String
@@ -2925,7 +2926,8 @@ module Aws::WorkSpaces
2925
2926
  # The identifier of the user.
2926
2927
  #
2927
2928
  # @option params [Integer] :limit
2928
- # 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.
2929
2931
  #
2930
2932
  # @option params [String] :next_token
2931
2933
  # If you received a `NextToken` from a previous call that was paginated,
@@ -3685,6 +3687,35 @@ module Aws::WorkSpaces
3685
3687
  req.send_request(options)
3686
3688
  end
3687
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
+
3688
3719
  # Modifies multiple properties related to SAML 2.0 authentication,
3689
3720
  # including the enablement status, user access URL, and relay state
3690
3721
  # parameter name that are used for configuring federation with an SAML
@@ -4419,7 +4450,7 @@ module Aws::WorkSpaces
4419
4450
  #
4420
4451
  # Terminating a WorkSpace is a permanent action and cannot be undone.
4421
4452
  # The user's data is destroyed. If you need to archive any user data,
4422
- # contact Amazon Web Services Support before terminating the WorkSpace.
4453
+ # contact Amazon Web ServicesSupport before terminating the WorkSpace.
4423
4454
  #
4424
4455
  # You can terminate a WorkSpace that is in any state except `SUSPENDED`.
4425
4456
  #
@@ -4700,7 +4731,7 @@ module Aws::WorkSpaces
4700
4731
  # same Region.
4701
4732
  #
4702
4733
  # In Amazon Web Services GovCloud (US), to copy images to and from other
4703
- # Regions, contact Amazon Web Services Support.
4734
+ # Regions, contact Amazon Web ServicesSupport.
4704
4735
  #
4705
4736
  # For more information about sharing images, see [ Share or Unshare a
4706
4737
  # Custom WorkSpaces Image][1].
@@ -4711,8 +4742,8 @@ module Aws::WorkSpaces
4711
4742
  # * Sharing Bring Your Own License (BYOL) images across Amazon Web
4712
4743
  # Services accounts isn't supported at this time in Amazon Web
4713
4744
  # Services GovCloud (US). To share BYOL images across accounts in
4714
- # Amazon Web Services GovCloud (US), contact Amazon Web Services
4715
- # Support.
4745
+ # Amazon Web Services GovCloud (US), contact Amazon Web
4746
+ # ServicesSupport.
4716
4747
  #
4717
4748
  # </note>
4718
4749
  #
@@ -4852,7 +4883,7 @@ module Aws::WorkSpaces
4852
4883
  tracer: tracer
4853
4884
  )
4854
4885
  context[:gem_name] = 'aws-sdk-workspaces'
4855
- context[:gem_version] = '1.132.0'
4886
+ context[:gem_version] = '1.134.0'
4856
4887
  Seahorse::Client::Request.new(handlers, context)
4857
4888
  end
4858
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"))
@@ -1797,6 +1806,7 @@ module Aws::WorkSpaces
1797
1806
  WorkspaceDirectory.add_member(:selfservice_permissions, Shapes::ShapeRef.new(shape: SelfservicePermissions, location_name: "SelfservicePermissions"))
1798
1807
  WorkspaceDirectory.add_member(:saml_properties, Shapes::ShapeRef.new(shape: SamlProperties, location_name: "SamlProperties"))
1799
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"))
1800
1810
  WorkspaceDirectory.add_member(:microsoft_entra_config, Shapes::ShapeRef.new(shape: MicrosoftEntraConfig, location_name: "MicrosoftEntraConfig"))
1801
1811
  WorkspaceDirectory.add_member(:workspace_directory_name, Shapes::ShapeRef.new(shape: WorkspaceDirectoryName, location_name: "WorkspaceDirectoryName"))
1802
1812
  WorkspaceDirectory.add_member(:workspace_directory_description, Shapes::ShapeRef.new(shape: WorkspaceDirectoryDescription, location_name: "WorkspaceDirectoryDescription"))
@@ -2712,6 +2722,17 @@ module Aws::WorkSpaces
2712
2722
  o.errors << Shapes::ShapeRef.new(shape: OperationNotSupportedException)
2713
2723
  end)
2714
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
+
2715
2736
  api.add_operation(:modify_saml_properties, Seahorse::Model::Operation.new.tap do |o|
2716
2737
  o.name = "ModifySamlProperties"
2717
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.
@@ -5693,6 +5716,11 @@ module Aws::WorkSpaces
5693
5716
  # for WorkSpaces login.
5694
5717
  # @return [Types::CertificateBasedAuthProperties]
5695
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
+ #
5696
5724
  # @!attribute [rw] microsoft_entra_config
5697
5725
  # Specifies details about Microsoft Entra configurations.
5698
5726
  # @return [Types::MicrosoftEntraConfig]
@@ -5751,6 +5779,7 @@ module Aws::WorkSpaces
5751
5779
  :selfservice_permissions,
5752
5780
  :saml_properties,
5753
5781
  :certificate_based_auth_properties,
5782
+ :endpoint_encryption_mode,
5754
5783
  :microsoft_entra_config,
5755
5784
  :workspace_directory_name,
5756
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.132.0'
57
+ GEM_VERSION = '1.134.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
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
@@ -1637,6 +1646,7 @@ module Aws::WorkSpaces
1637
1646
  attr_accessor selfservice_permissions: Types::SelfservicePermissions
1638
1647
  attr_accessor saml_properties: Types::SamlProperties
1639
1648
  attr_accessor certificate_based_auth_properties: Types::CertificateBasedAuthProperties
1649
+ attr_accessor endpoint_encryption_mode: ("STANDARD_TLS" | "FIPS_VALIDATED")
1640
1650
  attr_accessor microsoft_entra_config: Types::MicrosoftEntraConfig
1641
1651
  attr_accessor workspace_directory_name: ::String
1642
1652
  attr_accessor workspace_directory_description: ::String
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-workspaces
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.132.0
4
+ version: 1.134.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-03-05 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-workspaces
79
78
  changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-workspaces/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
99
96
  test_files: []