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