Kinetica   C#   API  Version 7.2.3.0
AlterTableColumns.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 {
27  {
33  public string table_name { get; set; }
34 
43  public IList<IDictionary<string, string>> column_alterations { get; set; } = new List<IDictionary<string, string>>();
44 
46  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
47 
51 
70  IList<IDictionary<string, string>> column_alterations,
71  IDictionary<string, string> options)
72  {
73  this.table_name = table_name ?? "";
74  this.column_alterations = column_alterations ?? new List<IDictionary<string, string>>();
75  this.options = options ?? new Dictionary<string, string>();
76  } // end constructor
77  } // end class AlterTableColumnsRequest
78 
83  {
85  public string table_name { get; set; }
86 
89  public string type_id { get; set; }
90 
93  public string type_definition { get; set; }
94 
97  public IDictionary<string, IList<string>> properties { get; set; } = new Dictionary<string, IList<string>>();
98 
101  public string label { get; set; }
102 
111  public IList<IDictionary<string, string>> column_alterations { get; set; } = new List<IDictionary<string, string>>();
112 
114  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
115  } // end class AlterTableColumnsResponse
116 } // end namespace kinetica
A set of parameters for Kinetica.alterTableColumns.
IList< IDictionary< string, string > > column_alterations
List of alter table add/delete/change column requests - all for the same table.
string type_definition
return the type_definition (when changing a table, a new type may be created)
IDictionary< string, string > options
Optional parameters.
string type_id
return the type_id (when changing a table, a new type may be created)
AlterTableColumnsRequest()
Constructs an AlterTableColumnsRequest object with default parameters.
IDictionary< string, IList< string > > properties
return the type properties (when changing a table, a new type may be created)
AlterTableColumnsRequest(string table_name, IList< IDictionary< string, string >> column_alterations, IDictionary< string, string > options)
Constructs an AlterTableColumnsRequest object with the specified parameters.
A set of results returned by Kinetica.alterTableColumns.
IList< IDictionary< string, string > > column_alterations
List of alter table add/delete/change column requests - all for the same table.
IDictionary< string, string > info
Additional information.
string table_name
Table on which the operation will be performed.
string label
return the type label (when changing a table, a new type may be created)
string table_name
Table on which the operation was performed.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14