Kinetica C# API  Version 6.0.1.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 
22  {
23 
27  public IList<string> table_names { get; set; } = new List<string>();
28 
34  public IDictionary<string, string> metadata_map { get; set; } = new Dictionary<string, string>();
35 
37  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
38 
39 
43 
57  public AlterTableMetadataRequest( IList<string> table_names,
58  IDictionary<string, string> metadata_map,
59  IDictionary<string, string> options = null)
60  {
61  this.table_names = table_names ?? new List<string>();
62  this.metadata_map = metadata_map ?? new Dictionary<string, string>();
63  this.options = options ?? new Dictionary<string, string>();
64  } // end constructor
65 
66  } // end class AlterTableMetadataRequest
67 
68 
69 
72  {
73 
76  public IList<string> table_names { get; set; } = new List<string>();
77 
80  public IDictionary<string, string> metadata_map { get; set; } = new Dictionary<string, string>();
81 
82  } // end class AlterTableMetadataResponse
83 
84 
85 
86 
87 } // end namespace kinetica
IList< string > table_names
Value of .
A set of parameters for /alter/table/metadata.
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 /alter/table/metadata.
IDictionary< string, string > metadata_map
Value of .