aws-sdk-iottwinmaker 1.22.0 → 1.24.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-iottwinmaker/client.rb +8 -7
- data/lib/aws-sdk-iottwinmaker/client_api.rb +1 -1
- data/lib/aws-sdk-iottwinmaker.rb +1 -1
- data/sig/client.rbs +4 -4
- data/sig/types.rbs +1 -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: 30e6ed3e8a548ccd748f0998ac7abe6c30e1eb65afee7f75f5bfe47d45a4fcb1
|
|
4
|
+
data.tar.gz: 02d2e2292fee3324023f718d8c379832e9255b46729a4158e58b4e8a912b1110
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8a185a0c720ec7072c02de9842f2186746b2ec616d4a83ec0f68c9ede19a7ac360742d79b0a25f8f41f54efc6ea3d9c6e999c80c20e0ad8f51ba66b635dbc5dd
|
|
7
|
+
data.tar.gz: 5676140fce6edbc38d6378b2f0aed8e4d424116842d6717ede27c61752931ea1c02d5e268d55701007db4999f08d8e58644c90f78445f3f714810798ae3cbb78
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.24.0 (2024-06-03)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Support RESET_VALUE UpdateType for PropertyUpdates to reset property value to default or null
|
|
8
|
+
|
|
9
|
+
1.23.0 (2024-05-13)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
13
|
+
|
|
4
14
|
1.22.0 (2024-04-25)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.24.0
|
|
@@ -301,8 +301,9 @@ module Aws::IoTTwinMaker
|
|
|
301
301
|
#
|
|
302
302
|
# @option options [String] :sdk_ua_app_id
|
|
303
303
|
# A unique and opaque application ID that is appended to the
|
|
304
|
-
# User-Agent header as app
|
|
305
|
-
# maximum length of 50.
|
|
304
|
+
# User-Agent header as app/sdk_ua_app_id. It should have a
|
|
305
|
+
# maximum length of 50. This variable is sourced from environment
|
|
306
|
+
# variable AWS_SDK_UA_APP_ID or the shared config profile attribute sdk_ua_app_id.
|
|
306
307
|
#
|
|
307
308
|
# @option options [String] :secret_access_key
|
|
308
309
|
#
|
|
@@ -846,7 +847,7 @@ module Aws::IoTTwinMaker
|
|
|
846
847
|
# },
|
|
847
848
|
# expression: "Expression",
|
|
848
849
|
# },
|
|
849
|
-
# update_type: "UPDATE", # accepts UPDATE, DELETE, CREATE
|
|
850
|
+
# update_type: "UPDATE", # accepts UPDATE, DELETE, CREATE, RESET_VALUE
|
|
850
851
|
# },
|
|
851
852
|
# },
|
|
852
853
|
# property_groups: {
|
|
@@ -950,7 +951,7 @@ module Aws::IoTTwinMaker
|
|
|
950
951
|
# },
|
|
951
952
|
# expression: "Expression",
|
|
952
953
|
# },
|
|
953
|
-
# update_type: "UPDATE", # accepts UPDATE, DELETE, CREATE
|
|
954
|
+
# update_type: "UPDATE", # accepts UPDATE, DELETE, CREATE, RESET_VALUE
|
|
954
955
|
# },
|
|
955
956
|
# },
|
|
956
957
|
# property_groups: {
|
|
@@ -3198,7 +3199,7 @@ module Aws::IoTTwinMaker
|
|
|
3198
3199
|
# },
|
|
3199
3200
|
# expression: "Expression",
|
|
3200
3201
|
# },
|
|
3201
|
-
# update_type: "UPDATE", # accepts UPDATE, DELETE, CREATE
|
|
3202
|
+
# update_type: "UPDATE", # accepts UPDATE, DELETE, CREATE, RESET_VALUE
|
|
3202
3203
|
# },
|
|
3203
3204
|
# },
|
|
3204
3205
|
# property_group_updates: {
|
|
@@ -3303,7 +3304,7 @@ module Aws::IoTTwinMaker
|
|
|
3303
3304
|
# },
|
|
3304
3305
|
# expression: "Expression",
|
|
3305
3306
|
# },
|
|
3306
|
-
# update_type: "UPDATE", # accepts UPDATE, DELETE, CREATE
|
|
3307
|
+
# update_type: "UPDATE", # accepts UPDATE, DELETE, CREATE, RESET_VALUE
|
|
3307
3308
|
# },
|
|
3308
3309
|
# },
|
|
3309
3310
|
# property_group_updates: {
|
|
@@ -3480,7 +3481,7 @@ module Aws::IoTTwinMaker
|
|
|
3480
3481
|
params: params,
|
|
3481
3482
|
config: config)
|
|
3482
3483
|
context[:gem_name] = 'aws-sdk-iottwinmaker'
|
|
3483
|
-
context[:gem_version] = '1.
|
|
3484
|
+
context[:gem_version] = '1.24.0'
|
|
3484
3485
|
Seahorse::Client::Request.new(handlers, context)
|
|
3485
3486
|
end
|
|
3486
3487
|
|
|
@@ -1386,8 +1386,8 @@ module Aws::IoTTwinMaker
|
|
|
1386
1386
|
api.metadata = {
|
|
1387
1387
|
"apiVersion" => "2021-11-29",
|
|
1388
1388
|
"endpointPrefix" => "iottwinmaker",
|
|
1389
|
-
"jsonVersion" => "1.1",
|
|
1390
1389
|
"protocol" => "rest-json",
|
|
1390
|
+
"protocols" => ["rest-json"],
|
|
1391
1391
|
"serviceFullName" => "AWS IoT TwinMaker",
|
|
1392
1392
|
"serviceId" => "IoTTwinMaker",
|
|
1393
1393
|
"signatureVersion" => "v4",
|
data/lib/aws-sdk-iottwinmaker.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -295,7 +295,7 @@ module Aws
|
|
|
295
295
|
}?,
|
|
296
296
|
expression: ::String?
|
|
297
297
|
}?,
|
|
298
|
-
update_type: ("UPDATE" | "DELETE" | "CREATE")?
|
|
298
|
+
update_type: ("UPDATE" | "DELETE" | "CREATE" | "RESET_VALUE")?
|
|
299
299
|
}]?,
|
|
300
300
|
property_groups: Hash[::String, {
|
|
301
301
|
group_type: ("TABULAR")?,
|
|
@@ -371,7 +371,7 @@ module Aws
|
|
|
371
371
|
}?,
|
|
372
372
|
expression: ::String?
|
|
373
373
|
}?,
|
|
374
|
-
update_type: ("UPDATE" | "DELETE" | "CREATE")?
|
|
374
|
+
update_type: ("UPDATE" | "DELETE" | "CREATE" | "RESET_VALUE")?
|
|
375
375
|
}]?,
|
|
376
376
|
property_groups: Hash[::String, {
|
|
377
377
|
group_type: ("TABULAR")?,
|
|
@@ -1146,7 +1146,7 @@ module Aws
|
|
|
1146
1146
|
}?,
|
|
1147
1147
|
expression: ::String?
|
|
1148
1148
|
}?,
|
|
1149
|
-
update_type: ("UPDATE" | "DELETE" | "CREATE")?
|
|
1149
|
+
update_type: ("UPDATE" | "DELETE" | "CREATE" | "RESET_VALUE")?
|
|
1150
1150
|
}]?,
|
|
1151
1151
|
property_group_updates: Hash[::String, {
|
|
1152
1152
|
group_type: ("TABULAR")?,
|
|
@@ -1223,7 +1223,7 @@ module Aws
|
|
|
1223
1223
|
}?,
|
|
1224
1224
|
expression: ::String?
|
|
1225
1225
|
}?,
|
|
1226
|
-
update_type: ("UPDATE" | "DELETE" | "CREATE")?
|
|
1226
|
+
update_type: ("UPDATE" | "DELETE" | "CREATE" | "RESET_VALUE")?
|
|
1227
1227
|
}]?,
|
|
1228
1228
|
property_group_updates: Hash[::String, {
|
|
1229
1229
|
group_type: ("TABULAR")?,
|
data/sig/types.rbs
CHANGED
|
@@ -982,7 +982,7 @@ module Aws::IoTTwinMaker
|
|
|
982
982
|
class PropertyRequest
|
|
983
983
|
attr_accessor definition: Types::PropertyDefinitionRequest
|
|
984
984
|
attr_accessor value: Types::DataValue
|
|
985
|
-
attr_accessor update_type: ("UPDATE" | "DELETE" | "CREATE")
|
|
985
|
+
attr_accessor update_type: ("UPDATE" | "DELETE" | "CREATE" | "RESET_VALUE")
|
|
986
986
|
SENSITIVE: []
|
|
987
987
|
end
|
|
988
988
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-iottwinmaker
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.24.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-06-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|