aws-sdk-workspacesthinclient 1.7.0 → 1.9.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 69a123f78c670907b9b5c3f2ebad202fb080f97532fa199aa0766dcbb4f539a6
4
- data.tar.gz: ea3ef794b01972bd1b1ed10bc6c6d128f92a4d69757fc2c3029b79a8cb850751
3
+ metadata.gz: b4dded183184230bb8ba8f4abc3af4e113679fb2ad78eb8322412d4af5d2ccc5
4
+ data.tar.gz: 1757e5849f21d7b2cf28d9f71e197f5a2eae3a86e7c64ee5838b50a1e9f7a1b4
5
5
  SHA512:
6
- metadata.gz: 0de0e5de64f8d5b0745022eb55cd91aab02f62cb152027c23a9f98193cb92140fc7b6a5fb5d12b847238160ebbf2ac7e3282dc93d94aeb01ffb312f2efb72dc8
7
- data.tar.gz: 54091034c140c750cea6683c849cfabdc394f23c6d2070efc580599d35cd3b6be89a049ec0a04fcfe78dc10469b0b3319ac2c129cf003a9ccca67e543ee375f3
6
+ metadata.gz: 8dbec5c32b9c384ce801d3bd3c1926a95c085707f87c719b513dac9d50cdca92f115060d87d66739e837dbcdadc5f1ebe4044de24226c34bba2216af484f82e0
7
+ data.tar.gz: 5ffa8341c0a535b5116af86280183bbd28f6d6576c00c753662844eff754d616e8d7b501b95fb2592f4da33447c1520dbce80565f147bf9989f2647bc09a0b08
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
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
+
9
+ 1.8.0 (2024-06-24)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.7.0 (2024-06-05)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.7.0
1
+ 1.9.0
@@ -89,6 +89,11 @@ module Aws::WorkSpacesThinClient
89
89
 
90
90
  # @overload initialize(options)
91
91
  # @param [Hash] options
92
+ #
93
+ # @option options [Array<Seahorse::Client::Plugin>] :plugins ([]])
94
+ # A list of plugins to apply to the client. Each plugin is either a
95
+ # class name or an instance of a plugin class.
96
+ #
92
97
  # @option options [required, Aws::CredentialProvider] :credentials
93
98
  # Your AWS credentials. This can be an instance of any one of the
94
99
  # following classes:
@@ -209,7 +214,6 @@ module Aws::WorkSpacesThinClient
209
214
  # 'https://example.com'
210
215
  # 'http://example.com:123'
211
216
  #
212
- #
213
217
  # @option options [Integer] :endpoint_cache_max_entries (1000)
214
218
  # Used for the maximum size limit of the LRU cache storing endpoints data
215
219
  # for endpoint discovery enabled operations. Defaults to 1000.
@@ -298,7 +302,6 @@ module Aws::WorkSpacesThinClient
298
302
  # throttling. This is a provisional mode that may change behavior
299
303
  # in the future.
300
304
  #
301
- #
302
305
  # @option options [String] :sdk_ua_app_id
303
306
  # A unique and opaque application ID that is appended to the
304
307
  # User-Agent header as app/sdk_ua_app_id. It should have a
@@ -469,6 +472,10 @@ module Aws::WorkSpacesThinClient
469
472
  # A map of the key-value pairs of the tag or tags to assign to the
470
473
  # resource.
471
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
+ #
472
479
  # @return [Types::CreateEnvironmentResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
473
480
  #
474
481
  # * {Types::CreateEnvironmentResponse#environment #environment} => Types::EnvironmentSummary
@@ -496,6 +503,9 @@ module Aws::WorkSpacesThinClient
496
503
  # tags: {
497
504
  # "String" => "String",
498
505
  # },
506
+ # device_creation_tags: {
507
+ # "DeviceCreationTagKey" => "DeviceCreationTagValue",
508
+ # },
499
509
  # })
500
510
  #
501
511
  # @example Response structure
@@ -763,6 +773,8 @@ module Aws::WorkSpacesThinClient
763
773
  # resp.environment.kms_key_arn #=> String
764
774
  # resp.environment.tags #=> Hash
765
775
  # resp.environment.tags["String"] #=> String
776
+ # resp.environment.device_creation_tags #=> Hash
777
+ # resp.environment.device_creation_tags["DeviceCreationTagKey"] #=> String
766
778
  #
767
779
  # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-thin-client-2023-08-22/GetEnvironment AWS API Documentation
768
780
  #
@@ -1158,6 +1170,10 @@ module Aws::WorkSpacesThinClient
1158
1170
  # @option params [String] :desired_software_set_id
1159
1171
  # The ID of the software set to apply.
1160
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
+ #
1161
1177
  # @return [Types::UpdateEnvironmentResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1162
1178
  #
1163
1179
  # * {Types::UpdateEnvironmentResponse#environment #environment} => Types::EnvironmentSummary
@@ -1181,6 +1197,9 @@ module Aws::WorkSpacesThinClient
1181
1197
  # },
1182
1198
  # software_set_update_mode: "USE_LATEST", # accepts USE_LATEST, USE_DESIRED
1183
1199
  # desired_software_set_id: "SoftwareSetIdOrEmptyString",
1200
+ # device_creation_tags: {
1201
+ # "DeviceCreationTagKey" => "DeviceCreationTagValue",
1202
+ # },
1184
1203
  # })
1185
1204
  #
1186
1205
  # @example Response structure
@@ -1255,7 +1274,7 @@ module Aws::WorkSpacesThinClient
1255
1274
  params: params,
1256
1275
  config: config)
1257
1276
  context[:gem_name] = 'aws-sdk-workspacesthinclient'
1258
- context[:gem_version] = '1.7.0'
1277
+ context[:gem_version] = '1.9.0'
1259
1278
  Seahorse::Client::Request.new(handlers, context)
1260
1279
  end
1261
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
- SENSITIVE = [:name, :desktop_endpoint, :tags]
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
- SENSITIVE = [:name, :desktop_endpoint, :tags]
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
- SENSITIVE = [:name, :desktop_endpoint]
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
 
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-workspacesthinclient/customizations'
52
52
  # @!group service
53
53
  module Aws::WorkSpacesThinClient
54
54
 
55
- GEM_VERSION = '1.7.0'
55
+ GEM_VERSION = '1.9.0'
56
56
 
57
57
  end
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
- SENSITIVE: [:name, :desktop_endpoint, :tags]
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
- SENSITIVE: [:name, :desktop_endpoint, :tags]
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
- SENSITIVE: [:name, :desktop_endpoint]
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.7.0
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-05 00:00:00.000000000 Z
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.197.0
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.197.0
32
+ version: 3.199.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement