Kinetica   C#   API  Version 7.2.3.1
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 
99  IDictionary<string, string> options = null)
100  {
101  this.name = name ?? "";
102  this.options = options ?? new Dictionary<string, string>();
103  } // end constructor
104 } // end class DeleteResourceGroupRequest
105 
110 {
113  public string name { get; set; }
114 
116  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
117 } // end class DeleteResourceGroupResponse
IDictionary< string, string > options
Optional parameters.
string name
Name of the resource group to be deleted.
A set of string constants for the parameter options.
const string CASCADE_DELETE
If TRUE, delete any existing entities owned by this group.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
IDictionary< string, string > info
Additional information.
DeleteResourceGroupRequest(string name, IDictionary< string, string > options=null)
Constructs a DeleteResourceGroupRequest object with the specified parameters.
A set of results returned by Kinetica.deleteResourceGroup.
DeleteResourceGroupRequest()
Constructs a DeleteResourceGroupRequest object with default parameters.
A set of parameters for Kinetica.deleteResourceGroup.