Kinetica C# API  Version 6.1.0.0
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 
19  {
20 
23  public string name { get; set; }
24 
26  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
27 
28 
31  public DeleteRoleRequest() { }
32 
40  public DeleteRoleRequest( string name,
41  IDictionary<string, string> options)
42  {
43  this.name = name ?? "";
44  this.options = options ?? new Dictionary<string, string>();
45  } // end constructor
46 
47  } // end class DeleteRoleRequest
48 
49 
50 
55  {
56 
59  public string name { get; set; }
60 
61  } // end class DeleteRoleResponse
62 
63 
64 
65 
66 } // end namespace kinetica
A set of parameters for Kinetica.deleteRole(string,IDictionary<string, string>).
Definition: DeleteRole.cs:18
DeleteRoleRequest()
Constructs a DeleteRoleRequest object with default parameters.
Definition: DeleteRole.cs:31
DeleteRoleRequest(string name, IDictionary< string, string > options)
Constructs a DeleteRoleRequest object with the specified parameters.
Definition: DeleteRole.cs:40
string name
Name of the role to be deleted.
Definition: DeleteRole.cs:23
A set of results returned by Kinetica.deleteRole(string,IDictionary<string, string>).
Definition: DeleteRole.cs:54
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
IDictionary< string, string > options
Optional parameters.
Definition: DeleteRole.cs:26