7 using System.Collections.Generic;
28 public const string BINARY =
"binary";
29 public const string JSON =
"json";
30 public const string SNAPPY =
"snappy";
49 public const string TRUE =
"true";
50 public const string FALSE =
"false";
91 public byte[]
data {
get;
set; }
128 public IDictionary<string, string>
options {
get;
set; } =
new Dictionary<string, string>();
201 IDictionary<string, string>
options =
null)
205 this.data =
data ??
new byte[] { };
240 public IDictionary<string, string>
info {
get;
set; } =
new Dictionary<string, string>();
string data_str
JSON-encoded payload for the job to be run asynchronously.
byte [] data
Binary-encoded payload for the job to be run asynchronously.
A set of string constants for the parameter request_encoding.
CreateJobRequest(string endpoint, string request_encoding, byte[] data, string data_str, IDictionary< string, string > options=null)
Constructs a CreateJobRequest object with the specified parameters.
IDictionary< string, string > options
Optional parameters.
IDictionary< string, string > info
Additional information.
const string JOB_TAG
Tag to use for submitted job.
const string JOB_TAG
The job tag specified by the user or if unspecified by user, a unique identifier generated internally...
A set of string constants for the parameter info.
A set of results returned by Kinetica.createJob.
A set of string constants for the parameter options.
string endpoint
Indicates which endpoint to execute, e.g.
string request_encoding
The encoding of the request payload for the job.
const string REMOVE_JOB_ON_COMPLETE
long job_id
An identifier for the job created by this call.
A set of parameters for Kinetica.createJob.
KineticaData - class to help with Avro Encoding for Kinetica
CreateJobRequest()
Constructs a CreateJobRequest object with default parameters.