INPUT_OBJECT
UpdateLibraryEngineModel
link GraphQL Schema definition
1 input UpdateLibraryEngineModel { 4 2 # ID of the library engine model to update. 3 : ID! 7 5 # Id of the train job. 6 : ID 10 8 # Status of the train job. 9 : LibraryEngineModelTrainStatus 16 11 # The URL to a file containing or related to the engine model. 12 # Submit either this field _or_ `file`, not both. 13 # Use this field if the data is stored in a separate, internet-accessible 14 # location and not managed by Veritone APIs. 15 : String 19 17 # Optional free-form block containing engine-specific metadata. 18 : JSONData 25 20 # If a file is uploaded, you can explicitly specify the content type 21 # (a valid MIME type string) with this field. Often this is not necessary 22 # as the HTTP multipart form POST client will set content type on the 23 # file object implicitly. 24 : String 32 26 # An optional data file containing or related to the engine model. 27 # Use multipart form POST to submit this field. 28 # Submit either this field _or_ `dataUrl`, not both. If a file is 29 # uploaded, the server will store it and then set `dataUrl` to 30 # its location. 31 : UploadedFile 34 33 : Int 36 35 : ID 37 }