GPUdb C++ API  Version 6.2.0.3
admin_show_alerts.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_SHOW_ALERTS_H__
7 #define __ADMIN_SHOW_ALERTS_H__
8 
9 namespace gpudb
10 {
11 
21  {
22 
28  numAlerts(int32_t()),
29  options(std::map<std::string, std::string>())
30  {
31  }
32 
44  AdminShowAlertsRequest(const int32_t numAlerts_, const std::map<std::string, std::string>& options_):
45  numAlerts( numAlerts_ ),
46  options( options_ )
47  {
48  }
49 
50  int32_t numAlerts;
51  std::map<std::string, std::string> options;
52  };
53 }
54 
55 namespace avro
56 {
57  template<> struct codec_traits<gpudb::AdminShowAlertsRequest>
58  {
59  static void encode(Encoder& e, const gpudb::AdminShowAlertsRequest& v)
60  {
61  ::avro::encode(e, v.numAlerts);
62  ::avro::encode(e, v.options);
63  }
64 
65  static void decode(Decoder& d, gpudb::AdminShowAlertsRequest& v)
66  {
67  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
68  {
69  const std::vector<size_t> fo = rd->fieldOrder();
70 
71  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
72  {
73  switch (*it)
74  {
75  case 0:
76  ::avro::decode(d, v.numAlerts);
77  break;
78 
79  case 1:
80  ::avro::decode(d, v.options);
81  break;
82 
83  default:
84  break;
85  }
86  }
87  }
88  else
89  {
90  ::avro::decode(d, v.numAlerts);
91  ::avro::decode(d, v.options);
92  }
93  }
94  };
95 }
96 
97 namespace gpudb
98 {
99 
109  {
110 
116  timestamps(std::vector<std::string>()),
117  types(std::vector<std::string>()),
118  params(std::vector<std::map<std::string, std::string> >())
119  {
120  }
121 
122  std::vector<std::string> timestamps;
123  std::vector<std::string> types;
124  std::vector<std::map<std::string, std::string> > params;
125  };
126 }
127 
128 namespace avro
129 {
130  template<> struct codec_traits<gpudb::AdminShowAlertsResponse>
131  {
132  static void encode(Encoder& e, const gpudb::AdminShowAlertsResponse& v)
133  {
134  ::avro::encode(e, v.timestamps);
135  ::avro::encode(e, v.types);
136  ::avro::encode(e, v.params);
137  }
138 
139  static void decode(Decoder& d, gpudb::AdminShowAlertsResponse& v)
140  {
141  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
142  {
143  const std::vector<size_t> fo = rd->fieldOrder();
144 
145  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
146  {
147  switch (*it)
148  {
149  case 0:
150  ::avro::decode(d, v.timestamps);
151  break;
152 
153  case 1:
154  ::avro::decode(d, v.types);
155  break;
156 
157  case 2:
158  ::avro::decode(d, v.params);
159  break;
160 
161  default:
162  break;
163  }
164  }
165  }
166  else
167  {
168  ::avro::decode(d, v.timestamps);
169  ::avro::decode(d, v.types);
170  ::avro::decode(d, v.params);
171  }
172  }
173  };
174 }
175 
176 #endif
std::map< std::string, std::string > options
AdminShowAlertsRequest(const int32_t numAlerts_, const std::map< std::string, std::string > &options_)
Constructs an AdminShowAlertsRequest object with the specified parameters.
std::vector< std::string > timestamps
std::vector< std::string > types
AdminShowAlertsResponse()
Constructs an AdminShowAlertsResponse object with default parameter values.
std::vector< std::map< std::string, std::string > > params
AdminShowAlertsRequest()
Constructs an AdminShowAlertsRequest object with default parameter values.
A set of input parameters for adminShowAlerts(const AdminShowAlertsRequest&) const.
A set of output parameters for adminShowAlerts(const AdminShowAlertsRequest&) const.