From 822d606d46e42fe666fb1005c7bf3c3599e8bb5d Mon Sep 17 00:00:00 2001 From: awstools Date: Mon, 3 Jun 2024 18:18:01 +0000 Subject: [PATCH] feat(client-iottwinmaker): Support RESET_VALUE UpdateType for PropertyUpdates to reset property value to default or null --- clients/client-iottwinmaker/src/models/models_0.ts | 1 + codegen/sdk-codegen/aws-models/iottwinmaker.json | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/clients/client-iottwinmaker/src/models/models_0.ts b/clients/client-iottwinmaker/src/models/models_0.ts index c7b2f507443f..6156a245983d 100644 --- a/clients/client-iottwinmaker/src/models/models_0.ts +++ b/clients/client-iottwinmaker/src/models/models_0.ts @@ -554,6 +554,7 @@ export class ServiceQuotaExceededException extends __BaseException { export const PropertyUpdateType = { CREATE: "CREATE", DELETE: "DELETE", + RESET_VALUE: "RESET_VALUE", UPDATE: "UPDATE", } as const; diff --git a/codegen/sdk-codegen/aws-models/iottwinmaker.json b/codegen/sdk-codegen/aws-models/iottwinmaker.json index b19c1f6220e5..224bcb280b89 100644 --- a/codegen/sdk-codegen/aws-models/iottwinmaker.json +++ b/codegen/sdk-codegen/aws-models/iottwinmaker.json @@ -6782,6 +6782,10 @@ { "name": "CREATE", "value": "CREATE" + }, + { + "name": "RESET_VALUE", + "value": "RESET_VALUE" } ] }