Kinetica C# API  Version 6.0.1.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
DeleteRole.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 
18  {
19 
22  public string name { get; set; }
23 
25  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
26 
27 
30  public DeleteRoleRequest() { }
31 
39  public DeleteRoleRequest( string name,
40  IDictionary<string, string> options)
41  {
42  this.name = name ?? "";
43  this.options = options ?? new Dictionary<string, string>();
44  } // end constructor
45 
46  } // end class DeleteRoleRequest
47 
48 
49 
52  {
53 
56  public string name { get; set; }
57 
58  } // end class DeleteRoleResponse
59 
60 
61 
62 
63 } // end namespace kinetica
A set of parameters for /delete/role.
Definition: DeleteRole.cs:17
DeleteRoleRequest()
Constructs a DeleteRoleRequest object with default parameters.
Definition: DeleteRole.cs:30
DeleteRoleRequest(string name, IDictionary< string, string > options)
Constructs a DeleteRoleRequest object with the specified parameters.
Definition: DeleteRole.cs:39
string name
Name of the role to be deleted.
Definition: DeleteRole.cs:22
A set of results returned by /delete/role.
Definition: DeleteRole.cs:51
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
string name
Value of .
Definition: DeleteRole.cs:56
IDictionary< string, string > options
Optional parameters.
Definition: DeleteRole.cs:25