aws-sdk-workspacesthinclient 1.8.0 → 1.9.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-workspacesthinclient/client.rb +17 -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 +4 -2
- 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: b4dded183184230bb8ba8f4abc3af4e113679fb2ad78eb8322412d4af5d2ccc5
|
4
|
+
data.tar.gz: 1757e5849f21d7b2cf28d9f71e197f5a2eae3a86e7c64ee5838b50a1e9f7a1b4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8dbec5c32b9c384ce801d3bd3c1926a95c085707f87c719b513dac9d50cdca92f115060d87d66739e837dbcdadc5f1ebe4044de24226c34bba2216af484f82e0
|
7
|
+
data.tar.gz: 5ffa8341c0a535b5116af86280183bbd28f6d6576c00c753662844eff754d616e8d7b501b95fb2592f4da33447c1520dbce80565f147bf9989f2647bc09a0b08
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.9.0 (2024-06-25)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds the deviceCreationTags field to CreateEnvironment API input, UpdateEnvironment API input and GetEnvironment API output.
|
8
|
+
|
4
9
|
1.8.0 (2024-06-24)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.9.0
|
@@ -472,6 +472,10 @@ module Aws::WorkSpacesThinClient
|
|
472
472
|
# A map of the key-value pairs of the tag or tags to assign to the
|
473
473
|
# resource.
|
474
474
|
#
|
475
|
+
# @option params [Hash<String,String>] :device_creation_tags
|
476
|
+
# A map of the key-value pairs of the tag or tags to assign to the newly
|
477
|
+
# created devices for this environment.
|
478
|
+
#
|
475
479
|
# @return [Types::CreateEnvironmentResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
476
480
|
#
|
477
481
|
# * {Types::CreateEnvironmentResponse#environment #environment} => Types::EnvironmentSummary
|
@@ -499,6 +503,9 @@ module Aws::WorkSpacesThinClient
|
|
499
503
|
# tags: {
|
500
504
|
# "String" => "String",
|
501
505
|
# },
|
506
|
+
# device_creation_tags: {
|
507
|
+
# "DeviceCreationTagKey" => "DeviceCreationTagValue",
|
508
|
+
# },
|
502
509
|
# })
|
503
510
|
#
|
504
511
|
# @example Response structure
|
@@ -766,6 +773,8 @@ module Aws::WorkSpacesThinClient
|
|
766
773
|
# resp.environment.kms_key_arn #=> String
|
767
774
|
# resp.environment.tags #=> Hash
|
768
775
|
# resp.environment.tags["String"] #=> String
|
776
|
+
# resp.environment.device_creation_tags #=> Hash
|
777
|
+
# resp.environment.device_creation_tags["DeviceCreationTagKey"] #=> String
|
769
778
|
#
|
770
779
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-thin-client-2023-08-22/GetEnvironment AWS API Documentation
|
771
780
|
#
|
@@ -1161,6 +1170,10 @@ module Aws::WorkSpacesThinClient
|
|
1161
1170
|
# @option params [String] :desired_software_set_id
|
1162
1171
|
# The ID of the software set to apply.
|
1163
1172
|
#
|
1173
|
+
# @option params [Hash<String,String>] :device_creation_tags
|
1174
|
+
# A map of the key-value pairs of the tag or tags to assign to the newly
|
1175
|
+
# created devices for this environment.
|
1176
|
+
#
|
1164
1177
|
# @return [Types::UpdateEnvironmentResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1165
1178
|
#
|
1166
1179
|
# * {Types::UpdateEnvironmentResponse#environment #environment} => Types::EnvironmentSummary
|
@@ -1184,6 +1197,9 @@ module Aws::WorkSpacesThinClient
|
|
1184
1197
|
# },
|
1185
1198
|
# software_set_update_mode: "USE_LATEST", # accepts USE_LATEST, USE_DESIRED
|
1186
1199
|
# desired_software_set_id: "SoftwareSetIdOrEmptyString",
|
1200
|
+
# device_creation_tags: {
|
1201
|
+
# "DeviceCreationTagKey" => "DeviceCreationTagValue",
|
1202
|
+
# },
|
1187
1203
|
# })
|
1188
1204
|
#
|
1189
1205
|
# @example Response structure
|
@@ -1258,7 +1274,7 @@ module Aws::WorkSpacesThinClient
|
|
1258
1274
|
params: params,
|
1259
1275
|
config: config)
|
1260
1276
|
context[:gem_name] = 'aws-sdk-workspacesthinclient'
|
1261
|
-
context[:gem_version] = '1.
|
1277
|
+
context[:gem_version] = '1.9.0'
|
1262
1278
|
Seahorse::Client::Request.new(handlers, context)
|
1263
1279
|
end
|
1264
1280
|
|
@@ -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
@@ -95,7 +95,8 @@ module Aws
|
|
95
95
|
?desired_software_set_id: ::String,
|
96
96
|
?kms_key_arn: ::String,
|
97
97
|
?client_token: ::String,
|
98
|
-
?tags: Hash[::String, ::String]
|
98
|
+
?tags: Hash[::String, ::String],
|
99
|
+
?device_creation_tags: Hash[::String, ::String]
|
99
100
|
) -> _CreateEnvironmentResponseSuccess
|
100
101
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateEnvironmentResponseSuccess
|
101
102
|
|
@@ -260,7 +261,8 @@ module Aws
|
|
260
261
|
apply_time_of: ("UTC" | "DEVICE")?
|
261
262
|
},
|
262
263
|
?software_set_update_mode: ("USE_LATEST" | "USE_DESIRED"),
|
263
|
-
?desired_software_set_id: ::String
|
264
|
+
?desired_software_set_id: ::String,
|
265
|
+
?device_creation_tags: Hash[::String, ::String]
|
264
266
|
) -> _UpdateEnvironmentResponseSuccess
|
265
267
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateEnvironmentResponseSuccess
|
266
268
|
|
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.9.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-06-
|
11
|
+
date: 2024-06-25 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.199.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.199.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|