Kinetica   C#   API  Version 7.2.3.0
HasSchema.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 {
17  {
21  public string schema_name { get; set; }
22 
26  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
27 
30  public HasSchemaRequest() { }
31 
41  public HasSchemaRequest( string schema_name,
42  IDictionary<string, string> options = null)
43  {
44  this.schema_name = schema_name ?? "";
45  this.options = options ?? new Dictionary<string, string>();
46  } // end constructor
47  } // end class HasSchemaRequest
48 
53  {
58  public struct SchemaExists
59  {
60  public const string TRUE = "true";
61  public const string FALSE = "false";
62  } // end struct SchemaExists
63 
66  public string schema_name { get; set; }
67 
78  public bool schema_exists { get; set; }
79 
81  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
82  } // end class HasSchemaResponse
83 } // end namespace kinetica
A set of results returned by Kinetica.hasSchema.
Definition: HasSchema.cs:52
string schema_name
Value of schema_name
Definition: HasSchema.cs:66
HasSchemaRequest()
Constructs a HasSchemaRequest object with default parameters.
Definition: HasSchema.cs:30
IDictionary< string, string > info
Additional information.
Definition: HasSchema.cs:81
A set of parameters for Kinetica.hasSchema.
Definition: HasSchema.cs:16
bool schema_exists
Indicates whether the schema exists or not.
Definition: HasSchema.cs:78
string schema_name
Name of the schema to check for existence, in root, using standard name resolution rules.
Definition: HasSchema.cs:21
IDictionary< string, string > options
Optional parameters.
Definition: HasSchema.cs:26
A set of string constants for the parameter schema_exists.
Definition: HasSchema.cs:58
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
HasSchemaRequest(string schema_name, IDictionary< string, string > options=null)
Constructs a HasSchemaRequest object with the specified parameters.
Definition: HasSchema.cs:41