Kinetica   C#   API  Version 7.2.3.0
ClearTables.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 {
18  public class ClearTablesRequest : KineticaData
19  {
23  public struct Options
24  {
39  public const string NO_ERROR_IF_NOT_EXISTS = "no_error_if_not_exists";
40 
41  public const string TRUE = "true";
42  public const string FALSE = "false";
43  } // end struct Options
44 
53  public IList<string> table_names { get; set; } = new List<string>();
54 
81  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
82 
85  public ClearTablesRequest() { }
86 
123  public ClearTablesRequest( IList<string> table_names = null,
124  IDictionary<string, string> options = null)
125  {
126  this.table_names = table_names ?? new List<string>();
127  this.options = options ?? new Dictionary<string, string>();
128  } // end constructor
129  } // end class ClearTablesRequest
130 
134  public class ClearTablesResponse : KineticaData
135  {
140  public IDictionary<string, string> tables { get; set; } = new Dictionary<string, string>();
141 
143  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
144  } // end class ClearTablesResponse
145 } // end namespace kinetica
ClearTablesRequest(IList< string > table_names=null, IDictionary< string, string > options=null)
Constructs a ClearTablesRequest object with the specified parameters.
Definition: ClearTables.cs:123
IDictionary< string, string > options
Optional parameters.
Definition: ClearTables.cs:81
IList< string > table_names
Names of the tables to be cleared, in [schema_name.
Definition: ClearTables.cs:53
IDictionary< string, string > tables
For each table in table_names, any error from the clear operation, or an empty string if successful.
Definition: ClearTables.cs:140
const string NO_ERROR_IF_NOT_EXISTS
If TRUE and if a table specified in table_names does not exist no error is returned.
Definition: ClearTables.cs:39
ClearTablesRequest()
Constructs a ClearTablesRequest object with default parameters.
Definition: ClearTables.cs:85
IDictionary< string, string > info
Additional information.
Definition: ClearTables.cs:143