@@ -5005,16 +5005,33 @@ type Tag {
50055005 name : String !
50065006}
50075007
5008- "The result of the :create_manual_ota_operation mutation"
5009- type CreateManualOtaOperationResult {
5008+ "The result of the :create_manual_ota_operation_existing_base_image mutation"
5009+ type CreateManualOtaOperationExistingBaseImageResult {
50105010 "The successful result of the mutation"
50115011 result : OtaOperation
50125012
50135013 "Any errors generated, if the mutation failed"
50145014 errors : [MutationError ! ]!
50155015}
50165016
5017- input CreateManualOtaOperationInput {
5017+ input CreateManualOtaOperationExistingBaseImageInput {
5018+ "The URL of the base image being installed on the device"
5019+ baseImageUrl : String !
5020+
5021+ "The ID identifying the Device the OTA Operation will be sent to"
5022+ deviceId : ID
5023+ }
5024+
5025+ "The result of the :create_manual_ota_operation_no_existing_base_image mutation"
5026+ type CreateManualOtaOperationNoExistingBaseImageResult {
5027+ "The successful result of the mutation"
5028+ result : OtaOperation
5029+
5030+ "Any errors generated, if the mutation failed"
5031+ errors : [MutationError ! ]!
5032+ }
5033+
5034+ input CreateManualOtaOperationNoExistingBaseImageInput {
50185035 "The ID identifying the Device the OTA Operation will be sent to"
50195036 deviceId : ID !
50205037
@@ -6257,9 +6274,14 @@ type RootMutationType {
62576274 deleteChannel (id : ID ! ): DeleteChannelResult
62586275
62596276 "Initiates an OTA update with a user provided OS image"
6260- createManualOtaOperation (
6261- input : CreateManualOtaOperationInput !
6262- ): CreateManualOtaOperationResult
6277+ createManualOtaOperationNoExistingBaseImage (
6278+ input : CreateManualOtaOperationNoExistingBaseImageInput !
6279+ ): CreateManualOtaOperationNoExistingBaseImageResult
6280+
6281+ "Initiates an OTA update by selecting one from an available collection"
6282+ createManualOtaOperationExistingBaseImage (
6283+ input : CreateManualOtaOperationExistingBaseImageInput !
6284+ ): CreateManualOtaOperationExistingBaseImageResult
62636285
62646286 "Creates a new device group."
62656287 createDeviceGroup (input : CreateDeviceGroupInput ! ): CreateDeviceGroupResult
0 commit comments