Kinetica   C#   API  Version 7.2.3.1
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 
72  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
73 
76  public CreateSchemaRequest() { }
77 
107  IDictionary<string, string> options = null)
108  {
109  this.schema_name = schema_name ?? "";
110  this.options = options ?? new Dictionary<string, string>();
111  } // end constructor
112 } // end class CreateSchemaRequest
113 
118 {
121  public string schema_name { get; set; }
122 
124  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
125 } // end class CreateSchemaResponse
const string NO_ERROR_IF_EXISTS
If TRUE, prevents an error from occurring if the schema already exists.
Definition: CreateSchema.cs:38
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
string schema_name
Value of schema_name.
string schema_name
Name of the schema to be created.
Definition: CreateSchema.cs:48
IDictionary< string, string > info
Additional information.
A set of results returned by Kinetica.createSchema.
CreateSchemaRequest(string schema_name, IDictionary< string, string > options=null)
Constructs a CreateSchemaRequest object with the specified parameters.
A set of string constants for the parameter options.
Definition: CreateSchema.cs:23
CreateSchemaRequest()
Constructs a CreateSchemaRequest object with default parameters.
Definition: CreateSchema.cs:76
IDictionary< string, string > options
Optional parameters.
Definition: CreateSchema.cs:72
A set of parameters for Kinetica.createSchema.
Definition: CreateSchema.cs:18