aws-sdk-iottwinmaker 1.23.0 → 1.24.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: 02dfa55c91fb0277977358ab9bef2bf0fe43f1bc3d97101b5ba0099713820101
4
- data.tar.gz: 5463561991ccb9f8a648c0b7c05eedfef17ba6f32d5066a20a429f37c9bdfe63
3
+ metadata.gz: 30e6ed3e8a548ccd748f0998ac7abe6c30e1eb65afee7f75f5bfe47d45a4fcb1
4
+ data.tar.gz: 02d2e2292fee3324023f718d8c379832e9255b46729a4158e58b4e8a912b1110
5
5
  SHA512:
6
- metadata.gz: b021cd433460a8e859cbf0a458ca0729a8d4cc9227f7b2d34650324ab723e63f0239c8f4aa2be52cbcc439852ad5e5cba515491b91a36590c9f9a1286d3bd369
7
- data.tar.gz: 98796f54dab03f8f53ae39fdf7e29ddd9f3527d3d7fcce9605e366de53de956182f3a0463bdd884a211da69155eb1ec32f4611aa09e60ffceefce70494336839
6
+ metadata.gz: 8a185a0c720ec7072c02de9842f2186746b2ec616d4a83ec0f68c9ede19a7ac360742d79b0a25f8f41f54efc6ea3d9c6e999c80c20e0ad8f51ba66b635dbc5dd
7
+ data.tar.gz: 5676140fce6edbc38d6378b2f0aed8e4d424116842d6717ede27c61752931ea1c02d5e268d55701007db4999f08d8e58644c90f78445f3f714810798ae3cbb78
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
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
+
4
9
  1.23.0 (2024-05-13)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.23.0
1
+ 1.24.0
@@ -847,7 +847,7 @@ module Aws::IoTTwinMaker
847
847
  # },
848
848
  # expression: "Expression",
849
849
  # },
850
- # update_type: "UPDATE", # accepts UPDATE, DELETE, CREATE
850
+ # update_type: "UPDATE", # accepts UPDATE, DELETE, CREATE, RESET_VALUE
851
851
  # },
852
852
  # },
853
853
  # property_groups: {
@@ -951,7 +951,7 @@ module Aws::IoTTwinMaker
951
951
  # },
952
952
  # expression: "Expression",
953
953
  # },
954
- # update_type: "UPDATE", # accepts UPDATE, DELETE, CREATE
954
+ # update_type: "UPDATE", # accepts UPDATE, DELETE, CREATE, RESET_VALUE
955
955
  # },
956
956
  # },
957
957
  # property_groups: {
@@ -3199,7 +3199,7 @@ module Aws::IoTTwinMaker
3199
3199
  # },
3200
3200
  # expression: "Expression",
3201
3201
  # },
3202
- # update_type: "UPDATE", # accepts UPDATE, DELETE, CREATE
3202
+ # update_type: "UPDATE", # accepts UPDATE, DELETE, CREATE, RESET_VALUE
3203
3203
  # },
3204
3204
  # },
3205
3205
  # property_group_updates: {
@@ -3304,7 +3304,7 @@ module Aws::IoTTwinMaker
3304
3304
  # },
3305
3305
  # expression: "Expression",
3306
3306
  # },
3307
- # update_type: "UPDATE", # accepts UPDATE, DELETE, CREATE
3307
+ # update_type: "UPDATE", # accepts UPDATE, DELETE, CREATE, RESET_VALUE
3308
3308
  # },
3309
3309
  # },
3310
3310
  # property_group_updates: {
@@ -3481,7 +3481,7 @@ module Aws::IoTTwinMaker
3481
3481
  params: params,
3482
3482
  config: config)
3483
3483
  context[:gem_name] = 'aws-sdk-iottwinmaker'
3484
- context[:gem_version] = '1.23.0'
3484
+ context[:gem_version] = '1.24.0'
3485
3485
  Seahorse::Client::Request.new(handlers, context)
3486
3486
  end
3487
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",
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-iottwinmaker/customizations'
53
53
  # @!group service
54
54
  module Aws::IoTTwinMaker
55
55
 
56
- GEM_VERSION = '1.23.0'
56
+ GEM_VERSION = '1.24.0'
57
57
 
58
58
  end
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.23.0
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-05-13 00:00:00.000000000 Z
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