Kinetica C# API
Version 7.2.3.0
|
A set of parameters for Kinetica.createJob. More...
Classes | |
struct | Options |
A set of string constants for the parameter options. More... | |
struct | RequestEncoding |
A set of string constants for the parameter request_encoding. More... | |
Public Member Functions | |
CreateJobRequest () | |
Constructs a CreateJobRequest object with default parameters. More... | |
CreateJobRequest (string endpoint, string request_encoding, byte[] data, string data_str, IDictionary< string, string > options=null) | |
Constructs a CreateJobRequest object with the specified parameters. More... | |
CreateJobRequest () | |
Constructs a CreateJobRequest object with default parameters. More... | |
CreateJobRequest (string endpoint, string request_encoding, byte[] data, string data_str, IDictionary< string, string > options=null) | |
Constructs a CreateJobRequest object with the specified parameters. More... | |
![]() | |
KineticaData (KineticaType type) | |
Constructor from Kinetica Type More... | |
KineticaData (System.Type type=null) | |
Default constructor, with optional System.Type More... | |
object | Get (int fieldPos) |
Retrieve a specific property from this object More... | |
void | Put (int fieldPos, object fieldValue) |
Write a specific property to this object More... | |
KineticaData (KineticaType type) | |
Constructor from Kinetica Type More... | |
KineticaData (System.Type type=null) | |
Default constructor, with optional System.Type More... | |
object | Get (int fieldPos) |
Retrieve a specific property from this object More... | |
void | Put (int fieldPos, object fieldValue) |
Write a specific property to this object More... | |
Properties | |
string | endpoint [get, set] |
Indicates which endpoint to execute, e.g. More... | |
string | request_encoding = RequestEncoding.BINARY [get, set] |
The encoding of the request payload for the job. More... | |
byte [] | data [get, set] |
Binary-encoded payload for the job to be run asynchronously. More... | |
string | data_str [get, set] |
JSON-encoded payload for the job to be run asynchronously. More... | |
IDictionary< string, string > | options = new Dictionary<string, string>() [get, set] |
Optional parameters. More... | |
![]() | |
Schema | Schema [get] |
Avro Schema for this class More... | |
![]() | |
Schema | Schema [get] |
Additional Inherited Members | |
![]() | |
static ? RecordSchema | SchemaFromType (System.Type t, KineticaType? ktype=null) |
Create an Avro Schema from a System.Type and a KineticaType. More... | |
static ? RecordSchema | SchemaFromType (System.Type t, KineticaType? ktype=null) |
Create an Avro Schema from a System.Type and a KineticaType. More... | |
A set of parameters for Kinetica.createJob.
Create a job which will run asynchronously. The response returns a job ID, which can be used to query the status and result of the job. The status and the result of the job upon completion can be requested by Kinetica.getJob.
Definition at line 20 of file CreateJob.cs.
|
inline |
Constructs a CreateJobRequest object with default parameters.
Definition at line 104 of file CreateJob.cs.
|
inline |
Constructs a CreateJobRequest object with the specified parameters.
endpoint | Indicates which endpoint to execute, e.g. '/alter/table'. |
request_encoding | The encoding of the request payload for the job. Supported values: The default value is BINARY. |
data | Binary-encoded payload for the job to be run asynchronously. The payload must contain the relevant input parameters for the endpoint indicated in endpoint . Please see the documentation for the appropriate endpoint to see what values must (or can) be specified. If this parameter is used, then request_encoding must be BINARY or SNAPPY. |
data_str | JSON-encoded payload for the job to be run asynchronously. The payload must contain the relevant input parameters for the endpoint indicated in endpoint . Please see the documentation for the appropriate endpoint to see what values must (or can) be specified. If this parameter is used, then request_encoding must be JSON. |
options | Optional parameters.
|
Definition at line 155 of file CreateJob.cs.
|
inline |
Constructs a CreateJobRequest object with default parameters.
Definition at line 104 of file CreateJob.cs.
|
inline |
Constructs a CreateJobRequest object with the specified parameters.
endpoint | Indicates which endpoint to execute, e.g. '/alter/table'. |
request_encoding | The encoding of the request payload for the job. Supported values: The default value is BINARY. |
data | Binary-encoded payload for the job to be run asynchronously. The payload must contain the relevant input parameters for the endpoint indicated in endpoint . Please see the documentation for the appropriate endpoint to see what values must (or can) be specified. If this parameter is used, then request_encoding must be BINARY or SNAPPY. |
data_str | JSON-encoded payload for the job to be run asynchronously. The payload must contain the relevant input parameters for the endpoint indicated in endpoint . Please see the documentation for the appropriate endpoint to see what values must (or can) be specified. If this parameter is used, then request_encoding must be JSON. |
options | Optional parameters.
|
Definition at line 155 of file CreateJob.cs.
|
getset |
Binary-encoded payload for the job to be run asynchronously.
The payload must contain the relevant input parameters for the endpoint indicated in endpoint. Please see the documentation for the appropriate endpoint to see what values must (or can) be specified. If this parameter is used, then request_encoding must be BINARY or SNAPPY.
Definition at line 77 of file CreateJob.cs.
|
getset |
JSON-encoded payload for the job to be run asynchronously.
The payload must contain the relevant input parameters for the endpoint indicated in endpoint. Please see the documentation for the appropriate endpoint to see what values must (or can) be specified. If this parameter is used, then request_encoding must be JSON.
Definition at line 87 of file CreateJob.cs.
|
getset |
Indicates which endpoint to execute, e.g.
'/alter/table'.
Definition at line 47 of file CreateJob.cs.
|
getset |
Optional parameters.
The default value is an empty Dictionary.
Definition at line 100 of file CreateJob.cs.
|
getset |