uploadObulog
File upload interface
Uploads an OBU log file to ODE upload folder to be processed and propaged
/upload/obulog
Usage and SDK Samples
curl -X POST "https://yourhostname/upload/obulog"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.LogFileApi;
import java.io.File;
import java.util.*;
public class LogFileApiExample {
public static void main(String[] args) {
LogFileApi apiInstance = new LogFileApi();
File file = /path/to/file.txt; // File | The file to upload.
try {
array[Status] result = apiInstance.uploadObulog(file);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling LogFileApi#uploadObulog");
e.printStackTrace();
}
}
}
import io.swagger.client.api.LogFileApi;
public class LogFileApiExample {
public static void main(String[] args) {
LogFileApi apiInstance = new LogFileApi();
File file = /path/to/file.txt; // File | The file to upload.
try {
array[Status] result = apiInstance.uploadObulog(file);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling LogFileApi#uploadObulog");
e.printStackTrace();
}
}
}
File *file = /path/to/file.txt; // The file to upload. (optional)
LogFileApi *apiInstance = [[LogFileApi alloc] init];
// File upload interface
[apiInstance uploadObulogWith:file
completionHandler: ^(array[Status] output, NSError* error) {
if (output) {
NSLog(@"%@", output);
}
if (error) {
NSLog(@"Error: %@", error);
}
}];
var OdeRestApi = require('ode_rest_api');
var api = new OdeRestApi.LogFileApi()
var opts = {
'file': /path/to/file.txt // {File} The file to upload.
};
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
api.uploadObulog(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;
namespace Example
{
public class uploadObulogExample
{
public void main()
{
var apiInstance = new LogFileApi();
var file = new File(); // File | The file to upload. (optional)
try
{
// File upload interface
array[Status] result = apiInstance.uploadObulog(file);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling LogFileApi.uploadObulog: " + e.Message );
}
}
}
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$api_instance = new Swagger\Client\Api\LogFileApi();
$file = /path/to/file.txt; // File | The file to upload.
try {
$result = $api_instance->uploadObulog($file);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling LogFileApi->uploadObulog: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::LogFileApi;
my $api_instance = WWW::SwaggerClient::LogFileApi->new();
my $file = /path/to/file.txt; # File | The file to upload.
eval {
my $result = $api_instance->uploadObulog(file => $file);
print Dumper($result);
};
if ($@) {
warn "Exception when calling LogFileApi->uploadObulog: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint
# create an instance of the API class
api_instance = swagger_client.LogFileApi()
file = /path/to/file.txt # File | The file to upload. (optional)
try:
# File upload interface
api_response = api_instance.upload_obulog(file=file)
pprint(api_response)
except ApiException as e:
print("Exception when calling LogFileApi->uploadObulog: %s\n" % e)
Parameters
Name | Description |
---|---|
file |
File
The file to upload.
|