Kinetica   C#   API  Version 7.2.3.1
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 
19 {
26  public IList<string> table_names { get; set; } = new List<string>();
27 
34  public IDictionary<string, string> metadata_map { get; set; } = new Dictionary<string, string>();
35 
39  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
40 
44 
60  public AlterTableMetadataRequest( IList<string> table_names,
61  IDictionary<string, string> metadata_map,
62  IDictionary<string, string> options = null)
63  {
64  this.table_names = table_names ?? new List<string>();
65  this.metadata_map = metadata_map ?? new Dictionary<string, string>();
66  this.options = options ?? new Dictionary<string, string>();
67  } // end constructor
68 } // end class AlterTableMetadataRequest
69 
74 {
78  public IList<string> table_names { get; set; } = new List<string>();
79 
83  public IDictionary<string, string> metadata_map { get; set; } = new Dictionary<string, string>();
84 
86  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
87 } // end class AlterTableMetadataResponse
A set of results returned by Kinetica.alterTableMetadata.
IDictionary< string, string > options
Optional parameters.
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
IList< string > table_names
Value of table_names.
IDictionary< string, string > info
Additional information.
A set of parameters for Kinetica.alterTableMetadata.
IList< string > table_names
Names of the tables whose metadata will be updated, in [schema_name.
AlterTableMetadataRequest()
Constructs an AlterTableMetadataRequest object with default parameters.
IDictionary< string, string > metadata_map
Value of metadata_map.
AlterTableMetadataRequest(IList< string > table_names, IDictionary< string, string > metadata_map, IDictionary< string, string > options=null)
Constructs an AlterTableMetadataRequest object with the specified parameters.