Kinetica   C#   API  Version 7.2.3.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 namespace kinetica
10 {
16  {
19  public string name { get; set; }
20 
24  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
25 
28  public DeleteRoleRequest() { }
29 
37  public DeleteRoleRequest( string name,
38  IDictionary<string, string> options = null)
39  {
40  this.name = name ?? "";
41  this.options = options ?? new Dictionary<string, string>();
42  } // end constructor
43  } // end class DeleteRoleRequest
44 
49  {
52  public string name { get; set; }
53 
55  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
56  } // end class DeleteRoleResponse
57 } // end namespace kinetica
A set of parameters for Kinetica.deleteRole.
Definition: DeleteRole.cs:15
DeleteRoleRequest()
Constructs a DeleteRoleRequest object with default parameters.
Definition: DeleteRole.cs:28
string name
Name of the role to be deleted.
Definition: DeleteRole.cs:19
DeleteRoleRequest(string name, IDictionary< string, string > options=null)
Constructs a DeleteRoleRequest object with the specified parameters.
Definition: DeleteRole.cs:37
A set of results returned by Kinetica.deleteRole.
Definition: DeleteRole.cs:48
IDictionary< string, string > info
Additional information.
Definition: DeleteRole.cs:55
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
string name
Value of name.
Definition: DeleteRole.cs:52
IDictionary< string, string > options
Optional parameters.
Definition: DeleteRole.cs:24