aws-sdk-workspacesthinclient 1.8.0 → 1.10.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 +26 -1
- data/lib/aws-sdk-workspacesthinclient/client_api.rb +10 -1
- data/lib/aws-sdk-workspacesthinclient/types.rb +24 -6
- data/lib/aws-sdk-workspacesthinclient.rb +1 -1
- data/sig/client.rbs +5 -2
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +6 -3
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6d5ecec6979bbb7382990370af44753b3a339fd4d4477d174f7bab18cf3ff7f3
|
4
|
+
data.tar.gz: ef03fba234ce01f81ae3d0ef039ead32c2e9822684b901f44134684153ad1725
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 661a1de51b0c306c5fe795eda48b9d81a2b2f6299adb3701bc9e59b2d311cac876b6d29e746fb4295f0650c6b42331b470bd807b90951a6d89bfa3f4c81e8926
|
7
|
+
data.tar.gz: 508c8eac2b8d4be3aa3e25a50cdf9924f3dc75b6aba6876372e4b9afd5eba072b1406aa3e919dba67dbb32dcee8b0f0121994e3b3ce7e063e40d35356b32a54c
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.10.0 (2024-07-02)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.9.0 (2024-06-25)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release adds the deviceCreationTags field to CreateEnvironment API input, UpdateEnvironment API input and GetEnvironment API output.
|
13
|
+
|
4
14
|
1.8.0 (2024-06-24)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.10.0
|
@@ -312,6 +312,15 @@ module Aws::WorkSpacesThinClient
|
|
312
312
|
#
|
313
313
|
# @option options [String] :session_token
|
314
314
|
#
|
315
|
+
# @option options [Array] :sigv4a_signing_region_set
|
316
|
+
# A list of regions that should be signed with SigV4a signing. When
|
317
|
+
# not passed, a default `:sigv4a_signing_region_set` is searched for
|
318
|
+
# in the following locations:
|
319
|
+
#
|
320
|
+
# * `Aws.config[:sigv4a_signing_region_set]`
|
321
|
+
# * `ENV['AWS_SIGV4A_SIGNING_REGION_SET']`
|
322
|
+
# * `~/.aws/config`
|
323
|
+
#
|
315
324
|
# @option options [Boolean] :stub_responses (false)
|
316
325
|
# Causes the client to return stubbed responses. By default
|
317
326
|
# fake responses are generated and returned. You can specify
|
@@ -472,6 +481,10 @@ module Aws::WorkSpacesThinClient
|
|
472
481
|
# A map of the key-value pairs of the tag or tags to assign to the
|
473
482
|
# resource.
|
474
483
|
#
|
484
|
+
# @option params [Hash<String,String>] :device_creation_tags
|
485
|
+
# A map of the key-value pairs of the tag or tags to assign to the newly
|
486
|
+
# created devices for this environment.
|
487
|
+
#
|
475
488
|
# @return [Types::CreateEnvironmentResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
476
489
|
#
|
477
490
|
# * {Types::CreateEnvironmentResponse#environment #environment} => Types::EnvironmentSummary
|
@@ -499,6 +512,9 @@ module Aws::WorkSpacesThinClient
|
|
499
512
|
# tags: {
|
500
513
|
# "String" => "String",
|
501
514
|
# },
|
515
|
+
# device_creation_tags: {
|
516
|
+
# "DeviceCreationTagKey" => "DeviceCreationTagValue",
|
517
|
+
# },
|
502
518
|
# })
|
503
519
|
#
|
504
520
|
# @example Response structure
|
@@ -766,6 +782,8 @@ module Aws::WorkSpacesThinClient
|
|
766
782
|
# resp.environment.kms_key_arn #=> String
|
767
783
|
# resp.environment.tags #=> Hash
|
768
784
|
# resp.environment.tags["String"] #=> String
|
785
|
+
# resp.environment.device_creation_tags #=> Hash
|
786
|
+
# resp.environment.device_creation_tags["DeviceCreationTagKey"] #=> String
|
769
787
|
#
|
770
788
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-thin-client-2023-08-22/GetEnvironment AWS API Documentation
|
771
789
|
#
|
@@ -1161,6 +1179,10 @@ module Aws::WorkSpacesThinClient
|
|
1161
1179
|
# @option params [String] :desired_software_set_id
|
1162
1180
|
# The ID of the software set to apply.
|
1163
1181
|
#
|
1182
|
+
# @option params [Hash<String,String>] :device_creation_tags
|
1183
|
+
# A map of the key-value pairs of the tag or tags to assign to the newly
|
1184
|
+
# created devices for this environment.
|
1185
|
+
#
|
1164
1186
|
# @return [Types::UpdateEnvironmentResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1165
1187
|
#
|
1166
1188
|
# * {Types::UpdateEnvironmentResponse#environment #environment} => Types::EnvironmentSummary
|
@@ -1184,6 +1206,9 @@ module Aws::WorkSpacesThinClient
|
|
1184
1206
|
# },
|
1185
1207
|
# software_set_update_mode: "USE_LATEST", # accepts USE_LATEST, USE_DESIRED
|
1186
1208
|
# desired_software_set_id: "SoftwareSetIdOrEmptyString",
|
1209
|
+
# device_creation_tags: {
|
1210
|
+
# "DeviceCreationTagKey" => "DeviceCreationTagValue",
|
1211
|
+
# },
|
1187
1212
|
# })
|
1188
1213
|
#
|
1189
1214
|
# @example Response structure
|
@@ -1258,7 +1283,7 @@ module Aws::WorkSpacesThinClient
|
|
1258
1283
|
params: params,
|
1259
1284
|
config: config)
|
1260
1285
|
context[:gem_name] = 'aws-sdk-workspacesthinclient'
|
1261
|
-
context[:gem_version] = '1.
|
1286
|
+
context[:gem_version] = '1.10.0'
|
1262
1287
|
Seahorse::Client::Request.new(handlers, context)
|
1263
1288
|
end
|
1264
1289
|
|
@@ -32,6 +32,9 @@ module Aws::WorkSpacesThinClient
|
|
32
32
|
DesktopEndpoint = Shapes::StringShape.new(name: 'DesktopEndpoint')
|
33
33
|
DesktopType = Shapes::StringShape.new(name: 'DesktopType')
|
34
34
|
Device = Shapes::StructureShape.new(name: 'Device')
|
35
|
+
DeviceCreationTagKey = Shapes::StringShape.new(name: 'DeviceCreationTagKey')
|
36
|
+
DeviceCreationTagValue = Shapes::StringShape.new(name: 'DeviceCreationTagValue')
|
37
|
+
DeviceCreationTagsMap = Shapes::MapShape.new(name: 'DeviceCreationTagsMap')
|
35
38
|
DeviceId = Shapes::StringShape.new(name: 'DeviceId')
|
36
39
|
DeviceList = Shapes::ListShape.new(name: 'DeviceList')
|
37
40
|
DeviceName = Shapes::StringShape.new(name: 'DeviceName')
|
@@ -126,6 +129,7 @@ module Aws::WorkSpacesThinClient
|
|
126
129
|
CreateEnvironmentRequest.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "kmsKeyArn"))
|
127
130
|
CreateEnvironmentRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
|
128
131
|
CreateEnvironmentRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "tags"))
|
132
|
+
CreateEnvironmentRequest.add_member(:device_creation_tags, Shapes::ShapeRef.new(shape: DeviceCreationTagsMap, location_name: "deviceCreationTags"))
|
129
133
|
CreateEnvironmentRequest.struct_class = Types::CreateEnvironmentRequest
|
130
134
|
|
131
135
|
CreateEnvironmentResponse.add_member(:environment, Shapes::ShapeRef.new(shape: EnvironmentSummary, location_name: "environment"))
|
@@ -175,6 +179,9 @@ module Aws::WorkSpacesThinClient
|
|
175
179
|
Device.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "tags"))
|
176
180
|
Device.struct_class = Types::Device
|
177
181
|
|
182
|
+
DeviceCreationTagsMap.key = Shapes::ShapeRef.new(shape: DeviceCreationTagKey)
|
183
|
+
DeviceCreationTagsMap.value = Shapes::ShapeRef.new(shape: DeviceCreationTagValue)
|
184
|
+
|
178
185
|
DeviceList.member = Shapes::ShapeRef.new(shape: DeviceSummary)
|
179
186
|
|
180
187
|
DeviceSummary.add_member(:id, Shapes::ShapeRef.new(shape: DeviceId, location_name: "id"))
|
@@ -213,6 +220,7 @@ module Aws::WorkSpacesThinClient
|
|
213
220
|
Environment.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "arn"))
|
214
221
|
Environment.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "kmsKeyArn"))
|
215
222
|
Environment.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "tags"))
|
223
|
+
Environment.add_member(:device_creation_tags, Shapes::ShapeRef.new(shape: DeviceCreationTagsMap, location_name: "deviceCreationTags"))
|
216
224
|
Environment.struct_class = Types::Environment
|
217
225
|
|
218
226
|
EnvironmentList.member = Shapes::ShapeRef.new(shape: EnvironmentSummary)
|
@@ -372,6 +380,7 @@ module Aws::WorkSpacesThinClient
|
|
372
380
|
UpdateEnvironmentRequest.add_member(:maintenance_window, Shapes::ShapeRef.new(shape: MaintenanceWindow, location_name: "maintenanceWindow"))
|
373
381
|
UpdateEnvironmentRequest.add_member(:software_set_update_mode, Shapes::ShapeRef.new(shape: SoftwareSetUpdateMode, location_name: "softwareSetUpdateMode"))
|
374
382
|
UpdateEnvironmentRequest.add_member(:desired_software_set_id, Shapes::ShapeRef.new(shape: SoftwareSetIdOrEmptyString, location_name: "desiredSoftwareSetId"))
|
383
|
+
UpdateEnvironmentRequest.add_member(:device_creation_tags, Shapes::ShapeRef.new(shape: DeviceCreationTagsMap, location_name: "deviceCreationTags"))
|
375
384
|
UpdateEnvironmentRequest.struct_class = Types::UpdateEnvironmentRequest
|
376
385
|
|
377
386
|
UpdateEnvironmentResponse.add_member(:environment, Shapes::ShapeRef.new(shape: EnvironmentSummary, location_name: "environment"))
|
@@ -403,8 +412,8 @@ module Aws::WorkSpacesThinClient
|
|
403
412
|
api.metadata = {
|
404
413
|
"apiVersion" => "2023-08-22",
|
405
414
|
"endpointPrefix" => "thinclient",
|
406
|
-
"jsonVersion" => "1.1",
|
407
415
|
"protocol" => "rest-json",
|
416
|
+
"protocols" => ["rest-json"],
|
408
417
|
"serviceFullName" => "Amazon WorkSpaces Thin Client",
|
409
418
|
"serviceId" => "WorkSpaces Thin Client",
|
410
419
|
"signatureVersion" => "v4",
|
@@ -112,6 +112,11 @@ module Aws::WorkSpacesThinClient
|
|
112
112
|
# resource.
|
113
113
|
# @return [Hash<String,String>]
|
114
114
|
#
|
115
|
+
# @!attribute [rw] device_creation_tags
|
116
|
+
# A map of the key-value pairs of the tag or tags to assign to the
|
117
|
+
# newly created devices for this environment.
|
118
|
+
# @return [Hash<String,String>]
|
119
|
+
#
|
115
120
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-thin-client-2023-08-22/CreateEnvironmentRequest AWS API Documentation
|
116
121
|
#
|
117
122
|
class CreateEnvironmentRequest < Struct.new(
|
@@ -124,8 +129,9 @@ module Aws::WorkSpacesThinClient
|
|
124
129
|
:desired_software_set_id,
|
125
130
|
:kms_key_arn,
|
126
131
|
:client_token,
|
127
|
-
:tags
|
128
|
-
|
132
|
+
:tags,
|
133
|
+
:device_creation_tags)
|
134
|
+
SENSITIVE = [:name, :desktop_endpoint, :tags, :device_creation_tags]
|
129
135
|
include Aws::Structure
|
130
136
|
end
|
131
137
|
|
@@ -555,6 +561,11 @@ module Aws::WorkSpacesThinClient
|
|
555
561
|
# The tag keys and optional values for the resource.
|
556
562
|
# @return [Hash<String,String>]
|
557
563
|
#
|
564
|
+
# @!attribute [rw] device_creation_tags
|
565
|
+
# "The tag keys and optional values for the newly created devices for
|
566
|
+
# this environment."
|
567
|
+
# @return [Hash<String,String>]
|
568
|
+
#
|
558
569
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-thin-client-2023-08-22/Environment AWS API Documentation
|
559
570
|
#
|
560
571
|
class Environment < Struct.new(
|
@@ -576,8 +587,9 @@ module Aws::WorkSpacesThinClient
|
|
576
587
|
:updated_at,
|
577
588
|
:arn,
|
578
589
|
:kms_key_arn,
|
579
|
-
:tags
|
580
|
-
|
590
|
+
:tags,
|
591
|
+
:device_creation_tags)
|
592
|
+
SENSITIVE = [:name, :desktop_endpoint, :tags, :device_creation_tags]
|
581
593
|
include Aws::Structure
|
582
594
|
end
|
583
595
|
|
@@ -1297,6 +1309,11 @@ module Aws::WorkSpacesThinClient
|
|
1297
1309
|
# The ID of the software set to apply.
|
1298
1310
|
# @return [String]
|
1299
1311
|
#
|
1312
|
+
# @!attribute [rw] device_creation_tags
|
1313
|
+
# A map of the key-value pairs of the tag or tags to assign to the
|
1314
|
+
# newly created devices for this environment.
|
1315
|
+
# @return [Hash<String,String>]
|
1316
|
+
#
|
1300
1317
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-thin-client-2023-08-22/UpdateEnvironmentRequest AWS API Documentation
|
1301
1318
|
#
|
1302
1319
|
class UpdateEnvironmentRequest < Struct.new(
|
@@ -1307,8 +1324,9 @@ module Aws::WorkSpacesThinClient
|
|
1307
1324
|
:software_set_update_schedule,
|
1308
1325
|
:maintenance_window,
|
1309
1326
|
:software_set_update_mode,
|
1310
|
-
:desired_software_set_id
|
1311
|
-
|
1327
|
+
:desired_software_set_id,
|
1328
|
+
:device_creation_tags)
|
1329
|
+
SENSITIVE = [:name, :desktop_endpoint, :device_creation_tags]
|
1312
1330
|
include Aws::Structure
|
1313
1331
|
end
|
1314
1332
|
|
data/sig/client.rbs
CHANGED
@@ -48,6 +48,7 @@ module Aws
|
|
48
48
|
?sdk_ua_app_id: String,
|
49
49
|
?secret_access_key: String,
|
50
50
|
?session_token: String,
|
51
|
+
?sigv4a_signing_region_set: Array[String],
|
51
52
|
?stub_responses: untyped,
|
52
53
|
?token_provider: untyped,
|
53
54
|
?use_dualstack_endpoint: bool,
|
@@ -95,7 +96,8 @@ module Aws
|
|
95
96
|
?desired_software_set_id: ::String,
|
96
97
|
?kms_key_arn: ::String,
|
97
98
|
?client_token: ::String,
|
98
|
-
?tags: Hash[::String, ::String]
|
99
|
+
?tags: Hash[::String, ::String],
|
100
|
+
?device_creation_tags: Hash[::String, ::String]
|
99
101
|
) -> _CreateEnvironmentResponseSuccess
|
100
102
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateEnvironmentResponseSuccess
|
101
103
|
|
@@ -260,7 +262,8 @@ module Aws
|
|
260
262
|
apply_time_of: ("UTC" | "DEVICE")?
|
261
263
|
},
|
262
264
|
?software_set_update_mode: ("USE_LATEST" | "USE_DESIRED"),
|
263
|
-
?desired_software_set_id: ::String
|
265
|
+
?desired_software_set_id: ::String,
|
266
|
+
?device_creation_tags: Hash[::String, ::String]
|
264
267
|
) -> _UpdateEnvironmentResponseSuccess
|
265
268
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateEnvironmentResponseSuccess
|
266
269
|
|
data/sig/resource.rbs
CHANGED
data/sig/types.rbs
CHANGED
@@ -31,7 +31,8 @@ module Aws::WorkSpacesThinClient
|
|
31
31
|
attr_accessor kms_key_arn: ::String
|
32
32
|
attr_accessor client_token: ::String
|
33
33
|
attr_accessor tags: ::Hash[::String, ::String]
|
34
|
-
|
34
|
+
attr_accessor device_creation_tags: ::Hash[::String, ::String]
|
35
|
+
SENSITIVE: [:name, :desktop_endpoint, :tags, :device_creation_tags]
|
35
36
|
end
|
36
37
|
|
37
38
|
class CreateEnvironmentResponse
|
@@ -131,7 +132,8 @@ module Aws::WorkSpacesThinClient
|
|
131
132
|
attr_accessor arn: ::String
|
132
133
|
attr_accessor kms_key_arn: ::String
|
133
134
|
attr_accessor tags: ::Hash[::String, ::String]
|
134
|
-
|
135
|
+
attr_accessor device_creation_tags: ::Hash[::String, ::String]
|
136
|
+
SENSITIVE: [:name, :desktop_endpoint, :tags, :device_creation_tags]
|
135
137
|
end
|
136
138
|
|
137
139
|
class EnvironmentSummary
|
@@ -337,7 +339,8 @@ module Aws::WorkSpacesThinClient
|
|
337
339
|
attr_accessor maintenance_window: Types::MaintenanceWindow
|
338
340
|
attr_accessor software_set_update_mode: ("USE_LATEST" | "USE_DESIRED")
|
339
341
|
attr_accessor desired_software_set_id: ::String
|
340
|
-
|
342
|
+
attr_accessor device_creation_tags: ::Hash[::String, ::String]
|
343
|
+
SENSITIVE: [:name, :desktop_endpoint, :device_creation_tags]
|
341
344
|
end
|
342
345
|
|
343
346
|
class UpdateEnvironmentResponse
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.10.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: 2024-
|
11
|
+
date: 2024-07-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.201.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.201.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|