File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5005,6 +5005,15 @@ type Tag {
50055005 name : String !
50065006}
50075007
5008+ "The result of the :cancel_ota_operation mutation"
5009+ type CancelOtaOperationResult {
5010+ "The successful result of the mutation"
5011+ result : OtaOperation
5012+
5013+ "Any errors generated, if the mutation failed"
5014+ errors : [MutationError ! ]!
5015+ }
5016+
50085017"The result of the :create_manual_ota_operation mutation"
50095018type CreateManualOtaOperationResult {
50105019 "The successful result of the mutation"
@@ -6261,6 +6270,9 @@ type RootMutationType {
62616270 input : CreateManualOtaOperationInput !
62626271 ): CreateManualOtaOperationResult
62636272
6273+ "Cancels an OTA update operation"
6274+ cancelOtaOperation (id : ID ! ): CancelOtaOperationResult
6275+
62646276 "Creates a new device group."
62656277 createDeviceGroup (input : CreateDeviceGroupInput ! ): CreateDeviceGroupResult
62666278
You can’t perform that action at this time.
0 commit comments