Kinetica C# API  Version 7.0.19.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
AlterTableMetadata.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 
10 
11 namespace kinetica
12 {
13 
24  {
25 
29  public IList<string> table_names { get; set; } = new List<string>();
30 
36  public IDictionary<string, string> metadata_map { get; set; } = new Dictionary<string, string>();
37 
40  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
41 
42 
46 
61  public AlterTableMetadataRequest( IList<string> table_names,
62  IDictionary<string, string> metadata_map,
63  IDictionary<string, string> options = null)
64  {
65  this.table_names = table_names ?? new List<string>();
66  this.metadata_map = metadata_map ?? new Dictionary<string, string>();
67  this.options = options ?? new Dictionary<string, string>();
68  } // end constructor
69 
70  } // end class AlterTableMetadataRequest
71 
72 
73 
78  {
79 
82  public IList<string> table_names { get; set; } = new List<string>();
83 
86  public IDictionary<string, string> metadata_map { get; set; } = new Dictionary<string, string>();
87 
89  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
90 
91  } // end class AlterTableMetadataResponse
92 
93 
94 
95 
96 } // end namespace kinetica
IDictionary< string, string > info
Additional information.
IList< string > table_names
Value of .
A set of parameters for Kinetica.alterTableMetadata(IList{string},IDictionary{string, string},IDictionary{string, string}).
AlterTableMetadataRequest()
Constructs an AlterTableMetadataRequest object with default parameters.
IDictionary< string, string > options
Optional parameters.
AlterTableMetadataRequest(IList< string > table_names, IDictionary< string, string > metadata_map, IDictionary< string, string > options=null)
Constructs an AlterTableMetadataRequest object with the specified parameters.
IList< string > table_names
Names of the tables whose metadata will be updated.
IDictionary< string, string > metadata_map
A map which contains the metadata of the tables that are to be updated.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
A set of results returned by Kinetica.alterTableMetadata(IList{string},IDictionary{string, string},IDictionary{string, string}).
IDictionary< string, string > metadata_map
Value of .