aws-sdk-workspacesthinclient 1.29.0 → 1.31.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-workspacesthinclient/client.rb +22 -9
- data/lib/aws-sdk-workspacesthinclient/client_api.rb +3 -0
- data/lib/aws-sdk-workspacesthinclient/types.rb +14 -4
- data/lib/aws-sdk-workspacesthinclient.rb +1 -1
- data/sig/client.rbs +1 -0
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +4 -2
- 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: f28aaa50b15d7fd385e9ce59ce5a0d8572908ea0534318d0740abe95902f3a2e
|
4
|
+
data.tar.gz: 0fd9e2f0e991c74c602bdc9e1fc4b5e1b45a719aba7510ff547f936066652157
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 966542fbbd2d72a53d4c87e352496c044296f211bca97008fc915f54982a5948357a08585a3a203a92a3cbcac0a9f14aaace7287dd6eb8eaa1f3dfd043437406
|
7
|
+
data.tar.gz: 07762db012b5c9e8d86f6581e08fc6207f364bf04bb7eaeac81f452d641132596515640cf73fd902341f35fc64fcfb5dd90b299eaa7196abcb8f09887df70e38
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.31.0 (2025-07-23)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Added the lastUserId parameter to the ListDevices and GetDevice API.
|
8
|
+
|
9
|
+
1.30.0 (2025-07-21)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.29.0 (2025-06-25)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.31.0
|
@@ -95,7 +95,7 @@ module Aws::WorkSpacesThinClient
|
|
95
95
|
# class name or an instance of a plugin class.
|
96
96
|
#
|
97
97
|
# @option options [required, Aws::CredentialProvider] :credentials
|
98
|
-
# Your AWS credentials. This can be an instance of any one of the
|
98
|
+
# Your AWS credentials used for authentication. This can be an instance of any one of the
|
99
99
|
# following classes:
|
100
100
|
#
|
101
101
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
@@ -128,18 +128,23 @@ module Aws::WorkSpacesThinClient
|
|
128
128
|
# locations will be searched for credentials:
|
129
129
|
#
|
130
130
|
# * `Aws.config[:credentials]`
|
131
|
+
#
|
131
132
|
# * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
|
132
133
|
# `:account_id` options.
|
133
|
-
#
|
134
|
-
#
|
134
|
+
#
|
135
|
+
# * `ENV['AWS_ACCESS_KEY_ID']`, `ENV['AWS_SECRET_ACCESS_KEY']`,
|
136
|
+
# `ENV['AWS_SESSION_TOKEN']`, and `ENV['AWS_ACCOUNT_ID']`.
|
137
|
+
#
|
135
138
|
# * `~/.aws/credentials`
|
139
|
+
#
|
136
140
|
# * `~/.aws/config`
|
141
|
+
#
|
137
142
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
138
143
|
# are very aggressive. Construct and pass an instance of
|
139
144
|
# `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
140
145
|
# enable retries and extended timeouts. Instance profile credential
|
141
|
-
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
142
|
-
# to true
|
146
|
+
# fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
|
147
|
+
# to `true`.
|
143
148
|
#
|
144
149
|
# @option options [required, String] :region
|
145
150
|
# The AWS region to connect to. The configured `:region` is
|
@@ -167,6 +172,11 @@ module Aws::WorkSpacesThinClient
|
|
167
172
|
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
168
173
|
# not retry instead of sleeping.
|
169
174
|
#
|
175
|
+
# @option options [Array<String>] :auth_scheme_preference
|
176
|
+
# A list of preferred authentication schemes to use when making a request. Supported values are:
|
177
|
+
# `sigv4`, `sigv4a`, `httpBearerAuth`, and `noAuth`. When set using `ENV['AWS_AUTH_SCHEME_PREFERENCE']` or in
|
178
|
+
# shared config as `auth_scheme_preference`, the value should be a comma-separated list.
|
179
|
+
#
|
170
180
|
# @option options [Boolean] :client_side_monitoring (false)
|
171
181
|
# When `true`, client-side metrics will be collected for all API requests from
|
172
182
|
# this client.
|
@@ -253,8 +263,8 @@ module Aws::WorkSpacesThinClient
|
|
253
263
|
# 4 times. Used in `standard` and `adaptive` retry modes.
|
254
264
|
#
|
255
265
|
# @option options [String] :profile ("default")
|
256
|
-
# Used when loading credentials from the shared credentials file
|
257
|
-
#
|
266
|
+
# Used when loading credentials from the shared credentials file at `HOME/.aws/credentials`.
|
267
|
+
# When not specified, 'default' is used.
|
258
268
|
#
|
259
269
|
# @option options [String] :request_checksum_calculation ("when_supported")
|
260
270
|
# Determines when a checksum will be calculated for request payloads. Values are:
|
@@ -367,7 +377,7 @@ module Aws::WorkSpacesThinClient
|
|
367
377
|
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
368
378
|
#
|
369
379
|
# @option options [Aws::TokenProvider] :token_provider
|
370
|
-
#
|
380
|
+
# Your Bearer token used for authentication. This can be an instance of any one of the
|
371
381
|
# following classes:
|
372
382
|
#
|
373
383
|
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
@@ -770,6 +780,7 @@ module Aws::WorkSpacesThinClient
|
|
770
780
|
# resp.device.updated_at #=> Time
|
771
781
|
# resp.device.arn #=> String
|
772
782
|
# resp.device.kms_key_arn #=> String
|
783
|
+
# resp.device.last_user_id #=> String
|
773
784
|
#
|
774
785
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-thin-client-2023-08-22/GetDevice AWS API Documentation
|
775
786
|
#
|
@@ -919,6 +930,7 @@ module Aws::WorkSpacesThinClient
|
|
919
930
|
# resp.devices[0].created_at #=> Time
|
920
931
|
# resp.devices[0].updated_at #=> Time
|
921
932
|
# resp.devices[0].arn #=> String
|
933
|
+
# resp.devices[0].last_user_id #=> String
|
922
934
|
# resp.next_token #=> String
|
923
935
|
#
|
924
936
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-thin-client-2023-08-22/ListDevices AWS API Documentation
|
@@ -1178,6 +1190,7 @@ module Aws::WorkSpacesThinClient
|
|
1178
1190
|
# resp.device.created_at #=> Time
|
1179
1191
|
# resp.device.updated_at #=> Time
|
1180
1192
|
# resp.device.arn #=> String
|
1193
|
+
# resp.device.last_user_id #=> String
|
1181
1194
|
#
|
1182
1195
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-thin-client-2023-08-22/UpdateDevice AWS API Documentation
|
1183
1196
|
#
|
@@ -1326,7 +1339,7 @@ module Aws::WorkSpacesThinClient
|
|
1326
1339
|
tracer: tracer
|
1327
1340
|
)
|
1328
1341
|
context[:gem_name] = 'aws-sdk-workspacesthinclient'
|
1329
|
-
context[:gem_version] = '1.
|
1342
|
+
context[:gem_version] = '1.31.0'
|
1330
1343
|
Seahorse::Client::Request.new(handlers, context)
|
1331
1344
|
end
|
1332
1345
|
|
@@ -107,6 +107,7 @@ module Aws::WorkSpacesThinClient
|
|
107
107
|
UpdateEnvironmentResponse = Shapes::StructureShape.new(name: 'UpdateEnvironmentResponse')
|
108
108
|
UpdateSoftwareSetRequest = Shapes::StructureShape.new(name: 'UpdateSoftwareSetRequest')
|
109
109
|
UpdateSoftwareSetResponse = Shapes::StructureShape.new(name: 'UpdateSoftwareSetResponse')
|
110
|
+
UserId = Shapes::StringShape.new(name: 'UserId')
|
110
111
|
ValidationException = Shapes::StructureShape.new(name: 'ValidationException')
|
111
112
|
ValidationExceptionField = Shapes::StructureShape.new(name: 'ValidationExceptionField')
|
112
113
|
ValidationExceptionFieldList = Shapes::ListShape.new(name: 'ValidationExceptionFieldList')
|
@@ -177,6 +178,7 @@ module Aws::WorkSpacesThinClient
|
|
177
178
|
Device.add_member(:updated_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "updatedAt"))
|
178
179
|
Device.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "arn"))
|
179
180
|
Device.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "kmsKeyArn"))
|
181
|
+
Device.add_member(:last_user_id, Shapes::ShapeRef.new(shape: UserId, location_name: "lastUserId"))
|
180
182
|
Device.struct_class = Types::Device
|
181
183
|
|
182
184
|
DeviceCreationTagsMap.key = Shapes::ShapeRef.new(shape: DeviceCreationTagKey)
|
@@ -199,6 +201,7 @@ module Aws::WorkSpacesThinClient
|
|
199
201
|
DeviceSummary.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "createdAt"))
|
200
202
|
DeviceSummary.add_member(:updated_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "updatedAt"))
|
201
203
|
DeviceSummary.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "arn"))
|
204
|
+
DeviceSummary.add_member(:last_user_id, Shapes::ShapeRef.new(shape: UserId, location_name: "lastUserId"))
|
202
205
|
DeviceSummary.struct_class = Types::DeviceSummary
|
203
206
|
|
204
207
|
Environment.add_member(:id, Shapes::ShapeRef.new(shape: EnvironmentId, location_name: "id"))
|
@@ -360,6 +360,10 @@ module Aws::WorkSpacesThinClient
|
|
360
360
|
# used to encrypt the device.
|
361
361
|
# @return [String]
|
362
362
|
#
|
363
|
+
# @!attribute [rw] last_user_id
|
364
|
+
# The user ID of the most recent session on the device.
|
365
|
+
# @return [String]
|
366
|
+
#
|
363
367
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-thin-client-2023-08-22/Device AWS API Documentation
|
364
368
|
#
|
365
369
|
class Device < Struct.new(
|
@@ -382,8 +386,9 @@ module Aws::WorkSpacesThinClient
|
|
382
386
|
:created_at,
|
383
387
|
:updated_at,
|
384
388
|
:arn,
|
385
|
-
:kms_key_arn
|
386
|
-
|
389
|
+
:kms_key_arn,
|
390
|
+
:last_user_id)
|
391
|
+
SENSITIVE = [:name, :last_user_id]
|
387
392
|
include Aws::Structure
|
388
393
|
end
|
389
394
|
|
@@ -451,6 +456,10 @@ module Aws::WorkSpacesThinClient
|
|
451
456
|
# The Amazon Resource Name (ARN) of the device.
|
452
457
|
# @return [String]
|
453
458
|
#
|
459
|
+
# @!attribute [rw] last_user_id
|
460
|
+
# The user ID of the most recent session on the device.
|
461
|
+
# @return [String]
|
462
|
+
#
|
454
463
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-thin-client-2023-08-22/DeviceSummary AWS API Documentation
|
455
464
|
#
|
456
465
|
class DeviceSummary < Struct.new(
|
@@ -468,8 +477,9 @@ module Aws::WorkSpacesThinClient
|
|
468
477
|
:last_posture_at,
|
469
478
|
:created_at,
|
470
479
|
:updated_at,
|
471
|
-
:arn
|
472
|
-
|
480
|
+
:arn,
|
481
|
+
:last_user_id)
|
482
|
+
SENSITIVE = [:name, :last_user_id]
|
473
483
|
include Aws::Structure
|
474
484
|
end
|
475
485
|
|
data/sig/client.rbs
CHANGED
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
data/sig/resource.rbs
CHANGED
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
data/sig/types.rbs
CHANGED
@@ -89,7 +89,8 @@ module Aws::WorkSpacesThinClient
|
|
89
89
|
attr_accessor updated_at: ::Time
|
90
90
|
attr_accessor arn: ::String
|
91
91
|
attr_accessor kms_key_arn: ::String
|
92
|
-
|
92
|
+
attr_accessor last_user_id: ::String
|
93
|
+
SENSITIVE: [:name, :last_user_id]
|
93
94
|
end
|
94
95
|
|
95
96
|
class DeviceSummary
|
@@ -108,7 +109,8 @@ module Aws::WorkSpacesThinClient
|
|
108
109
|
attr_accessor created_at: ::Time
|
109
110
|
attr_accessor updated_at: ::Time
|
110
111
|
attr_accessor arn: ::String
|
111
|
-
|
112
|
+
attr_accessor last_user_id: ::String
|
113
|
+
SENSITIVE: [:name, :last_user_id]
|
112
114
|
end
|
113
115
|
|
114
116
|
class Environment
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-workspacesthinclient
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.31.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.227.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.227.0
|
32
32
|
- !ruby/object:Gem::Dependency
|
33
33
|
name: aws-sigv4
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|