aws-sdk-workspacesthinclient 1.28.0 → 1.30.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 +19 -15
- data/lib/aws-sdk-workspacesthinclient/client_api.rb +0 -3
- data/lib/aws-sdk-workspacesthinclient/types.rb +5 -20
- data/lib/aws-sdk-workspacesthinclient.rb +1 -1
- data/sig/client.rbs +1 -0
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +3 -6
- 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: 4747ebc9454264fbc8a9d36302d3961a43eeb0b5ed9cdfc289737ad3fdefd987
|
4
|
+
data.tar.gz: 5d34c30155d0cb703798f21795820972425522b9e63a3ba8647052eaf67cfc2c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 43e79dea1414ae2d73be0675e24388b963385cc35814f86ae6fa4203fa31b4de28013b6e15bf4825748a8d0c916c30e7a72483fbde44ebc6fe98c316b683e6db
|
7
|
+
data.tar.gz: 847a4734fed4753b1ed4ed3755738af062ffdf9a5b96a8e9fd0f2a4134f135dd65f8185da2b90275e7030ddf4e53fd522847e486b137f9f2da7f7f0b275fea05
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.30.0 (2025-07-21)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.29.0 (2025-06-25)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Remove Tags field from Get API responses
|
13
|
+
|
4
14
|
1.28.0 (2025-06-09)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.30.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,8 +780,6 @@ module Aws::WorkSpacesThinClient
|
|
770
780
|
# resp.device.updated_at #=> Time
|
771
781
|
# resp.device.arn #=> String
|
772
782
|
# resp.device.kms_key_arn #=> String
|
773
|
-
# resp.device.tags #=> Hash
|
774
|
-
# resp.device.tags["String"] #=> String
|
775
783
|
#
|
776
784
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-thin-client-2023-08-22/GetDevice AWS API Documentation
|
777
785
|
#
|
@@ -824,8 +832,6 @@ module Aws::WorkSpacesThinClient
|
|
824
832
|
# resp.environment.updated_at #=> Time
|
825
833
|
# resp.environment.arn #=> String
|
826
834
|
# resp.environment.kms_key_arn #=> String
|
827
|
-
# resp.environment.tags #=> Hash
|
828
|
-
# resp.environment.tags["String"] #=> String
|
829
835
|
# resp.environment.device_creation_tags #=> Hash
|
830
836
|
# resp.environment.device_creation_tags["DeviceCreationTagKey"] #=> String
|
831
837
|
#
|
@@ -864,8 +870,6 @@ module Aws::WorkSpacesThinClient
|
|
864
870
|
# resp.software_set.software[0].name #=> String
|
865
871
|
# resp.software_set.software[0].version #=> String
|
866
872
|
# resp.software_set.arn #=> String
|
867
|
-
# resp.software_set.tags #=> Hash
|
868
|
-
# resp.software_set.tags["String"] #=> String
|
869
873
|
#
|
870
874
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-thin-client-2023-08-22/GetSoftwareSet AWS API Documentation
|
871
875
|
#
|
@@ -1332,7 +1336,7 @@ module Aws::WorkSpacesThinClient
|
|
1332
1336
|
tracer: tracer
|
1333
1337
|
)
|
1334
1338
|
context[:gem_name] = 'aws-sdk-workspacesthinclient'
|
1335
|
-
context[:gem_version] = '1.
|
1339
|
+
context[:gem_version] = '1.30.0'
|
1336
1340
|
Seahorse::Client::Request.new(handlers, context)
|
1337
1341
|
end
|
1338
1342
|
|
@@ -177,7 +177,6 @@ module Aws::WorkSpacesThinClient
|
|
177
177
|
Device.add_member(:updated_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "updatedAt"))
|
178
178
|
Device.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "arn"))
|
179
179
|
Device.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "kmsKeyArn"))
|
180
|
-
Device.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, deprecated: true, location_name: "tags", metadata: {"deprecatedMessage" => "This field will be removed in future releases. Use ListTagsForResource API instead.", "deprecatedSince" => "2025-03-25"}))
|
181
180
|
Device.struct_class = Types::Device
|
182
181
|
|
183
182
|
DeviceCreationTagsMap.key = Shapes::ShapeRef.new(shape: DeviceCreationTagKey)
|
@@ -220,7 +219,6 @@ module Aws::WorkSpacesThinClient
|
|
220
219
|
Environment.add_member(:updated_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "updatedAt"))
|
221
220
|
Environment.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "arn"))
|
222
221
|
Environment.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "kmsKeyArn"))
|
223
|
-
Environment.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, deprecated: true, location_name: "tags", metadata: {"deprecatedMessage" => "This field will be removed in future releases. Use ListTagsForResource API instead.", "deprecatedSince" => "2025-03-25"}))
|
224
222
|
Environment.add_member(:device_creation_tags, Shapes::ShapeRef.new(shape: DeviceCreationTagsMap, location_name: "deviceCreationTags"))
|
225
223
|
Environment.struct_class = Types::Environment
|
226
224
|
|
@@ -328,7 +326,6 @@ module Aws::WorkSpacesThinClient
|
|
328
326
|
SoftwareSet.add_member(:validation_status, Shapes::ShapeRef.new(shape: SoftwareSetValidationStatus, location_name: "validationStatus"))
|
329
327
|
SoftwareSet.add_member(:software, Shapes::ShapeRef.new(shape: SoftwareList, location_name: "software"))
|
330
328
|
SoftwareSet.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "arn"))
|
331
|
-
SoftwareSet.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, deprecated: true, location_name: "tags", metadata: {"deprecatedMessage" => "This field will be removed in future releases. Use ListTagsForResource API instead.", "deprecatedSince" => "2025-03-25"}))
|
332
329
|
SoftwareSet.struct_class = Types::SoftwareSet
|
333
330
|
|
334
331
|
SoftwareSetList.member = Shapes::ShapeRef.new(shape: SoftwareSetSummary)
|
@@ -360,10 +360,6 @@ module Aws::WorkSpacesThinClient
|
|
360
360
|
# used to encrypt the device.
|
361
361
|
# @return [String]
|
362
362
|
#
|
363
|
-
# @!attribute [rw] tags
|
364
|
-
# The tag keys and optional values for the resource.
|
365
|
-
# @return [Hash<String,String>]
|
366
|
-
#
|
367
363
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-thin-client-2023-08-22/Device AWS API Documentation
|
368
364
|
#
|
369
365
|
class Device < Struct.new(
|
@@ -386,9 +382,8 @@ module Aws::WorkSpacesThinClient
|
|
386
382
|
:created_at,
|
387
383
|
:updated_at,
|
388
384
|
:arn,
|
389
|
-
:kms_key_arn
|
390
|
-
:
|
391
|
-
SENSITIVE = [:name, :tags]
|
385
|
+
:kms_key_arn)
|
386
|
+
SENSITIVE = [:name]
|
392
387
|
include Aws::Structure
|
393
388
|
end
|
394
389
|
|
@@ -557,10 +552,6 @@ module Aws::WorkSpacesThinClient
|
|
557
552
|
# used to encrypt the environment.
|
558
553
|
# @return [String]
|
559
554
|
#
|
560
|
-
# @!attribute [rw] tags
|
561
|
-
# The tag keys and optional values for the resource.
|
562
|
-
# @return [Hash<String,String>]
|
563
|
-
#
|
564
555
|
# @!attribute [rw] device_creation_tags
|
565
556
|
# The tag keys and optional values for the newly created devices for
|
566
557
|
# this environment.
|
@@ -587,9 +578,8 @@ module Aws::WorkSpacesThinClient
|
|
587
578
|
:updated_at,
|
588
579
|
:arn,
|
589
580
|
:kms_key_arn,
|
590
|
-
:tags,
|
591
581
|
:device_creation_tags)
|
592
|
-
SENSITIVE = [:name, :desktop_endpoint, :activation_code, :
|
582
|
+
SENSITIVE = [:name, :desktop_endpoint, :activation_code, :device_creation_tags]
|
593
583
|
include Aws::Structure
|
594
584
|
end
|
595
585
|
|
@@ -1095,10 +1085,6 @@ module Aws::WorkSpacesThinClient
|
|
1095
1085
|
# The Amazon Resource Name (ARN) of the software set.
|
1096
1086
|
# @return [String]
|
1097
1087
|
#
|
1098
|
-
# @!attribute [rw] tags
|
1099
|
-
# The tag keys and optional values for the resource.
|
1100
|
-
# @return [Hash<String,String>]
|
1101
|
-
#
|
1102
1088
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-thin-client-2023-08-22/SoftwareSet AWS API Documentation
|
1103
1089
|
#
|
1104
1090
|
class SoftwareSet < Struct.new(
|
@@ -1108,9 +1094,8 @@ module Aws::WorkSpacesThinClient
|
|
1108
1094
|
:supported_until,
|
1109
1095
|
:validation_status,
|
1110
1096
|
:software,
|
1111
|
-
:arn
|
1112
|
-
|
1113
|
-
SENSITIVE = [:tags]
|
1097
|
+
:arn)
|
1098
|
+
SENSITIVE = []
|
1114
1099
|
include Aws::Structure
|
1115
1100
|
end
|
1116
1101
|
|
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,8 +89,7 @@ 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
|
-
|
93
|
-
SENSITIVE: [:name, :tags]
|
92
|
+
SENSITIVE: [:name]
|
94
93
|
end
|
95
94
|
|
96
95
|
class DeviceSummary
|
@@ -131,9 +130,8 @@ module Aws::WorkSpacesThinClient
|
|
131
130
|
attr_accessor updated_at: ::Time
|
132
131
|
attr_accessor arn: ::String
|
133
132
|
attr_accessor kms_key_arn: ::String
|
134
|
-
attr_accessor tags: ::Hash[::String, ::String]
|
135
133
|
attr_accessor device_creation_tags: ::Hash[::String, ::String]
|
136
|
-
SENSITIVE: [:name, :desktop_endpoint, :activation_code, :
|
134
|
+
SENSITIVE: [:name, :desktop_endpoint, :activation_code, :device_creation_tags]
|
137
135
|
end
|
138
136
|
|
139
137
|
class EnvironmentSummary
|
@@ -277,8 +275,7 @@ module Aws::WorkSpacesThinClient
|
|
277
275
|
attr_accessor validation_status: ("VALIDATED" | "NOT_VALIDATED")
|
278
276
|
attr_accessor software: ::Array[Types::Software]
|
279
277
|
attr_accessor arn: ::String
|
280
|
-
|
281
|
-
SENSITIVE: [:tags]
|
278
|
+
SENSITIVE: []
|
282
279
|
end
|
283
280
|
|
284
281
|
class SoftwareSetSummary
|
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.30.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
|