Kinetica C# API  Version 7.0.19.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
AlterRole.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 
20  {
21 
35  public struct Action
36  {
37 
41  public const string SET_RESOURCE_GROUP = "set_resource_group";
42  } // end struct Action
43 
44 
47  public string name { get; set; }
48 
60  public string action { get; set; }
61 
64  public string _value { get; set; }
65 
68  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
69 
70 
73  public AlterRoleRequest() { }
74 
97  public AlterRoleRequest( string name,
98  string action,
99  string _value,
100  IDictionary<string, string> options = null)
101  {
102  this.name = name ?? "";
103  this.action = action ?? "";
104  this._value = _value ?? "";
105  this.options = options ?? new Dictionary<string, string>();
106  } // end constructor
107 
108  } // end class AlterRoleRequest
109 
110 
111 
116  {
117 
120  public string name { get; set; }
121 
123  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
124 
125  } // end class AlterRoleResponse
126 
127 
128 
129 
130 } // end namespace kinetica
string action
Modification operation to be applied to the role.
Definition: AlterRole.cs:60
string name
Name of the role to be altered.
Definition: AlterRole.cs:47
Modification operation to be applied to the role.
Definition: AlterRole.cs:35
AlterRoleRequest(string name, string action, string _value, IDictionary< string, string > options=null)
Constructs an AlterRoleRequest object with the specified parameters.
Definition: AlterRole.cs:97
A set of results returned by Kinetica.alterRole(string,string,string,IDictionary{string, string}).
Definition: AlterRole.cs:115
A set of parameters for Kinetica.alterRole(string,string,string,IDictionary{string, string}).
Definition: AlterRole.cs:19
string _value
The value of the modification, depending on .
Definition: AlterRole.cs:64
AlterRoleRequest()
Constructs an AlterRoleRequest object with default parameters.
Definition: AlterRole.cs:73
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
IDictionary< string, string > info
Additional information.
Definition: AlterRole.cs:123
IDictionary< string, string > options
Optional parameters.
Definition: AlterRole.cs:68
string name
Value of .
Definition: AlterRole.cs:120
const string SET_RESOURCE_GROUP
Sets the resource group for an internal role.
Definition: AlterRole.cs:41