Kinetica C# API  Version 7.1.10.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 
25  {
26 
32  public IList<string> table_names { get; set; } = new List<string>();
33 
39  public IDictionary<string, string> metadata_map { get; set; } = new Dictionary<string, string>();
40 
43  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
44 
45 
49 
66  public AlterTableMetadataRequest( IList<string> table_names,
67  IDictionary<string, string> metadata_map,
68  IDictionary<string, string> options = null)
69  {
70  this.table_names = table_names ?? new List<string>();
71  this.metadata_map = metadata_map ?? new Dictionary<string, string>();
72  this.options = options ?? new Dictionary<string, string>();
73  } // end constructor
74 
75  } // end class AlterTableMetadataRequest
76 
77 
78 
83  {
84 
87  public IList<string> table_names { get; set; } = new List<string>();
88 
91  public IDictionary<string, string> metadata_map { get; set; } = new Dictionary<string, string>();
92 
94  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
95 
96  } // end class AlterTableMetadataResponse
97 
98 
99 
100 
101 } // 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, in [schema_name.
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 .