GPUdb C++ API  Version 7.0.19.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
delete_resource_group.h
Go to the documentation of this file.
1 /*
2  * This file was autogenerated by the GPUdb schema processor.
3  *
4  * DO NOT EDIT DIRECTLY.
5  */
6 #ifndef __DELETE_RESOURCE_GROUP_H__
7 #define __DELETE_RESOURCE_GROUP_H__
8 
9 namespace gpudb
10 {
11 
19  {
20 
26  name(std::string()),
27  options(std::map<std::string, std::string>())
28  {
29  }
30 
39  DeleteResourceGroupRequest(const std::string& name_, const std::map<std::string, std::string>& options_):
40  name( name_ ),
41  options( options_ )
42  {
43  }
44 
45  std::string name;
46  std::map<std::string, std::string> options;
47  };
48 }
49 
50 namespace avro
51 {
52  template<> struct codec_traits<gpudb::DeleteResourceGroupRequest>
53  {
54  static void encode(Encoder& e, const gpudb::DeleteResourceGroupRequest& v)
55  {
56  ::avro::encode(e, v.name);
57  ::avro::encode(e, v.options);
58  }
59 
60  static void decode(Decoder& d, gpudb::DeleteResourceGroupRequest& v)
61  {
62  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
63  {
64  const std::vector<size_t> fo = rd->fieldOrder();
65 
66  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
67  {
68  switch (*it)
69  {
70  case 0:
71  ::avro::decode(d, v.name);
72  break;
73 
74  case 1:
75  ::avro::decode(d, v.options);
76  break;
77 
78  default:
79  break;
80  }
81  }
82  }
83  else
84  {
85  ::avro::decode(d, v.name);
86  ::avro::decode(d, v.options);
87  }
88  }
89  };
90 }
91 
92 namespace gpudb
93 {
94 
102  {
103 
109  name(std::string()),
110  info(std::map<std::string, std::string>())
111  {
112  }
113 
114  std::string name;
115  std::map<std::string, std::string> info;
116  };
117 }
118 
119 namespace avro
120 {
121  template<> struct codec_traits<gpudb::DeleteResourceGroupResponse>
122  {
123  static void encode(Encoder& e, const gpudb::DeleteResourceGroupResponse& v)
124  {
125  ::avro::encode(e, v.name);
126  ::avro::encode(e, v.info);
127  }
128 
129  static void decode(Decoder& d, gpudb::DeleteResourceGroupResponse& v)
130  {
131  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
132  {
133  const std::vector<size_t> fo = rd->fieldOrder();
134 
135  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
136  {
137  switch (*it)
138  {
139  case 0:
140  ::avro::decode(d, v.name);
141  break;
142 
143  case 1:
144  ::avro::decode(d, v.info);
145  break;
146 
147  default:
148  break;
149  }
150  }
151  }
152  else
153  {
154  ::avro::decode(d, v.name);
155  ::avro::decode(d, v.info);
156  }
157  }
158  };
159 }
160 
161 #endif
DeleteResourceGroupRequest()
Constructs a DeleteResourceGroupRequest object with default parameter values.
std::map< std::string, std::string > info
DeleteResourceGroupRequest(const std::string &name_, const std::map< std::string, std::string > &options_)
Constructs a DeleteResourceGroupRequest object with the specified parameters.
std::map< std::string, std::string > options
DeleteResourceGroupResponse()
Constructs a DeleteResourceGroupResponse object with default parameter values.
A set of input parameters for const.
A set of output parameters for const.