Kinetica C# API  Version 7.0.19.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
CreateRole.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 
33  public struct Options
34  {
35 
38  public const string RESOURCE_GROUP = "resource_group";
39  } // end struct Options
40 
41 
46  public string name { get; set; }
47 
58  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
59 
60 
63  public CreateRoleRequest() { }
64 
83  public CreateRoleRequest( string name,
84  IDictionary<string, string> options = null)
85  {
86  this.name = name ?? "";
87  this.options = options ?? new Dictionary<string, string>();
88  } // end constructor
89 
90  } // end class CreateRoleRequest
91 
92 
93 
98  {
99 
102  public string name { get; set; }
103 
105  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
106 
107  } // end class CreateRoleResponse
108 
109 
110 
111 
112 } // end namespace kinetica
const string RESOURCE_GROUP
Name of an existing resource group to associate with this user
Definition: CreateRole.cs:38
IDictionary< string, string > info
Additional information.
Definition: CreateRole.cs:105
CreateRoleRequest()
Constructs a CreateRoleRequest object with default parameters.
Definition: CreateRole.cs:63
A set of results returned by Kinetica.createRole(string,IDictionary{string, string}).
Definition: CreateRole.cs:97
IDictionary< string, string > options
Optional parameters.
Definition: CreateRole.cs:58
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
string name
Value of .
Definition: CreateRole.cs:102
CreateRoleRequest(string name, IDictionary< string, string > options=null)
Constructs a CreateRoleRequest object with the specified parameters.
Definition: CreateRole.cs:83
A set of parameters for Kinetica.createRole(string,IDictionary{string, string}).
Definition: CreateRole.cs:18
string name
Name of the role to be created.
Definition: CreateRole.cs:46