Kinetica   C#   API  Version 7.2.3.0
CreateSchema.cs
Go to the documentation of this file.
1 /*
2  * This file was autogenerated by the Kinetica schema processor.
3  *
4  * DO NOT EDIT DIRECTLY.
5  */
6 
7 using System.Collections.Generic;
8 
9 namespace kinetica
10 {
19  {
23  public struct Options
24  {
38  public const string NO_ERROR_IF_EXISTS = "no_error_if_exists";
39 
40  public const string TRUE = "true";
41  public const string FALSE = "false";
42  } // end struct Options
43 
48  public string schema_name { get; set; }
49 
73  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
74 
77  public CreateSchemaRequest() { }
78 
109  IDictionary<string, string> options = null)
110  {
111  this.schema_name = schema_name ?? "";
112  this.options = options ?? new Dictionary<string, string>();
113  } // end constructor
114  } // end class CreateSchemaRequest
115 
120  {
123  public string schema_name { get; set; }
124 
126  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
127  } // end class CreateSchemaResponse
128 } // end namespace kinetica
const string NO_ERROR_IF_EXISTS
If TRUE, prevents an error from occurring if the schema already exists.
Definition: CreateSchema.cs:38
string schema_name
Value of schema_name.
IDictionary< string, string > options
Optional parameters.
Definition: CreateSchema.cs:73
CreateSchemaRequest(string schema_name, IDictionary< string, string > options=null)
Constructs a CreateSchemaRequest object with the specified parameters.
IDictionary< string, string > info
Additional information.
A set of results returned by Kinetica.createSchema.
CreateSchemaRequest()
Constructs a CreateSchemaRequest object with default parameters.
Definition: CreateSchema.cs:77
string schema_name
Name of the schema to be created.
Definition: CreateSchema.cs:48
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
A set of parameters for Kinetica.createSchema.
Definition: CreateSchema.cs:18
A set of string constants for the parameter options.
Definition: CreateSchema.cs:23