GPUdb C++ API  Version 7.0.19.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
admin_alter_jobs.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 __ADMIN_ALTER_JOBS_H__
7 #define __ADMIN_ALTER_JOBS_H__
8 
9 namespace gpudb
10 {
11 
24  {
25 
31  jobIds(std::vector<int64_t>()),
32  action(std::string()),
33  options(std::map<std::string, std::string>())
34  {
35  }
36 
50  AdminAlterJobsRequest(const std::vector<int64_t>& jobIds_, const std::string& action_, const std::map<std::string, std::string>& options_):
51  jobIds( jobIds_ ),
52  action( action_ ),
53  options( options_ )
54  {
55  }
56 
57  std::vector<int64_t> jobIds;
58  std::string action;
59  std::map<std::string, std::string> options;
60  };
61 }
62 
63 namespace avro
64 {
65  template<> struct codec_traits<gpudb::AdminAlterJobsRequest>
66  {
67  static void encode(Encoder& e, const gpudb::AdminAlterJobsRequest& v)
68  {
69  ::avro::encode(e, v.jobIds);
70  ::avro::encode(e, v.action);
71  ::avro::encode(e, v.options);
72  }
73 
74  static void decode(Decoder& d, gpudb::AdminAlterJobsRequest& v)
75  {
76  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
77  {
78  const std::vector<size_t> fo = rd->fieldOrder();
79 
80  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
81  {
82  switch (*it)
83  {
84  case 0:
85  ::avro::decode(d, v.jobIds);
86  break;
87 
88  case 1:
89  ::avro::decode(d, v.action);
90  break;
91 
92  case 2:
93  ::avro::decode(d, v.options);
94  break;
95 
96  default:
97  break;
98  }
99  }
100  }
101  else
102  {
103  ::avro::decode(d, v.jobIds);
104  ::avro::decode(d, v.action);
105  ::avro::decode(d, v.options);
106  }
107  }
108  };
109 }
110 
111 namespace gpudb
112 {
113 
126  {
127 
133  jobIds(std::vector<int64_t>()),
134  action(std::string()),
135  status(std::vector<std::string>()),
136  info(std::map<std::string, std::string>())
137  {
138  }
139 
140  std::vector<int64_t> jobIds;
141  std::string action;
142  std::vector<std::string> status;
143  std::map<std::string, std::string> info;
144  };
145 }
146 
147 namespace avro
148 {
149  template<> struct codec_traits<gpudb::AdminAlterJobsResponse>
150  {
151  static void encode(Encoder& e, const gpudb::AdminAlterJobsResponse& v)
152  {
153  ::avro::encode(e, v.jobIds);
154  ::avro::encode(e, v.action);
155  ::avro::encode(e, v.status);
156  ::avro::encode(e, v.info);
157  }
158 
159  static void decode(Decoder& d, gpudb::AdminAlterJobsResponse& v)
160  {
161  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
162  {
163  const std::vector<size_t> fo = rd->fieldOrder();
164 
165  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
166  {
167  switch (*it)
168  {
169  case 0:
170  ::avro::decode(d, v.jobIds);
171  break;
172 
173  case 1:
174  ::avro::decode(d, v.action);
175  break;
176 
177  case 2:
178  ::avro::decode(d, v.status);
179  break;
180 
181  case 3:
182  ::avro::decode(d, v.info);
183  break;
184 
185  default:
186  break;
187  }
188  }
189  }
190  else
191  {
192  ::avro::decode(d, v.jobIds);
193  ::avro::decode(d, v.action);
194  ::avro::decode(d, v.status);
195  ::avro::decode(d, v.info);
196  }
197  }
198  };
199 }
200 
201 #endif
A set of output parameters for const.
std::map< std::string, std::string > info
std::vector< int64_t > jobIds
AdminAlterJobsRequest(const std::vector< int64_t > &jobIds_, const std::string &action_, const std::map< std::string, std::string > &options_)
Constructs an AdminAlterJobsRequest object with the specified parameters.
std::map< std::string, std::string > options
std::vector< int64_t > jobIds
std::vector< std::string > status
A set of input parameters for const.
AdminAlterJobsRequest()
Constructs an AdminAlterJobsRequest object with default parameter values.
AdminAlterJobsResponse()
Constructs an AdminAlterJobsResponse object with default parameter values.