aws-sdk-workspacesthinclient 1.24.0 → 1.26.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 +2 -3
- data/lib/aws-sdk-workspacesthinclient/client_api.rb +7 -7
- data/lib/aws-sdk-workspacesthinclient.rb +1 -1
- metadata +3 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cc9d1eeb16a5c83755563d119408fb4b42055b7b555ac6e70f106b0b724c1b50
|
4
|
+
data.tar.gz: 20c05ef34af24df5661cf11e5be0e7915a598512dbe00f1d154c10c562a9a3be
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fefb792585f5cb2bedcd31f63abe5e015fe6134c5439e72fe800d382d98eb6cdf6cd92770d20f4c4f9f803486066b7a7d3d3133ff78dde78f84ac7460212a388
|
7
|
+
data.tar.gz: cffcc6f8514e410932e7f5989282604b7c0417a50114739596a680fac817dcc405182ee54409e1787acfc074cb37956b8b813f6d794c7f692738ed5835b5291a
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.26.0 (2025-05-12)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.25.0 (2025-05-01)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.24.0 (2025-03-25)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.26.0
|
@@ -200,8 +200,7 @@ module Aws::WorkSpacesThinClient
|
|
200
200
|
# accepted modes and the configuration defaults that are included.
|
201
201
|
#
|
202
202
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
203
|
-
#
|
204
|
-
# to default service endpoint when available.
|
203
|
+
# When `true`, the SDK will not prepend the modeled host prefix to the endpoint.
|
205
204
|
#
|
206
205
|
# @option options [Boolean] :disable_request_compression (false)
|
207
206
|
# When set to 'true' the request body will not be compressed
|
@@ -1333,7 +1332,7 @@ module Aws::WorkSpacesThinClient
|
|
1333
1332
|
tracer: tracer
|
1334
1333
|
)
|
1335
1334
|
context[:gem_name] = 'aws-sdk-workspacesthinclient'
|
1336
|
-
context[:gem_version] = '1.
|
1335
|
+
context[:gem_version] = '1.26.0'
|
1337
1336
|
Seahorse::Client::Request.new(handlers, context)
|
1338
1337
|
end
|
1339
1338
|
|
@@ -128,7 +128,7 @@ module Aws::WorkSpacesThinClient
|
|
128
128
|
CreateEnvironmentRequest.add_member(:software_set_update_mode, Shapes::ShapeRef.new(shape: SoftwareSetUpdateMode, location_name: "softwareSetUpdateMode"))
|
129
129
|
CreateEnvironmentRequest.add_member(:desired_software_set_id, Shapes::ShapeRef.new(shape: SoftwareSetId, location_name: "desiredSoftwareSetId"))
|
130
130
|
CreateEnvironmentRequest.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "kmsKeyArn"))
|
131
|
-
CreateEnvironmentRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
|
131
|
+
CreateEnvironmentRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
|
132
132
|
CreateEnvironmentRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "tags"))
|
133
133
|
CreateEnvironmentRequest.add_member(:device_creation_tags, Shapes::ShapeRef.new(shape: DeviceCreationTagsMap, location_name: "deviceCreationTags"))
|
134
134
|
CreateEnvironmentRequest.struct_class = Types::CreateEnvironmentRequest
|
@@ -139,20 +139,20 @@ module Aws::WorkSpacesThinClient
|
|
139
139
|
DayOfWeekList.member = Shapes::ShapeRef.new(shape: DayOfWeek)
|
140
140
|
|
141
141
|
DeleteDeviceRequest.add_member(:id, Shapes::ShapeRef.new(shape: DeviceId, required: true, location: "uri", location_name: "id"))
|
142
|
-
DeleteDeviceRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location: "querystring", location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
|
142
|
+
DeleteDeviceRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location: "querystring", location_name: "clientToken", metadata: {"idempotencyToken" => true}))
|
143
143
|
DeleteDeviceRequest.struct_class = Types::DeleteDeviceRequest
|
144
144
|
|
145
145
|
DeleteDeviceResponse.struct_class = Types::DeleteDeviceResponse
|
146
146
|
|
147
147
|
DeleteEnvironmentRequest.add_member(:id, Shapes::ShapeRef.new(shape: EnvironmentId, required: true, location: "uri", location_name: "id"))
|
148
|
-
DeleteEnvironmentRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location: "querystring", location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
|
148
|
+
DeleteEnvironmentRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location: "querystring", location_name: "clientToken", metadata: {"idempotencyToken" => true}))
|
149
149
|
DeleteEnvironmentRequest.struct_class = Types::DeleteEnvironmentRequest
|
150
150
|
|
151
151
|
DeleteEnvironmentResponse.struct_class = Types::DeleteEnvironmentResponse
|
152
152
|
|
153
153
|
DeregisterDeviceRequest.add_member(:id, Shapes::ShapeRef.new(shape: DeviceId, required: true, location: "uri", location_name: "id"))
|
154
154
|
DeregisterDeviceRequest.add_member(:target_device_status, Shapes::ShapeRef.new(shape: TargetDeviceStatus, location_name: "targetDeviceStatus"))
|
155
|
-
DeregisterDeviceRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
|
155
|
+
DeregisterDeviceRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
|
156
156
|
DeregisterDeviceRequest.struct_class = Types::DeregisterDeviceRequest
|
157
157
|
|
158
158
|
DeregisterDeviceResponse.struct_class = Types::DeregisterDeviceResponse
|
@@ -177,7 +177,7 @@ 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"}))
|
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
181
|
Device.struct_class = Types::Device
|
182
182
|
|
183
183
|
DeviceCreationTagsMap.key = Shapes::ShapeRef.new(shape: DeviceCreationTagKey)
|
@@ -220,7 +220,7 @@ module Aws::WorkSpacesThinClient
|
|
220
220
|
Environment.add_member(:updated_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "updatedAt"))
|
221
221
|
Environment.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "arn"))
|
222
222
|
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"}))
|
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
224
|
Environment.add_member(:device_creation_tags, Shapes::ShapeRef.new(shape: DeviceCreationTagsMap, location_name: "deviceCreationTags"))
|
225
225
|
Environment.struct_class = Types::Environment
|
226
226
|
|
@@ -328,7 +328,7 @@ module Aws::WorkSpacesThinClient
|
|
328
328
|
SoftwareSet.add_member(:validation_status, Shapes::ShapeRef.new(shape: SoftwareSetValidationStatus, location_name: "validationStatus"))
|
329
329
|
SoftwareSet.add_member(:software, Shapes::ShapeRef.new(shape: SoftwareList, location_name: "software"))
|
330
330
|
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"}))
|
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
332
|
SoftwareSet.struct_class = Types::SoftwareSet
|
333
333
|
|
334
334
|
SoftwareSetList.member = Shapes::ShapeRef.new(shape: SoftwareSetSummary)
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
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.26.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:
|
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-workspacesthinclient
|
79
78
|
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-workspacesthinclient/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.
|
96
|
-
signing_key:
|
93
|
+
rubygems_version: 3.6.7
|
97
94
|
specification_version: 4
|
98
95
|
summary: AWS SDK for Ruby - Amazon WorkSpaces Thin Client
|
99
96
|
test_files: []
|