Kinetica C# API  Version 6.1.0.0
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 
39  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
40 
41 
45 
59  public AlterTableMetadataRequest( IList<string> table_names,
60  IDictionary<string, string> metadata_map,
61  IDictionary<string, string> options = null)
62  {
63  this.table_names = table_names ?? new List<string>();
64  this.metadata_map = metadata_map ?? new Dictionary<string, string>();
65  this.options = options ?? new Dictionary<string, string>();
66  } // end constructor
67 
68  } // end class AlterTableMetadataRequest
69 
70 
71 
76  {
77 
80  public IList<string> table_names { get; set; } = new List<string>();
81 
84  public IDictionary<string, string> metadata_map { get; set; } = new Dictionary<string, string>();
85 
86  } // end class AlterTableMetadataResponse
87 
88 
89 
90 
91 } // end namespace kinetica
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>).