7 using System.Collections.Generic;
17 public class AlterSchemaRequest : KineticaData
56 public string action {
get;
set; }
63 public string _value {
get;
set; }
68 public IDictionary<string, string>
options {
get;
set; } =
new Dictionary<string, string>();
106 IDictionary<string, string>
options =
null)
109 this.action =
action ??
"";
110 this._value =
_value ??
"";
118 public class AlterSchemaResponse : KineticaData
125 public IDictionary<string, string>
info {
get;
set; } =
new Dictionary<string, string>();
string schema_name
Value of schema_name.
const string RENAME_SCHEMA
Renames a schema to _value.
AlterSchemaRequest()
Constructs an AlterSchemaRequest object with default parameters.
string schema_name
Name of the schema to be altered.
IDictionary< string, string > options
Optional parameters.
string action
Modification operation to be applied.
const string ADD_COMMENT
Adds a comment describing the schema
AlterSchemaRequest(string schema_name, string action, string _value, IDictionary< string, string > options=null)
Constructs an AlterSchemaRequest object with the specified parameters.
IDictionary< string, string > info
Additional information.
string _value
The value of the modification, depending on action.