Skip to content

Commit

Permalink
feat(client-iot-wireless): Adds support for wireless device to be in …
Browse files Browse the repository at this point in the history
…Conflict FUOTA Device Status due to a FUOTA Task, so it couldn't be attached to a new one.
  • Loading branch information
awstools committed Jun 6, 2024
1 parent 6772052 commit 7dd6fdf
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export interface ListWirelessDevicesCommandOutput extends ListWirelessDevicesRes
* // DeviceProfileId: "STRING_VALUE",
* // Status: "PROVISIONED" || "REGISTERED" || "ACTIVATED" || "UNKNOWN",
* // },
* // FuotaDeviceStatus: "Initial" || "Package_Not_Supported" || "FragAlgo_unsupported" || "Not_enough_memory" || "FragIndex_unsupported" || "Wrong_descriptor" || "SessionCnt_replay" || "MissingFrag" || "MemoryError" || "MICError" || "Successful",
* // 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",
* // MulticastDeviceStatus: "STRING_VALUE",
* // McGroupId: Number("int"),
* // },
Expand Down
1 change: 1 addition & 0 deletions clients/client-iot-wireless/src/models/models_0.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3612,6 +3612,7 @@ export type EventNotificationResourceType =
* @enum
*/
export const FuotaDeviceStatus = {
Device_exist_in_conflict_fuota_task: "Device_exist_in_conflict_fuota_task",
FragAlgo_unsupported: "FragAlgo_unsupported",
FragIndex_unsupported: "FragIndex_unsupported",
Initial: "Initial",
Expand Down
6 changes: 6 additions & 0 deletions codegen/sdk-codegen/aws-models/iot-wireless.json
Original file line number Diff line number Diff line change
Expand Up @@ -4479,6 +4479,12 @@
"traits": {
"smithy.api#enumValue": "Successful"
}
},
"Device_exist_in_conflict_fuota_task": {
"target": "smithy.api#Unit",
"traits": {
"smithy.api#enumValue": "Device_exist_in_conflict_fuota_task"
}
}
},
"traits": {
Expand Down

0 comments on commit 7dd6fdf

Please sign in to comment.