Kinetica C# API  Version 7.1.10.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
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 
10 
11 namespace kinetica
12 {
13 
22  {
23 
49  public struct Options
50  {
51 
67  public const string NO_ERROR_IF_EXISTS = "no_error_if_exists";
68  public const string TRUE = "true";
69  public const string FALSE = "false";
70  } // end struct Options
71 
72 
76  public string schema_name { get; set; }
77 
101  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
102 
103 
106  public CreateSchemaRequest() { }
107 
139  IDictionary<string, string> options = null)
140  {
141  this.schema_name = schema_name ?? "";
142  this.options = options ?? new Dictionary<string, string>();
143  } // end constructor
144 
145  } // end class CreateSchemaRequest
146 
147 
148 
153  {
154 
157  public string schema_name { get; set; }
158 
160  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
161 
162  } // end class CreateSchemaResponse
163 
164 
165 
166 
167 } // end namespace kinetica
const string NO_ERROR_IF_EXISTS
If true, prevents an error from occurring if the schema already exists.
Definition: CreateSchema.cs:67
string schema_name
Value of .
IDictionary< string, string > options
Optional parameters.
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(string,IDictionary{string, string}).
CreateSchemaRequest()
Constructs a CreateSchemaRequest object with default parameters.
string schema_name
Name of the schema to be created.
Definition: CreateSchema.cs:76
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
A set of parameters for Kinetica.createSchema(string,IDictionary{string, string}).
Definition: CreateSchema.cs:21