Skip to content

Commit 7dd6fdf

Browse files
author
awstools
committed
feat(client-iot-wireless): Adds support for wireless device to be in Conflict FUOTA Device Status due to a FUOTA Task, so it couldn't be attached to a new one.
1 parent 6772052 commit 7dd6fdf

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

clients/client-iot-wireless/src/commands/ListWirelessDevicesCommand.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ export interface ListWirelessDevicesCommandOutput extends ListWirelessDevicesRes
7373
* // DeviceProfileId: "STRING_VALUE",
7474
* // Status: "PROVISIONED" || "REGISTERED" || "ACTIVATED" || "UNKNOWN",
7575
* // },
76-
* // FuotaDeviceStatus: "Initial" || "Package_Not_Supported" || "FragAlgo_unsupported" || "Not_enough_memory" || "FragIndex_unsupported" || "Wrong_descriptor" || "SessionCnt_replay" || "MissingFrag" || "MemoryError" || "MICError" || "Successful",
76+
* // FuotaDeviceStatus: "Initial" || "Package_Not_Supported" || "FragAlgo_unsupported" || "Not_enough_memory" || "FragIndex_unsupported" || "Wrong_descriptor" || "SessionCnt_replay" || "MissingFrag" || "MemoryError" || "MICError" || "Successful" || "Device_exist_in_conflict_fuota_task",
7777
* // MulticastDeviceStatus: "STRING_VALUE",
7878
* // McGroupId: Number("int"),
7979
* // },

clients/client-iot-wireless/src/models/models_0.ts

+1
Original file line numberDiff line numberDiff line change
@@ -3612,6 +3612,7 @@ export type EventNotificationResourceType =
36123612
* @enum
36133613
*/
36143614
export const FuotaDeviceStatus = {
3615+
Device_exist_in_conflict_fuota_task: "Device_exist_in_conflict_fuota_task",
36153616
FragAlgo_unsupported: "FragAlgo_unsupported",
36163617
FragIndex_unsupported: "FragIndex_unsupported",
36173618
Initial: "Initial",

codegen/sdk-codegen/aws-models/iot-wireless.json

+6
Original file line numberDiff line numberDiff line change
@@ -4479,6 +4479,12 @@
44794479
"traits": {
44804480
"smithy.api#enumValue": "Successful"
44814481
}
4482+
},
4483+
"Device_exist_in_conflict_fuota_task": {
4484+
"target": "smithy.api#Unit",
4485+
"traits": {
4486+
"smithy.api#enumValue": "Device_exist_in_conflict_fuota_task"
4487+
}
44824488
}
44834489
},
44844490
"traits": {

0 commit comments

Comments
 (0)