Kinetica C# API  Version 7.1.10.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
DeleteResourceGroup.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 
48  public struct Options
49  {
50 
67  public const string CASCADE_DELETE = "cascade_delete";
68  public const string TRUE = "true";
69  public const string FALSE = "false";
70  } // end struct Options
71 
72 
74  public string name { get; set; }
75 
100  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
101 
102 
106 
138  IDictionary<string, string> options = null)
139  {
140  this.name = name ?? "";
141  this.options = options ?? new Dictionary<string, string>();
142  } // end constructor
143 
144  } // end class DeleteResourceGroupRequest
145 
146 
147 
152  {
153 
156  public string name { get; set; }
157 
159  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
160 
161  } // end class DeleteResourceGroupResponse
162 
163 
164 
165 
166 } // end namespace kinetica
DeleteResourceGroupRequest(string name, IDictionary< string, string > options=null)
Constructs a DeleteResourceGroupRequest object with the specified parameters.
A set of parameters for Kinetica.deleteResourceGroup(string,IDictionary{string, string}).
IDictionary< string, string > info
Additional information.
IDictionary< string, string > options
Optional parameters.
A set of results returned by Kinetica.deleteResourceGroup(string,IDictionary{string, string}).
DeleteResourceGroupRequest()
Constructs a DeleteResourceGroupRequest object with default parameters.
string name
Name of the resource group to be deleted.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
const string CASCADE_DELETE
If true, delete any existing entities owned by this group.