aws-sdk-workspaces 1.158.0 → 1.160.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-workspaces/client.rb +16 -18
- data/lib/aws-sdk-workspaces/types.rb +3 -3
- data/lib/aws-sdk-workspaces.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a22320fd784904178fccdd14b58387bd458d5eb48fa318ff14779cbda3dc9d30
|
|
4
|
+
data.tar.gz: 36a3e3cb4383a82fb87f135d4b3332d07ba696f19d6881124efa357fb7d160b7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 45643218dd3414d7dc2c58013b96f5fae170583ae758a419393900dbdc1ea0c73c242eb49785dd336d6f2f500002bc533ede35e76c13535803d846487e8aa1f9
|
|
7
|
+
data.tar.gz: d937dff293cb3590d0031f5c209b1c6d0a26b39bce680952d0acd545283b3e0aa33adaa4e3f5562ebfa3ae225d7e8e59c2b9950e40386fe2d449ff8c2d674848
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.160.0 (2026-06-04)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Adding new BDD representation of endpoint ruleset
|
|
8
|
+
|
|
9
|
+
1.159.0 (2026-05-21)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
13
|
+
|
|
4
14
|
1.158.0 (2026-05-19)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.160.0
|
|
@@ -199,7 +199,7 @@ module Aws::WorkSpaces
|
|
|
199
199
|
# the required types.
|
|
200
200
|
#
|
|
201
201
|
# @option options [Boolean] :correct_clock_skew (true)
|
|
202
|
-
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
|
202
|
+
# Used only in `standard` and `adaptive` retry modes. Specifies whether to apply
|
|
203
203
|
# a clock skew correction and retry requests with skewed client clocks.
|
|
204
204
|
#
|
|
205
205
|
# @option options [String] :defaults_mode ("legacy")
|
|
@@ -323,17 +323,15 @@ module Aws::WorkSpaces
|
|
|
323
323
|
# @option options [String] :retry_mode ("legacy")
|
|
324
324
|
# Specifies which retry algorithm to use. Values are:
|
|
325
325
|
#
|
|
326
|
-
# * `legacy` - The pre-existing retry behavior.
|
|
327
|
-
# no retry mode is provided.
|
|
326
|
+
# * `legacy` - The pre-existing retry behavior. This is the default
|
|
327
|
+
# value if no retry mode is provided.
|
|
328
328
|
#
|
|
329
329
|
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
|
330
330
|
# This includes support for retry quotas, which limit the number of
|
|
331
331
|
# unsuccessful retries a client can make.
|
|
332
332
|
#
|
|
333
|
-
# * `adaptive` -
|
|
334
|
-
#
|
|
335
|
-
# throttling. This is a provisional mode that may change behavior
|
|
336
|
-
# in the future.
|
|
333
|
+
# * `adaptive` - A retry mode that includes all the functionality of
|
|
334
|
+
# `standard` mode along with automatic client side throttling.
|
|
337
335
|
#
|
|
338
336
|
# @option options [String] :sdk_ua_app_id
|
|
339
337
|
# A unique and opaque application ID that is appended to the
|
|
@@ -773,11 +771,11 @@ module Aws::WorkSpaces
|
|
|
773
771
|
req.send_request(options)
|
|
774
772
|
end
|
|
775
773
|
|
|
776
|
-
# Creates a client-add-in for
|
|
777
|
-
# create only one
|
|
774
|
+
# Creates a client-add-in for Connect Customer within a directory. You
|
|
775
|
+
# can create only one Connect Customer client add-in within a directory.
|
|
778
776
|
#
|
|
779
777
|
# This client add-in allows WorkSpaces users to seamlessly connect to
|
|
780
|
-
#
|
|
778
|
+
# Connect Customer.
|
|
781
779
|
#
|
|
782
780
|
# @option params [required, String] :resource_id
|
|
783
781
|
# The directory identifier for which to configure the client add-in.
|
|
@@ -786,7 +784,7 @@ module Aws::WorkSpaces
|
|
|
786
784
|
# The name of the client add-in.
|
|
787
785
|
#
|
|
788
786
|
# @option params [required, String] :url
|
|
789
|
-
# The endpoint URL of the
|
|
787
|
+
# The endpoint URL of the Connect Customer client add-in.
|
|
790
788
|
#
|
|
791
789
|
# @return [Types::CreateConnectClientAddInResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
792
790
|
#
|
|
@@ -1552,8 +1550,8 @@ module Aws::WorkSpaces
|
|
|
1552
1550
|
req.send_request(options)
|
|
1553
1551
|
end
|
|
1554
1552
|
|
|
1555
|
-
# Deletes a client-add-in for
|
|
1556
|
-
# directory.
|
|
1553
|
+
# Deletes a client-add-in for Connect Customer that is configured within
|
|
1554
|
+
# a directory.
|
|
1557
1555
|
#
|
|
1558
1556
|
# @option params [required, String] :add_in_id
|
|
1559
1557
|
# The identifier of the client add-in to delete.
|
|
@@ -2156,7 +2154,7 @@ module Aws::WorkSpaces
|
|
|
2156
2154
|
req.send_request(options)
|
|
2157
2155
|
end
|
|
2158
2156
|
|
|
2159
|
-
# Retrieves a list of
|
|
2157
|
+
# Retrieves a list of Connect Customer client add-ins that have been
|
|
2160
2158
|
# created.
|
|
2161
2159
|
#
|
|
2162
2160
|
# @option params [required, String] :resource_id
|
|
@@ -4724,8 +4722,8 @@ module Aws::WorkSpaces
|
|
|
4724
4722
|
req.send_request(options)
|
|
4725
4723
|
end
|
|
4726
4724
|
|
|
4727
|
-
# Updates a
|
|
4728
|
-
# name and endpoint URL of a
|
|
4725
|
+
# Updates a Connect Customer client add-in. Use this action to update
|
|
4726
|
+
# the name and endpoint URL of a Connect Customer client add-in.
|
|
4729
4727
|
#
|
|
4730
4728
|
# @option params [required, String] :add_in_id
|
|
4731
4729
|
# The identifier of the client add-in to update.
|
|
@@ -4737,7 +4735,7 @@ module Aws::WorkSpaces
|
|
|
4737
4735
|
# The name of the client add-in.
|
|
4738
4736
|
#
|
|
4739
4737
|
# @option params [String] :url
|
|
4740
|
-
# The endpoint URL of the
|
|
4738
|
+
# The endpoint URL of the Connect Customer client add-in.
|
|
4741
4739
|
#
|
|
4742
4740
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
4743
4741
|
#
|
|
@@ -5054,7 +5052,7 @@ module Aws::WorkSpaces
|
|
|
5054
5052
|
tracer: tracer
|
|
5055
5053
|
)
|
|
5056
5054
|
context[:gem_name] = 'aws-sdk-workspaces'
|
|
5057
|
-
context[:gem_version] = '1.
|
|
5055
|
+
context[:gem_version] = '1.160.0'
|
|
5058
5056
|
Seahorse::Client::Request.new(handlers, context)
|
|
5059
5057
|
end
|
|
5060
5058
|
|
|
@@ -608,7 +608,7 @@ module Aws::WorkSpaces
|
|
|
608
608
|
include Aws::Structure
|
|
609
609
|
end
|
|
610
610
|
|
|
611
|
-
# Describes an
|
|
611
|
+
# Describes an Connect Customer client add-in.
|
|
612
612
|
#
|
|
613
613
|
# @!attribute [rw] add_in_id
|
|
614
614
|
# The client add-in identifier.
|
|
@@ -828,7 +828,7 @@ module Aws::WorkSpaces
|
|
|
828
828
|
# @return [String]
|
|
829
829
|
#
|
|
830
830
|
# @!attribute [rw] url
|
|
831
|
-
# The endpoint URL of the
|
|
831
|
+
# The endpoint URL of the Connect Customer client add-in.
|
|
832
832
|
# @return [String]
|
|
833
833
|
#
|
|
834
834
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/CreateConnectClientAddInRequest AWS API Documentation
|
|
@@ -5123,7 +5123,7 @@ module Aws::WorkSpaces
|
|
|
5123
5123
|
# @return [String]
|
|
5124
5124
|
#
|
|
5125
5125
|
# @!attribute [rw] url
|
|
5126
|
-
# The endpoint URL of the
|
|
5126
|
+
# The endpoint URL of the Connect Customer client add-in.
|
|
5127
5127
|
# @return [String]
|
|
5128
5128
|
#
|
|
5129
5129
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/UpdateConnectClientAddInRequest AWS API Documentation
|
data/lib/aws-sdk-workspaces.rb
CHANGED
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.
|
|
4
|
+
version: 1.160.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
@@ -18,7 +18,7 @@ dependencies:
|
|
|
18
18
|
version: '3'
|
|
19
19
|
- - ">="
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: 3.
|
|
21
|
+
version: 3.248.0
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -28,7 +28,7 @@ dependencies:
|
|
|
28
28
|
version: '3'
|
|
29
29
|
- - ">="
|
|
30
30
|
- !ruby/object:Gem::Version
|
|
31
|
-
version: 3.
|
|
31
|
+
version: 3.248.0
|
|
32
32
|
- !ruby/object:Gem::Dependency
|
|
33
33
|
name: aws-sigv4
|
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|