aws-sdk-workspacesthinclient 1.3.0 → 1.5.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: 289a9fa46164d6bfdd7627054dc4e5dbf99cc455fd76c663628ea829a1725830
4
- data.tar.gz: 5f54bd4311d36858563dd63c1f3c0496639d284a7d38d01c9dfc376ce33b5d4d
3
+ metadata.gz: 8324e7b596552960ebb4dc200848b554a57f382b2553bfdcc64febd12135cdd1
4
+ data.tar.gz: 7f093c1546b05877cfb0f529b7b4b48bdc3e093e4b0dad4514d0a5a2dd465086
5
5
  SHA512:
6
- metadata.gz: fe6f6a88a6e25077be7f697a7bb47bbc329655a231a569c65da37ba1c7d14db422c37a774653fd7544c8a3eb2819e5c6831f1586df06126bcb2b2b09940efdbe
7
- data.tar.gz: e6f8c8d2524c8e3d45a85ebe6941cc0e4506ee54ea8af5cc1109d69ac42027ddcea60fa05dd6fc561c3d464547e962f02e922ee79cd7f9749924ad33741a8b2c
6
+ metadata.gz: ce2601419d2405a07715d01859332cf079ebab73798b1b57af6190223fab024fb4d602314e1024c7f177be75f14acf9cee2d1c9f2a48cdff17c365e01759692d
7
+ data.tar.gz: 5406e7a4c7de3585796ab44c3fa9fa77a9d794e22e86d591879b1c94efba4088630bbf42f2649443f071afcf4cb38180630a9a68250d579b71eac37309d0e597
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.5.0 (2024-04-25)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.4.0 (2024-04-10)
10
+ ------------------
11
+
12
+ * Feature - Adding tags field to SoftwareSet. Removing tags fields from Summary objects. Changing the list of exceptions in tagging APIs. Fixing an issue where the SDK returns empty tags in Get APIs.
13
+
4
14
  1.3.0 (2024-03-15)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.3.0
1
+ 1.5.0
@@ -22,6 +22,7 @@ require 'aws-sdk-core/plugins/endpoint_pattern.rb'
22
22
  require 'aws-sdk-core/plugins/response_paging.rb'
23
23
  require 'aws-sdk-core/plugins/stub_responses.rb'
24
24
  require 'aws-sdk-core/plugins/idempotency_token.rb'
25
+ require 'aws-sdk-core/plugins/invocation_id.rb'
25
26
  require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
26
27
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
28
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
@@ -72,6 +73,7 @@ module Aws::WorkSpacesThinClient
72
73
  add_plugin(Aws::Plugins::ResponsePaging)
73
74
  add_plugin(Aws::Plugins::StubResponses)
74
75
  add_plugin(Aws::Plugins::IdempotencyToken)
76
+ add_plugin(Aws::Plugins::InvocationId)
75
77
  add_plugin(Aws::Plugins::JsonvalueConverter)
76
78
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
77
79
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
@@ -196,10 +198,17 @@ module Aws::WorkSpacesThinClient
196
198
  # When set to 'true' the request body will not be compressed
197
199
  # for supported operations.
198
200
  #
199
- # @option options [String] :endpoint
200
- # The client endpoint is normally constructed from the `:region`
201
- # option. You should only configure an `:endpoint` when connecting
202
- # to test or custom endpoints. This should be a valid HTTP(S) URI.
201
+ # @option options [String, URI::HTTPS, URI::HTTP] :endpoint
202
+ # Normally you should not configure the `:endpoint` option
203
+ # directly. This is normally constructed from the `:region`
204
+ # option. Configuring `:endpoint` is normally reserved for
205
+ # connecting to test or custom endpoints. The endpoint should
206
+ # be a URI formatted like:
207
+ #
208
+ # 'http://example.com'
209
+ # 'https://example.com'
210
+ # 'http://example.com:123'
211
+ #
203
212
  #
204
213
  # @option options [Integer] :endpoint_cache_max_entries (1000)
205
214
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -337,50 +346,65 @@ module Aws::WorkSpacesThinClient
337
346
  # @option options [Aws::WorkSpacesThinClient::EndpointProvider] :endpoint_provider
338
347
  # The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::WorkSpacesThinClient::EndpointParameters`
339
348
  #
340
- # @option options [URI::HTTP,String] :http_proxy A proxy to send
341
- # requests through. Formatted like 'http://proxy.com:123'.
342
- #
343
- # @option options [Float] :http_open_timeout (15) The number of
344
- # seconds to wait when opening a HTTP session before raising a
345
- # `Timeout::Error`.
346
- #
347
- # @option options [Float] :http_read_timeout (60) The default
348
- # number of seconds to wait for response data. This value can
349
- # safely be set per-request on the session.
350
- #
351
- # @option options [Float] :http_idle_timeout (5) The number of
352
- # seconds a connection is allowed to sit idle before it is
353
- # considered stale. Stale connections are closed and removed
354
- # from the pool before making a request.
355
- #
356
- # @option options [Float] :http_continue_timeout (1) The number of
357
- # seconds to wait for a 100-continue response before sending the
358
- # request body. This option has no effect unless the request has
359
- # "Expect" header set to "100-continue". Defaults to `nil` which
360
- # disables this behaviour. This value can safely be set per
361
- # request on the session.
362
- #
363
- # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
364
- # in seconds.
349
+ # @option options [Float] :http_continue_timeout (1)
350
+ # The number of seconds to wait for a 100-continue response before sending the
351
+ # request body. This option has no effect unless the request has "Expect"
352
+ # header set to "100-continue". Defaults to `nil` which disables this
353
+ # behaviour. This value can safely be set per request on the session.
354
+ #
355
+ # @option options [Float] :http_idle_timeout (5)
356
+ # The number of seconds a connection is allowed to sit idle before it
357
+ # is considered stale. Stale connections are closed and removed from the
358
+ # pool before making a request.
359
+ #
360
+ # @option options [Float] :http_open_timeout (15)
361
+ # The default number of seconds to wait for response data.
362
+ # This value can safely be set per-request on the session.
363
+ #
364
+ # @option options [URI::HTTP,String] :http_proxy
365
+ # A proxy to send requests through. Formatted like 'http://proxy.com:123'.
366
+ #
367
+ # @option options [Float] :http_read_timeout (60)
368
+ # The default number of seconds to wait for response data.
369
+ # This value can safely be set per-request on the session.
370
+ #
371
+ # @option options [Boolean] :http_wire_trace (false)
372
+ # When `true`, HTTP debug output will be sent to the `:logger`.
373
+ #
374
+ # @option options [Proc] :on_chunk_received
375
+ # When a Proc object is provided, it will be used as callback when each chunk
376
+ # of the response body is received. It provides three arguments: the chunk,
377
+ # the number of bytes received, and the total number of
378
+ # bytes in the response (or nil if the server did not send a `content-length`).
379
+ #
380
+ # @option options [Proc] :on_chunk_sent
381
+ # When a Proc object is provided, it will be used as callback when each chunk
382
+ # of the request body is sent. It provides three arguments: the chunk,
383
+ # the number of bytes read from the body, and the total number of
384
+ # bytes in the body.
385
+ #
386
+ # @option options [Boolean] :raise_response_errors (true)
387
+ # When `true`, response errors are raised.
388
+ #
389
+ # @option options [String] :ssl_ca_bundle
390
+ # Full path to the SSL certificate authority bundle file that should be used when
391
+ # verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
392
+ # `:ssl_ca_directory` the the system default will be used if available.
393
+ #
394
+ # @option options [String] :ssl_ca_directory
395
+ # Full path of the directory that contains the unbundled SSL certificate
396
+ # authority files for verifying peer certificates. If you do
397
+ # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
398
+ # default will be used if available.
365
399
  #
366
- # @option options [Boolean] :http_wire_trace (false) When `true`,
367
- # HTTP debug output will be sent to the `:logger`.
400
+ # @option options [String] :ssl_ca_store
401
+ # Sets the X509::Store to verify peer certificate.
368
402
  #
369
- # @option options [Boolean] :ssl_verify_peer (true) When `true`,
370
- # SSL peer certificates are verified when establishing a
371
- # connection.
403
+ # @option options [Float] :ssl_timeout
404
+ # Sets the SSL timeout in seconds
372
405
  #
373
- # @option options [String] :ssl_ca_bundle Full path to the SSL
374
- # certificate authority bundle file that should be used when
375
- # verifying peer certificates. If you do not pass
376
- # `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
377
- # will be used if available.
378
- #
379
- # @option options [String] :ssl_ca_directory Full path of the
380
- # directory that contains the unbundled SSL certificate
381
- # authority files for verifying peer certificates. If you do
382
- # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
383
- # system default will be used if available.
406
+ # @option options [Boolean] :ssl_verify_peer (true)
407
+ # When `true`, SSL peer certificates are verified when establishing a connection.
384
408
  #
385
409
  def initialize(*args)
386
410
  super
@@ -496,8 +520,6 @@ module Aws::WorkSpacesThinClient
496
520
  # resp.environment.created_at #=> Time
497
521
  # resp.environment.updated_at #=> Time
498
522
  # resp.environment.arn #=> String
499
- # resp.environment.tags.resource_arn #=> String
500
- # resp.environment.tags.internal_id #=> String
501
523
  #
502
524
  # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-thin-client-2023-08-22/CreateEnvironment AWS API Documentation
503
525
  #
@@ -684,8 +706,8 @@ module Aws::WorkSpacesThinClient
684
706
  # resp.device.updated_at #=> Time
685
707
  # resp.device.arn #=> String
686
708
  # resp.device.kms_key_arn #=> String
687
- # resp.device.tags.resource_arn #=> String
688
- # resp.device.tags.internal_id #=> String
709
+ # resp.device.tags #=> Hash
710
+ # resp.device.tags["String"] #=> String
689
711
  #
690
712
  # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-thin-client-2023-08-22/GetDevice AWS API Documentation
691
713
  #
@@ -738,8 +760,8 @@ module Aws::WorkSpacesThinClient
738
760
  # resp.environment.updated_at #=> Time
739
761
  # resp.environment.arn #=> String
740
762
  # resp.environment.kms_key_arn #=> String
741
- # resp.environment.tags.resource_arn #=> String
742
- # resp.environment.tags.internal_id #=> String
763
+ # resp.environment.tags #=> Hash
764
+ # resp.environment.tags["String"] #=> String
743
765
  #
744
766
  # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-thin-client-2023-08-22/GetEnvironment AWS API Documentation
745
767
  #
@@ -776,6 +798,8 @@ module Aws::WorkSpacesThinClient
776
798
  # resp.software_set.software[0].name #=> String
777
799
  # resp.software_set.software[0].version #=> String
778
800
  # resp.software_set.arn #=> String
801
+ # resp.software_set.tags #=> Hash
802
+ # resp.software_set.tags["String"] #=> String
779
803
  #
780
804
  # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-thin-client-2023-08-22/GetSoftwareSet AWS API Documentation
781
805
  #
@@ -835,8 +859,6 @@ module Aws::WorkSpacesThinClient
835
859
  # resp.devices[0].created_at #=> Time
836
860
  # resp.devices[0].updated_at #=> Time
837
861
  # resp.devices[0].arn #=> String
838
- # resp.devices[0].tags.resource_arn #=> String
839
- # resp.devices[0].tags.internal_id #=> String
840
862
  # resp.next_token #=> String
841
863
  #
842
864
  # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-thin-client-2023-08-22/ListDevices AWS API Documentation
@@ -903,8 +925,6 @@ module Aws::WorkSpacesThinClient
903
925
  # resp.environments[0].created_at #=> Time
904
926
  # resp.environments[0].updated_at #=> Time
905
927
  # resp.environments[0].arn #=> String
906
- # resp.environments[0].tags.resource_arn #=> String
907
- # resp.environments[0].tags.internal_id #=> String
908
928
  # resp.next_token #=> String
909
929
  #
910
930
  # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-thin-client-2023-08-22/ListEnvironments AWS API Documentation
@@ -1098,8 +1118,6 @@ module Aws::WorkSpacesThinClient
1098
1118
  # resp.device.created_at #=> Time
1099
1119
  # resp.device.updated_at #=> Time
1100
1120
  # resp.device.arn #=> String
1101
- # resp.device.tags.resource_arn #=> String
1102
- # resp.device.tags.internal_id #=> String
1103
1121
  #
1104
1122
  # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-thin-client-2023-08-22/UpdateDevice AWS API Documentation
1105
1123
  #
@@ -1187,8 +1205,6 @@ module Aws::WorkSpacesThinClient
1187
1205
  # resp.environment.created_at #=> Time
1188
1206
  # resp.environment.updated_at #=> Time
1189
1207
  # resp.environment.arn #=> String
1190
- # resp.environment.tags.resource_arn #=> String
1191
- # resp.environment.tags.internal_id #=> String
1192
1208
  #
1193
1209
  # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-thin-client-2023-08-22/UpdateEnvironment AWS API Documentation
1194
1210
  #
@@ -1238,7 +1254,7 @@ module Aws::WorkSpacesThinClient
1238
1254
  params: params,
1239
1255
  config: config)
1240
1256
  context[:gem_name] = 'aws-sdk-workspacesthinclient'
1241
- context[:gem_version] = '1.3.0'
1257
+ context[:gem_version] = '1.5.0'
1242
1258
  Seahorse::Client::Request.new(handlers, context)
1243
1259
  end
1244
1260
 
@@ -38,7 +38,6 @@ module Aws::WorkSpacesThinClient
38
38
  DeviceSoftwareSetComplianceStatus = Shapes::StringShape.new(name: 'DeviceSoftwareSetComplianceStatus')
39
39
  DeviceStatus = Shapes::StringShape.new(name: 'DeviceStatus')
40
40
  DeviceSummary = Shapes::StructureShape.new(name: 'DeviceSummary')
41
- EmbeddedTag = Shapes::StructureShape.new(name: 'EmbeddedTag')
42
41
  Environment = Shapes::StructureShape.new(name: 'Environment')
43
42
  EnvironmentId = Shapes::StringShape.new(name: 'EnvironmentId')
44
43
  EnvironmentList = Shapes::ListShape.new(name: 'EnvironmentList')
@@ -56,7 +55,6 @@ module Aws::WorkSpacesThinClient
56
55
  Hour = Shapes::IntegerShape.new(name: 'Hour')
57
56
  Integer = Shapes::IntegerShape.new(name: 'Integer')
58
57
  InternalServerException = Shapes::StructureShape.new(name: 'InternalServerException')
59
- InternalServiceException = Shapes::StructureShape.new(name: 'InternalServiceException')
60
58
  KmsKeyArn = Shapes::StringShape.new(name: 'KmsKeyArn')
61
59
  ListDevicesRequest = Shapes::StructureShape.new(name: 'ListDevicesRequest')
62
60
  ListDevicesResponse = Shapes::StructureShape.new(name: 'ListDevicesResponse')
@@ -174,7 +172,7 @@ module Aws::WorkSpacesThinClient
174
172
  Device.add_member(:updated_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "updatedAt"))
175
173
  Device.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "arn"))
176
174
  Device.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "kmsKeyArn"))
177
- Device.add_member(:tags, Shapes::ShapeRef.new(shape: EmbeddedTag, location_name: "tags"))
175
+ Device.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "tags"))
178
176
  Device.struct_class = Types::Device
179
177
 
180
178
  DeviceList.member = Shapes::ShapeRef.new(shape: DeviceSummary)
@@ -194,13 +192,8 @@ module Aws::WorkSpacesThinClient
194
192
  DeviceSummary.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "createdAt"))
195
193
  DeviceSummary.add_member(:updated_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "updatedAt"))
196
194
  DeviceSummary.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "arn"))
197
- DeviceSummary.add_member(:tags, Shapes::ShapeRef.new(shape: EmbeddedTag, location_name: "tags"))
198
195
  DeviceSummary.struct_class = Types::DeviceSummary
199
196
 
200
- EmbeddedTag.add_member(:resource_arn, Shapes::ShapeRef.new(shape: String, location_name: "resourceArn"))
201
- EmbeddedTag.add_member(:internal_id, Shapes::ShapeRef.new(shape: String, location_name: "internalId"))
202
- EmbeddedTag.struct_class = Types::EmbeddedTag
203
-
204
197
  Environment.add_member(:id, Shapes::ShapeRef.new(shape: EnvironmentId, location_name: "id"))
205
198
  Environment.add_member(:name, Shapes::ShapeRef.new(shape: EnvironmentName, location_name: "name"))
206
199
  Environment.add_member(:desktop_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "desktopArn"))
@@ -219,7 +212,7 @@ module Aws::WorkSpacesThinClient
219
212
  Environment.add_member(:updated_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "updatedAt"))
220
213
  Environment.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "arn"))
221
214
  Environment.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "kmsKeyArn"))
222
- Environment.add_member(:tags, Shapes::ShapeRef.new(shape: EmbeddedTag, location_name: "tags"))
215
+ Environment.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "tags"))
223
216
  Environment.struct_class = Types::Environment
224
217
 
225
218
  EnvironmentList.member = Shapes::ShapeRef.new(shape: EnvironmentSummary)
@@ -238,7 +231,6 @@ module Aws::WorkSpacesThinClient
238
231
  EnvironmentSummary.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "createdAt"))
239
232
  EnvironmentSummary.add_member(:updated_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "updatedAt"))
240
233
  EnvironmentSummary.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "arn"))
241
- EnvironmentSummary.add_member(:tags, Shapes::ShapeRef.new(shape: EmbeddedTag, location_name: "tags"))
242
234
  EnvironmentSummary.struct_class = Types::EnvironmentSummary
243
235
 
244
236
  GetDeviceRequest.add_member(:id, Shapes::ShapeRef.new(shape: DeviceId, required: true, location: "uri", location_name: "id"))
@@ -263,10 +255,6 @@ module Aws::WorkSpacesThinClient
263
255
  InternalServerException.add_member(:retry_after_seconds, Shapes::ShapeRef.new(shape: RetryAfterSeconds, location: "header", location_name: "Retry-After"))
264
256
  InternalServerException.struct_class = Types::InternalServerException
265
257
 
266
- InternalServiceException.add_member(:message, Shapes::ShapeRef.new(shape: ExceptionMessage, location_name: "message"))
267
- InternalServiceException.add_member(:retry_after_seconds, Shapes::ShapeRef.new(shape: RetryAfterSeconds, location: "header", location_name: "Retry-After"))
268
- InternalServiceException.struct_class = Types::InternalServiceException
269
-
270
258
  ListDevicesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location: "querystring", location_name: "nextToken"))
271
259
  ListDevicesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
272
260
  ListDevicesRequest.struct_class = Types::ListDevicesRequest
@@ -331,6 +319,7 @@ module Aws::WorkSpacesThinClient
331
319
  SoftwareSet.add_member(:validation_status, Shapes::ShapeRef.new(shape: SoftwareSetValidationStatus, location_name: "validationStatus"))
332
320
  SoftwareSet.add_member(:software, Shapes::ShapeRef.new(shape: SoftwareList, location_name: "software"))
333
321
  SoftwareSet.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "arn"))
322
+ SoftwareSet.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "tags"))
334
323
  SoftwareSet.struct_class = Types::SoftwareSet
335
324
 
336
325
  SoftwareSetList.member = Shapes::ShapeRef.new(shape: SoftwareSetSummary)
@@ -613,8 +602,10 @@ module Aws::WorkSpacesThinClient
613
602
  o.input = Shapes::ShapeRef.new(shape: ListTagsForResourceRequest)
614
603
  o.output = Shapes::ShapeRef.new(shape: ListTagsForResourceResponse)
615
604
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
605
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
616
606
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
617
- o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
607
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
608
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
618
609
  end)
619
610
 
620
611
  api.add_operation(:tag_resource, Seahorse::Model::Operation.new.tap do |o|
@@ -627,8 +618,11 @@ module Aws::WorkSpacesThinClient
627
618
  o.input = Shapes::ShapeRef.new(shape: TagResourceRequest)
628
619
  o.output = Shapes::ShapeRef.new(shape: TagResourceResponse)
629
620
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
621
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
630
622
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
631
- o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
623
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
624
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
625
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
632
626
  end)
633
627
 
634
628
  api.add_operation(:untag_resource, Seahorse::Model::Operation.new.tap do |o|
@@ -641,8 +635,11 @@ module Aws::WorkSpacesThinClient
641
635
  o.input = Shapes::ShapeRef.new(shape: UntagResourceRequest)
642
636
  o.output = Shapes::ShapeRef.new(shape: UntagResourceResponse)
643
637
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
638
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
644
639
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
645
- o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
640
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
641
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
642
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
646
643
  end)
647
644
 
648
645
  api.add_operation(:update_device, Seahorse::Model::Operation.new.tap do |o|
@@ -30,7 +30,6 @@ module Aws::WorkSpacesThinClient
30
30
  # * {AccessDeniedException}
31
31
  # * {ConflictException}
32
32
  # * {InternalServerException}
33
- # * {InternalServiceException}
34
33
  # * {ResourceNotFoundException}
35
34
  # * {ServiceQuotaExceededException}
36
35
  # * {ThrottlingException}
@@ -102,26 +101,6 @@ module Aws::WorkSpacesThinClient
102
101
  end
103
102
  end
104
103
 
105
- class InternalServiceException < ServiceError
106
-
107
- # @param [Seahorse::Client::RequestContext] context
108
- # @param [String] message
109
- # @param [Aws::WorkSpacesThinClient::Types::InternalServiceException] data
110
- def initialize(context, message, data = Aws::EmptyStructure.new)
111
- super(context, message, data)
112
- end
113
-
114
- # @return [String]
115
- def message
116
- @message || @data[:message]
117
- end
118
-
119
- # @return [String]
120
- def retry_after_seconds
121
- @data[:retry_after_seconds]
122
- end
123
- end
124
-
125
104
  class ResourceNotFoundException < ServiceError
126
105
 
127
106
  # @param [Seahorse::Client::RequestContext] context
@@ -356,7 +356,7 @@ module Aws::WorkSpacesThinClient
356
356
  #
357
357
  # @!attribute [rw] tags
358
358
  # The tag keys and optional values for the resource.
359
- # @return [Types::EmbeddedTag]
359
+ # @return [Hash<String,String>]
360
360
  #
361
361
  # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-thin-client-2023-08-22/Device AWS API Documentation
362
362
  #
@@ -450,10 +450,6 @@ module Aws::WorkSpacesThinClient
450
450
  # The Amazon Resource Name (ARN) of the device.
451
451
  # @return [String]
452
452
  #
453
- # @!attribute [rw] tags
454
- # The tag keys and optional values for the resource.
455
- # @return [Types::EmbeddedTag]
456
- #
457
453
  # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-thin-client-2023-08-22/DeviceSummary AWS API Documentation
458
454
  #
459
455
  class DeviceSummary < Struct.new(
@@ -471,28 +467,8 @@ module Aws::WorkSpacesThinClient
471
467
  :last_posture_at,
472
468
  :created_at,
473
469
  :updated_at,
474
- :arn,
475
- :tags)
476
- SENSITIVE = [:name, :tags]
477
- include Aws::Structure
478
- end
479
-
480
- # The resource and internal ID of a resource to tag.
481
- #
482
- # @!attribute [rw] resource_arn
483
- # The Amazon Resource Name (ARN) of a resource to tag.
484
- # @return [String]
485
- #
486
- # @!attribute [rw] internal_id
487
- # The internal ID of a resource to tag.
488
- # @return [String]
489
- #
490
- # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-thin-client-2023-08-22/EmbeddedTag AWS API Documentation
491
- #
492
- class EmbeddedTag < Struct.new(
493
- :resource_arn,
494
- :internal_id)
495
- SENSITIVE = []
470
+ :arn)
471
+ SENSITIVE = [:name]
496
472
  include Aws::Structure
497
473
  end
498
474
 
@@ -577,7 +553,7 @@ module Aws::WorkSpacesThinClient
577
553
  #
578
554
  # @!attribute [rw] tags
579
555
  # The tag keys and optional values for the resource.
580
- # @return [Types::EmbeddedTag]
556
+ # @return [Hash<String,String>]
581
557
  #
582
558
  # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-thin-client-2023-08-22/Environment AWS API Documentation
583
559
  #
@@ -666,10 +642,6 @@ module Aws::WorkSpacesThinClient
666
642
  # The Amazon Resource Name (ARN) of the environment.
667
643
  # @return [String]
668
644
  #
669
- # @!attribute [rw] tags
670
- # The tag keys and optional values for the resource.
671
- # @return [Types::EmbeddedTag]
672
- #
673
645
  # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-thin-client-2023-08-22/EnvironmentSummary AWS API Documentation
674
646
  #
675
647
  class EnvironmentSummary < Struct.new(
@@ -686,9 +658,8 @@ module Aws::WorkSpacesThinClient
686
658
  :pending_software_set_id,
687
659
  :created_at,
688
660
  :updated_at,
689
- :arn,
690
- :tags)
691
- SENSITIVE = [:name, :desktop_endpoint, :tags]
661
+ :arn)
662
+ SENSITIVE = [:name, :desktop_endpoint]
692
663
  include Aws::Structure
693
664
  end
694
665
 
@@ -783,25 +754,6 @@ module Aws::WorkSpacesThinClient
783
754
  include Aws::Structure
784
755
  end
785
756
 
786
- # Request processing failed due to some unknown error, exception, or
787
- # failure.
788
- #
789
- # @!attribute [rw] message
790
- # @return [String]
791
- #
792
- # @!attribute [rw] retry_after_seconds
793
- # The number of seconds to wait before retrying the next request.
794
- # @return [Integer]
795
- #
796
- # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-thin-client-2023-08-22/InternalServiceException AWS API Documentation
797
- #
798
- class InternalServiceException < Struct.new(
799
- :message,
800
- :retry_after_seconds)
801
- SENSITIVE = []
802
- include Aws::Structure
803
- end
804
-
805
757
  # @!attribute [rw] next_token
806
758
  # If `nextToken` is returned, there are more results available. The
807
759
  # value of `nextToken` is a unique pagination token for each page.
@@ -1131,6 +1083,10 @@ module Aws::WorkSpacesThinClient
1131
1083
  # The Amazon Resource Name (ARN) of the software set.
1132
1084
  # @return [String]
1133
1085
  #
1086
+ # @!attribute [rw] tags
1087
+ # The tag keys and optional values for the resource.
1088
+ # @return [Hash<String,String>]
1089
+ #
1134
1090
  # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-thin-client-2023-08-22/SoftwareSet AWS API Documentation
1135
1091
  #
1136
1092
  class SoftwareSet < Struct.new(
@@ -1140,8 +1096,9 @@ module Aws::WorkSpacesThinClient
1140
1096
  :supported_until,
1141
1097
  :validation_status,
1142
1098
  :software,
1143
- :arn)
1144
- SENSITIVE = []
1099
+ :arn,
1100
+ :tags)
1101
+ SENSITIVE = [:tags]
1145
1102
  include Aws::Structure
1146
1103
  end
1147
1104
 
@@ -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.3.0'
55
+ GEM_VERSION = '1.5.0'
56
56
 
57
57
  end
data/sig/errors.rbs CHANGED
@@ -23,10 +23,6 @@ module Aws
23
23
  def message: () -> ::String
24
24
  def retry_after_seconds: () -> ::String
25
25
  end
26
- class InternalServiceException < ::Aws::Errors::ServiceError
27
- def message: () -> ::String
28
- def retry_after_seconds: () -> ::String
29
- end
30
26
  class ResourceNotFoundException < ::Aws::Errors::ServiceError
31
27
  def message: () -> ::String
32
28
  def resource_id: () -> ::String
data/sig/types.rbs CHANGED
@@ -88,7 +88,7 @@ module Aws::WorkSpacesThinClient
88
88
  attr_accessor updated_at: ::Time
89
89
  attr_accessor arn: ::String
90
90
  attr_accessor kms_key_arn: ::String
91
- attr_accessor tags: Types::EmbeddedTag
91
+ attr_accessor tags: ::Hash[::String, ::String]
92
92
  SENSITIVE: [:name, :tags]
93
93
  end
94
94
 
@@ -108,14 +108,7 @@ module Aws::WorkSpacesThinClient
108
108
  attr_accessor created_at: ::Time
109
109
  attr_accessor updated_at: ::Time
110
110
  attr_accessor arn: ::String
111
- attr_accessor tags: Types::EmbeddedTag
112
- SENSITIVE: [:name, :tags]
113
- end
114
-
115
- class EmbeddedTag
116
- attr_accessor resource_arn: ::String
117
- attr_accessor internal_id: ::String
118
- SENSITIVE: []
111
+ SENSITIVE: [:name]
119
112
  end
120
113
 
121
114
  class Environment
@@ -137,7 +130,7 @@ module Aws::WorkSpacesThinClient
137
130
  attr_accessor updated_at: ::Time
138
131
  attr_accessor arn: ::String
139
132
  attr_accessor kms_key_arn: ::String
140
- attr_accessor tags: Types::EmbeddedTag
133
+ attr_accessor tags: ::Hash[::String, ::String]
141
134
  SENSITIVE: [:name, :desktop_endpoint, :tags]
142
135
  end
143
136
 
@@ -156,8 +149,7 @@ module Aws::WorkSpacesThinClient
156
149
  attr_accessor created_at: ::Time
157
150
  attr_accessor updated_at: ::Time
158
151
  attr_accessor arn: ::String
159
- attr_accessor tags: Types::EmbeddedTag
160
- SENSITIVE: [:name, :desktop_endpoint, :tags]
152
+ SENSITIVE: [:name, :desktop_endpoint]
161
153
  end
162
154
 
163
155
  class GetDeviceRequest
@@ -196,12 +188,6 @@ module Aws::WorkSpacesThinClient
196
188
  SENSITIVE: []
197
189
  end
198
190
 
199
- class InternalServiceException
200
- attr_accessor message: ::String
201
- attr_accessor retry_after_seconds: ::Integer
202
- SENSITIVE: []
203
- end
204
-
205
191
  class ListDevicesRequest
206
192
  attr_accessor next_token: ::String
207
193
  attr_accessor max_results: ::Integer
@@ -289,7 +275,8 @@ module Aws::WorkSpacesThinClient
289
275
  attr_accessor validation_status: ("VALIDATED" | "NOT_VALIDATED")
290
276
  attr_accessor software: ::Array[Types::Software]
291
277
  attr_accessor arn: ::String
292
- SENSITIVE: []
278
+ attr_accessor tags: ::Hash[::String, ::String]
279
+ SENSITIVE: [:tags]
293
280
  end
294
281
 
295
282
  class SoftwareSetSummary
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.3.0
4
+ version: 1.5.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-03-15 00:00:00.000000000 Z
11
+ date: 2024-04-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.191.0
22
+ version: 3.193.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.191.0
32
+ version: 3.193.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement