7 using System.Collections.Generic;
26 public class AlterTableColumnsRequest : KineticaData
43 public IList<IDictionary<string, string>>
column_alterations {
get;
set; } =
new List<IDictionary<string, string>>();
46 public IDictionary<string, string>
options {
get;
set; } =
new Dictionary<string, string>();
71 IDictionary<string, string>
options)
75 this.options =
options ??
new Dictionary<string, string>();
82 public class AlterTableColumnsResponse : KineticaData
89 public string type_id {
get;
set; }
97 public IDictionary<string, IList<string>>
properties {
get;
set; } =
new Dictionary<string, IList<string>>();
101 public string label {
get;
set; }
111 public IList<IDictionary<string, string>>
column_alterations {
get;
set; } =
new List<IDictionary<string, string>>();
114 public IDictionary<string, string>
info {
get;
set; } =
new Dictionary<string, string>();
IList< IDictionary< string, string > > column_alterations
List of alter table add/delete/change column requests - all for the same table.
AlterTableColumnsRequest()
Constructs an AlterTableColumnsRequest object with default parameters.
AlterTableColumnsRequest(string table_name, IList< IDictionary< string, string >> column_alterations, IDictionary< string, string > options)
Constructs an AlterTableColumnsRequest object with the specified parameters.
IDictionary< string, IList< string > > properties
return the type properties (when changing a table, a new type may be created)
IDictionary< string, string > info
Additional information.
string label
return the type label (when changing a table, a new type may be created)
string type_definition
return the type_definition (when changing a table, a new type may be created)
string table_name
Table on which the operation will be performed.
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.
string table_name
Table on which the operation was performed.
string type_id
return the type_id (when changing a table, a new type may be created)