Kinetica   C#   API  Version 7.2.3.1
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 
26 {
32  public string table_name { get; set; }
33 
42  public IList<IDictionary<string, string>> column_alterations { get; set; } = new List<IDictionary<string, string>>();
43 
45  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
46 
50 
68  IList<IDictionary<string, string>> column_alterations,
69  IDictionary<string, string> options)
70  {
71  this.table_name = table_name ?? "";
72  this.column_alterations = column_alterations ?? new List<IDictionary<string, string>>();
73  this.options = options ?? new Dictionary<string, string>();
74  } // end constructor
75 } // end class AlterTableColumnsRequest
76 
81 {
83  public string table_name { get; set; }
84 
87  public string type_id { get; set; }
88 
91  public string type_definition { get; set; }
92 
95  public IDictionary<string, IList<string>> properties { get; set; } = new Dictionary<string, IList<string>>();
96 
99  public string label { get; set; }
100 
109  public IList<IDictionary<string, string>> column_alterations { get; set; } = new List<IDictionary<string, string>>();
110 
112  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
113 } // end class AlterTableColumnsResponse
IDictionary< string, string > info
Additional information.
string table_name
Table on which the operation was performed.
IList< IDictionary< string, string > > column_alterations
List of alter table add/delete/change column requests - all for the same table.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
string type_definition
Return the type_definition (when changing a table, a new type may be created).
string type_id
Return the type_id (when changing a table, a new type may be created).
string label
Return the type label (when changing a table, a new type may be created).
IList< IDictionary< string, string > > column_alterations
List of alter table add/delete/change column requests - all for the same table.
IDictionary< string, string > options
Optional parameters.
A set of parameters for Kinetica.alterTableColumns.
IDictionary< string, IList< string > > properties
Return the type properties (when changing a table, a new type may be created).
string table_name
Table on which the operation will be performed.
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.
AlterTableColumnsRequest()
Constructs an AlterTableColumnsRequest object with default parameters.