aws-sdk-workspacesthinclient 1.27.0 → 1.29.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 +1 -7
- data/lib/aws-sdk-workspacesthinclient/client_api.rb +7 -9
- data/lib/aws-sdk-workspacesthinclient/types.rb +5 -20
- data/lib/aws-sdk-workspacesthinclient.rb +1 -1
- data/sig/types.rbs +3 -6
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a746cc6980f8b3311067623b502244c2a23566c65dfc139608bf0a8e8b8b7434
|
4
|
+
data.tar.gz: d01122a7ff80c871a9681cefa3cda4c0ff575e8787c6055d764e43b720b574a0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 07da887fef38180722b75970f6f424178e741de3b7da0c42845ff1b774e62c391e97e41521e0ecc9b75177bbbf0847a8e381899e3db16015940ecb6839280026
|
7
|
+
data.tar.gz: 81785492d6eebadfa6a8064bcc2068a42efc371a32070871abac6552c846dc772ba9c839cd0da7eb1487a4d69a78f65a6ce6173d588b4471cbd456da416fe57e
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.29.0 (2025-06-25)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Remove Tags field from Get API responses
|
8
|
+
|
9
|
+
1.28.0 (2025-06-09)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Add ConflictException to UpdateEnvironment API
|
13
|
+
|
4
14
|
1.27.0 (2025-06-02)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.29.0
|
@@ -770,8 +770,6 @@ module Aws::WorkSpacesThinClient
|
|
770
770
|
# resp.device.updated_at #=> Time
|
771
771
|
# resp.device.arn #=> String
|
772
772
|
# resp.device.kms_key_arn #=> String
|
773
|
-
# resp.device.tags #=> Hash
|
774
|
-
# resp.device.tags["String"] #=> String
|
775
773
|
#
|
776
774
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-thin-client-2023-08-22/GetDevice AWS API Documentation
|
777
775
|
#
|
@@ -824,8 +822,6 @@ module Aws::WorkSpacesThinClient
|
|
824
822
|
# resp.environment.updated_at #=> Time
|
825
823
|
# resp.environment.arn #=> String
|
826
824
|
# resp.environment.kms_key_arn #=> String
|
827
|
-
# resp.environment.tags #=> Hash
|
828
|
-
# resp.environment.tags["String"] #=> String
|
829
825
|
# resp.environment.device_creation_tags #=> Hash
|
830
826
|
# resp.environment.device_creation_tags["DeviceCreationTagKey"] #=> String
|
831
827
|
#
|
@@ -864,8 +860,6 @@ module Aws::WorkSpacesThinClient
|
|
864
860
|
# resp.software_set.software[0].name #=> String
|
865
861
|
# resp.software_set.software[0].version #=> String
|
866
862
|
# resp.software_set.arn #=> String
|
867
|
-
# resp.software_set.tags #=> Hash
|
868
|
-
# resp.software_set.tags["String"] #=> String
|
869
863
|
#
|
870
864
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-thin-client-2023-08-22/GetSoftwareSet AWS API Documentation
|
871
865
|
#
|
@@ -1332,7 +1326,7 @@ module Aws::WorkSpacesThinClient
|
|
1332
1326
|
tracer: tracer
|
1333
1327
|
)
|
1334
1328
|
context[:gem_name] = 'aws-sdk-workspacesthinclient'
|
1335
|
-
context[:gem_version] = '1.
|
1329
|
+
context[:gem_version] = '1.29.0'
|
1336
1330
|
Seahorse::Client::Request.new(handlers, context)
|
1337
1331
|
end
|
1338
1332
|
|
@@ -177,7 +177,6 @@ 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"}))
|
181
180
|
Device.struct_class = Types::Device
|
182
181
|
|
183
182
|
DeviceCreationTagsMap.key = Shapes::ShapeRef.new(shape: DeviceCreationTagKey)
|
@@ -220,7 +219,6 @@ module Aws::WorkSpacesThinClient
|
|
220
219
|
Environment.add_member(:updated_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "updatedAt"))
|
221
220
|
Environment.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "arn"))
|
222
221
|
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"}))
|
224
222
|
Environment.add_member(:device_creation_tags, Shapes::ShapeRef.new(shape: DeviceCreationTagsMap, location_name: "deviceCreationTags"))
|
225
223
|
Environment.struct_class = Types::Environment
|
226
224
|
|
@@ -328,7 +326,6 @@ module Aws::WorkSpacesThinClient
|
|
328
326
|
SoftwareSet.add_member(:validation_status, Shapes::ShapeRef.new(shape: SoftwareSetValidationStatus, location_name: "validationStatus"))
|
329
327
|
SoftwareSet.add_member(:software, Shapes::ShapeRef.new(shape: SoftwareList, location_name: "software"))
|
330
328
|
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"}))
|
332
329
|
SoftwareSet.struct_class = Types::SoftwareSet
|
333
330
|
|
334
331
|
SoftwareSetList.member = Shapes::ShapeRef.new(shape: SoftwareSetSummary)
|
@@ -435,9 +432,9 @@ module Aws::WorkSpacesThinClient
|
|
435
432
|
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
436
433
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
437
434
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
435
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
438
436
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
439
437
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
440
|
-
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
441
438
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
442
439
|
end)
|
443
440
|
|
@@ -452,9 +449,9 @@ module Aws::WorkSpacesThinClient
|
|
452
449
|
o.output = Shapes::ShapeRef.new(shape: DeleteDeviceResponse)
|
453
450
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
454
451
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
452
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
455
453
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
456
454
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
457
|
-
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
458
455
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
459
456
|
end)
|
460
457
|
|
@@ -469,9 +466,9 @@ module Aws::WorkSpacesThinClient
|
|
469
466
|
o.output = Shapes::ShapeRef.new(shape: DeleteEnvironmentResponse)
|
470
467
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
471
468
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
469
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
472
470
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
473
471
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
474
|
-
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
475
472
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
476
473
|
end)
|
477
474
|
|
@@ -486,9 +483,9 @@ module Aws::WorkSpacesThinClient
|
|
486
483
|
o.output = Shapes::ShapeRef.new(shape: DeregisterDeviceResponse)
|
487
484
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
488
485
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
486
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
489
487
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
490
488
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
491
|
-
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
492
489
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
493
490
|
end)
|
494
491
|
|
@@ -630,9 +627,9 @@ module Aws::WorkSpacesThinClient
|
|
630
627
|
o.output = Shapes::ShapeRef.new(shape: TagResourceResponse)
|
631
628
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
632
629
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
630
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
633
631
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
634
632
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
635
|
-
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
636
633
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
637
634
|
end)
|
638
635
|
|
@@ -647,9 +644,9 @@ module Aws::WorkSpacesThinClient
|
|
647
644
|
o.output = Shapes::ShapeRef.new(shape: UntagResourceResponse)
|
648
645
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
649
646
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
647
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
650
648
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
651
649
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
652
|
-
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
653
650
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
654
651
|
end)
|
655
652
|
|
@@ -680,6 +677,7 @@ module Aws::WorkSpacesThinClient
|
|
680
677
|
o.output = Shapes::ShapeRef.new(shape: UpdateEnvironmentResponse)
|
681
678
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
682
679
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
680
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
683
681
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
684
682
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
685
683
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
@@ -360,10 +360,6 @@ module Aws::WorkSpacesThinClient
|
|
360
360
|
# used to encrypt the device.
|
361
361
|
# @return [String]
|
362
362
|
#
|
363
|
-
# @!attribute [rw] tags
|
364
|
-
# The tag keys and optional values for the resource.
|
365
|
-
# @return [Hash<String,String>]
|
366
|
-
#
|
367
363
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-thin-client-2023-08-22/Device AWS API Documentation
|
368
364
|
#
|
369
365
|
class Device < Struct.new(
|
@@ -386,9 +382,8 @@ module Aws::WorkSpacesThinClient
|
|
386
382
|
:created_at,
|
387
383
|
:updated_at,
|
388
384
|
:arn,
|
389
|
-
:kms_key_arn
|
390
|
-
:
|
391
|
-
SENSITIVE = [:name, :tags]
|
385
|
+
:kms_key_arn)
|
386
|
+
SENSITIVE = [:name]
|
392
387
|
include Aws::Structure
|
393
388
|
end
|
394
389
|
|
@@ -557,10 +552,6 @@ module Aws::WorkSpacesThinClient
|
|
557
552
|
# used to encrypt the environment.
|
558
553
|
# @return [String]
|
559
554
|
#
|
560
|
-
# @!attribute [rw] tags
|
561
|
-
# The tag keys and optional values for the resource.
|
562
|
-
# @return [Hash<String,String>]
|
563
|
-
#
|
564
555
|
# @!attribute [rw] device_creation_tags
|
565
556
|
# The tag keys and optional values for the newly created devices for
|
566
557
|
# this environment.
|
@@ -587,9 +578,8 @@ module Aws::WorkSpacesThinClient
|
|
587
578
|
:updated_at,
|
588
579
|
:arn,
|
589
580
|
:kms_key_arn,
|
590
|
-
:tags,
|
591
581
|
:device_creation_tags)
|
592
|
-
SENSITIVE = [:name, :desktop_endpoint, :activation_code, :
|
582
|
+
SENSITIVE = [:name, :desktop_endpoint, :activation_code, :device_creation_tags]
|
593
583
|
include Aws::Structure
|
594
584
|
end
|
595
585
|
|
@@ -1095,10 +1085,6 @@ module Aws::WorkSpacesThinClient
|
|
1095
1085
|
# The Amazon Resource Name (ARN) of the software set.
|
1096
1086
|
# @return [String]
|
1097
1087
|
#
|
1098
|
-
# @!attribute [rw] tags
|
1099
|
-
# The tag keys and optional values for the resource.
|
1100
|
-
# @return [Hash<String,String>]
|
1101
|
-
#
|
1102
1088
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-thin-client-2023-08-22/SoftwareSet AWS API Documentation
|
1103
1089
|
#
|
1104
1090
|
class SoftwareSet < Struct.new(
|
@@ -1108,9 +1094,8 @@ module Aws::WorkSpacesThinClient
|
|
1108
1094
|
:supported_until,
|
1109
1095
|
:validation_status,
|
1110
1096
|
:software,
|
1111
|
-
:arn
|
1112
|
-
|
1113
|
-
SENSITIVE = [:tags]
|
1097
|
+
:arn)
|
1098
|
+
SENSITIVE = []
|
1114
1099
|
include Aws::Structure
|
1115
1100
|
end
|
1116
1101
|
|
data/sig/types.rbs
CHANGED
@@ -89,8 +89,7 @@ module Aws::WorkSpacesThinClient
|
|
89
89
|
attr_accessor updated_at: ::Time
|
90
90
|
attr_accessor arn: ::String
|
91
91
|
attr_accessor kms_key_arn: ::String
|
92
|
-
|
93
|
-
SENSITIVE: [:name, :tags]
|
92
|
+
SENSITIVE: [:name]
|
94
93
|
end
|
95
94
|
|
96
95
|
class DeviceSummary
|
@@ -131,9 +130,8 @@ module Aws::WorkSpacesThinClient
|
|
131
130
|
attr_accessor updated_at: ::Time
|
132
131
|
attr_accessor arn: ::String
|
133
132
|
attr_accessor kms_key_arn: ::String
|
134
|
-
attr_accessor tags: ::Hash[::String, ::String]
|
135
133
|
attr_accessor device_creation_tags: ::Hash[::String, ::String]
|
136
|
-
SENSITIVE: [:name, :desktop_endpoint, :activation_code, :
|
134
|
+
SENSITIVE: [:name, :desktop_endpoint, :activation_code, :device_creation_tags]
|
137
135
|
end
|
138
136
|
|
139
137
|
class EnvironmentSummary
|
@@ -277,8 +275,7 @@ module Aws::WorkSpacesThinClient
|
|
277
275
|
attr_accessor validation_status: ("VALIDATED" | "NOT_VALIDATED")
|
278
276
|
attr_accessor software: ::Array[Types::Software]
|
279
277
|
attr_accessor arn: ::String
|
280
|
-
|
281
|
-
SENSITIVE: [:tags]
|
278
|
+
SENSITIVE: []
|
282
279
|
end
|
283
280
|
|
284
281
|
class SoftwareSetSummary
|