Kinetica   C#   API  Version 7.2.3.0
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 namespace kinetica
10 {
16  {
20  public struct Options
21  {
35  public const string CASCADE_DELETE = "cascade_delete";
36 
37  public const string TRUE = "true";
38  public const string FALSE = "false";
39  } // end struct Options
40 
42  public string name { get; set; }
43 
66  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
67 
71 
100  IDictionary<string, string> options = null)
101  {
102  this.name = name ?? "";
103  this.options = options ?? new Dictionary<string, string>();
104  } // end constructor
105  } // end class DeleteResourceGroupRequest
106 
111  {
114  public string name { get; set; }
115 
117  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
118  } // end class DeleteResourceGroupResponse
119 } // 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.
IDictionary< string, string > info
Additional information.
A set of string constants for the parameter options.
IDictionary< string, string > options
Optional parameters.
A set of results returned by Kinetica.deleteResourceGroup.
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.