aws-sdk-workspacesthinclient 1.2.0 → 1.3.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 +1 -6
- data/lib/aws-sdk-workspacesthinclient/client_api.rb +0 -1
- data/lib/aws-sdk-workspacesthinclient/types.rb +1 -7
- data/lib/aws-sdk-workspacesthinclient.rb +1 -1
- data/sig/client.rbs +1 -2
- data/sig/types.rbs +0 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 289a9fa46164d6bfdd7627054dc4e5dbf99cc455fd76c663628ea829a1725830
|
4
|
+
data.tar.gz: 5f54bd4311d36858563dd63c1f3c0496639d284a7d38d01c9dfc376ce33b5d4d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fe6f6a88a6e25077be7f697a7bb47bbc329655a231a569c65da37ba1c7d14db422c37a774653fd7544c8a3eb2819e5c6831f1586df06126bcb2b2b09940efdbe
|
7
|
+
data.tar.gz: e6f8c8d2524c8e3d45a85ebe6941cc0e4506ee54ea8af5cc1109d69ac42027ddcea60fa05dd6fc561c3d464547e962f02e922ee79cd7f9749924ad33741a8b2c
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.3.0
|
@@ -1068,10 +1068,6 @@ module Aws::WorkSpacesThinClient
|
|
1068
1068
|
# An option to define if software updates should be applied within a
|
1069
1069
|
# maintenance window.
|
1070
1070
|
#
|
1071
|
-
# @option params [String] :kms_key_arn
|
1072
|
-
# The Amazon Resource Name (ARN) of the Key Management Service key to
|
1073
|
-
# use for the update.
|
1074
|
-
#
|
1075
1071
|
# @return [Types::UpdateDeviceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1076
1072
|
#
|
1077
1073
|
# * {Types::UpdateDeviceResponse#device #device} => Types::DeviceSummary
|
@@ -1083,7 +1079,6 @@ module Aws::WorkSpacesThinClient
|
|
1083
1079
|
# name: "DeviceName",
|
1084
1080
|
# desired_software_set_id: "SoftwareSetId",
|
1085
1081
|
# software_set_update_schedule: "USE_MAINTENANCE_WINDOW", # accepts USE_MAINTENANCE_WINDOW, APPLY_IMMEDIATELY
|
1086
|
-
# kms_key_arn: "KmsKeyArn",
|
1087
1082
|
# })
|
1088
1083
|
#
|
1089
1084
|
# @example Response structure
|
@@ -1243,7 +1238,7 @@ module Aws::WorkSpacesThinClient
|
|
1243
1238
|
params: params,
|
1244
1239
|
config: config)
|
1245
1240
|
context[:gem_name] = 'aws-sdk-workspacesthinclient'
|
1246
|
-
context[:gem_version] = '1.
|
1241
|
+
context[:gem_version] = '1.3.0'
|
1247
1242
|
Seahorse::Client::Request.new(handlers, context)
|
1248
1243
|
end
|
1249
1244
|
|
@@ -370,7 +370,6 @@ module Aws::WorkSpacesThinClient
|
|
370
370
|
UpdateDeviceRequest.add_member(:name, Shapes::ShapeRef.new(shape: DeviceName, location_name: "name"))
|
371
371
|
UpdateDeviceRequest.add_member(:desired_software_set_id, Shapes::ShapeRef.new(shape: SoftwareSetId, location_name: "desiredSoftwareSetId"))
|
372
372
|
UpdateDeviceRequest.add_member(:software_set_update_schedule, Shapes::ShapeRef.new(shape: SoftwareSetUpdateSchedule, location_name: "softwareSetUpdateSchedule"))
|
373
|
-
UpdateDeviceRequest.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "kmsKeyArn"))
|
374
373
|
UpdateDeviceRequest.struct_class = Types::UpdateDeviceRequest
|
375
374
|
|
376
375
|
UpdateDeviceResponse.add_member(:device, Shapes::ShapeRef.new(shape: DeviceSummary, location_name: "device"))
|
@@ -1282,19 +1282,13 @@ module Aws::WorkSpacesThinClient
|
|
1282
1282
|
# maintenance window.
|
1283
1283
|
# @return [String]
|
1284
1284
|
#
|
1285
|
-
# @!attribute [rw] kms_key_arn
|
1286
|
-
# The Amazon Resource Name (ARN) of the Key Management Service key to
|
1287
|
-
# use for the update.
|
1288
|
-
# @return [String]
|
1289
|
-
#
|
1290
1285
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-thin-client-2023-08-22/UpdateDeviceRequest AWS API Documentation
|
1291
1286
|
#
|
1292
1287
|
class UpdateDeviceRequest < Struct.new(
|
1293
1288
|
:id,
|
1294
1289
|
:name,
|
1295
1290
|
:desired_software_set_id,
|
1296
|
-
:software_set_update_schedule
|
1297
|
-
:kms_key_arn)
|
1291
|
+
:software_set_update_schedule)
|
1298
1292
|
SENSITIVE = [:name]
|
1299
1293
|
include Aws::Structure
|
1300
1294
|
end
|
data/sig/client.rbs
CHANGED
@@ -235,8 +235,7 @@ module Aws
|
|
235
235
|
id: ::String,
|
236
236
|
?name: ::String,
|
237
237
|
?desired_software_set_id: ::String,
|
238
|
-
?software_set_update_schedule: ("USE_MAINTENANCE_WINDOW" | "APPLY_IMMEDIATELY")
|
239
|
-
?kms_key_arn: ::String
|
238
|
+
?software_set_update_schedule: ("USE_MAINTENANCE_WINDOW" | "APPLY_IMMEDIATELY")
|
240
239
|
) -> _UpdateDeviceResponseSuccess
|
241
240
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDeviceResponseSuccess
|
242
241
|
|
data/sig/types.rbs
CHANGED
@@ -333,7 +333,6 @@ module Aws::WorkSpacesThinClient
|
|
333
333
|
attr_accessor name: ::String
|
334
334
|
attr_accessor desired_software_set_id: ::String
|
335
335
|
attr_accessor software_set_update_schedule: ("USE_MAINTENANCE_WINDOW" | "APPLY_IMMEDIATELY")
|
336
|
-
attr_accessor kms_key_arn: ::String
|
337
336
|
SENSITIVE: [:name]
|
338
337
|
end
|
339
338
|
|
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.3.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-03-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|