Kinetica   C#   API  Version 7.2.3.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 namespace kinetica
10 {
20  {
27  public IList<string> table_names { get; set; } = new List<string>();
28 
35  public IDictionary<string, string> metadata_map { get; set; } = new Dictionary<string, string>();
36 
40  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
41 
45 
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  } // end class AlterTableMetadataRequest
70 
75  {
79  public IList<string> table_names { get; set; } = new List<string>();
80 
84  public IDictionary<string, string> metadata_map { get; set; } = new Dictionary<string, string>();
85 
87  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
88  } // end class AlterTableMetadataResponse
89 } // end namespace kinetica
IDictionary< string, string > info
Additional information.
IList< string > table_names
Value of table_names.
A set of parameters for Kinetica.alterTableMetadata.
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.
IDictionary< string, string > metadata_map
Value of metadata_map.