aws-sdk-workspaces 1.132.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-workspaces/client.rb +38 -7
- data/lib/aws-sdk-workspaces/client_api.rb +21 -0
- data/lib/aws-sdk-workspaces/types.rb +30 -1
- data/lib/aws-sdk-workspaces.rb +1 -1
- data/sig/client.rbs +10 -0
- data/sig/types.rbs +10 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 25c75fabd03cac281c49fb245b4c0b2fe0eb3661406d99c74142be6499577694
|
4
|
+
data.tar.gz: 48d42862f87cde184548d6e80647a9b6996802ffb8437a65de7ea745926d7956
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d1658be58c12b5fa8d8dffc8140eb236c3a078f32a8c9c464297cce9860d2deba7f89aea14f277343c80bd67515d4f6ce9465a1443503ed84602d8abd2739874
|
7
|
+
data.tar.gz: 66d618b5f0d7ded9d5135da51fd2c53842582c9a7d9e1121d418fc4047fbeeb4e010d64ee6f024639a172bf976d451cfca9de2ce68458e41e6aca6a41dd88486
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
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
|
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
|
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
|
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
|
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
|
4715
|
-
#
|
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.
|
4886
|
+
context[:gem_version] = '1.133.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
|
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,
|
data/lib/aws-sdk-workspaces.rb
CHANGED
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,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-workspaces
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
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-03-
|
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
|