7 using System.Collections.Generic;
42 public IList<IDictionary<string, string>>
column_alterations {
get;
set; } =
new List<IDictionary<string, string>>();
45 public IDictionary<string, string>
options {
get;
set; } =
new Dictionary<string, string>();
69 IDictionary<string, string>
options)
73 this.options =
options ??
new Dictionary<string, string>();
95 public IDictionary<string, IList<string>>
properties {
get;
set; } =
new Dictionary<string, IList<string>>();
99 public string label {
get;
set; }
109 public IList<IDictionary<string, string>>
column_alterations {
get;
set; } =
new List<IDictionary<string, string>>();
112 public IDictionary<string, string>
info {
get;
set; } =
new Dictionary<string, string>();
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
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.