GPUdb C++ API  Version 7.0.19.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
revoke_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 __REVOKE_ROLE_H__
7 #define __REVOKE_ROLE_H__
8 
9 namespace gpudb
10 {
11 
19  {
20 
25  role(std::string()),
26  member(std::string()),
27  options(std::map<std::string, std::string>())
28  {
29  }
30 
42  RevokeRoleRequest(const std::string& role_, const std::string& member_, const std::map<std::string, std::string>& options_):
43  role( role_ ),
44  member( member_ ),
45  options( options_ )
46  {
47  }
48 
49  std::string role;
50  std::string member;
51  std::map<std::string, std::string> options;
52  };
53 }
54 
55 namespace avro
56 {
57  template<> struct codec_traits<gpudb::RevokeRoleRequest>
58  {
59  static void encode(Encoder& e, const gpudb::RevokeRoleRequest& v)
60  {
61  ::avro::encode(e, v.role);
62  ::avro::encode(e, v.member);
63  ::avro::encode(e, v.options);
64  }
65 
66  static void decode(Decoder& d, gpudb::RevokeRoleRequest& v)
67  {
68  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
69  {
70  const std::vector<size_t> fo = rd->fieldOrder();
71 
72  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
73  {
74  switch (*it)
75  {
76  case 0:
77  ::avro::decode(d, v.role);
78  break;
79 
80  case 1:
81  ::avro::decode(d, v.member);
82  break;
83 
84  case 2:
85  ::avro::decode(d, v.options);
86  break;
87 
88  default:
89  break;
90  }
91  }
92  }
93  else
94  {
95  ::avro::decode(d, v.role);
96  ::avro::decode(d, v.member);
97  ::avro::decode(d, v.options);
98  }
99  }
100  };
101 }
102 
103 namespace gpudb
104 {
105 
113  {
114 
120  role(std::string()),
121  member(std::string()),
122  info(std::map<std::string, std::string>())
123  {
124  }
125 
126  std::string role;
127  std::string member;
128  std::map<std::string, std::string> info;
129  };
130 }
131 
132 namespace avro
133 {
134  template<> struct codec_traits<gpudb::RevokeRoleResponse>
135  {
136  static void encode(Encoder& e, const gpudb::RevokeRoleResponse& v)
137  {
138  ::avro::encode(e, v.role);
139  ::avro::encode(e, v.member);
140  ::avro::encode(e, v.info);
141  }
142 
143  static void decode(Decoder& d, gpudb::RevokeRoleResponse& v)
144  {
145  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
146  {
147  const std::vector<size_t> fo = rd->fieldOrder();
148 
149  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
150  {
151  switch (*it)
152  {
153  case 0:
154  ::avro::decode(d, v.role);
155  break;
156 
157  case 1:
158  ::avro::decode(d, v.member);
159  break;
160 
161  case 2:
162  ::avro::decode(d, v.info);
163  break;
164 
165  default:
166  break;
167  }
168  }
169  }
170  else
171  {
172  ::avro::decode(d, v.role);
173  ::avro::decode(d, v.member);
174  ::avro::decode(d, v.info);
175  }
176  }
177  };
178 }
179 
180 #endif
RevokeRoleRequest(const std::string &role_, const std::string &member_, const std::map< std::string, std::string > &options_)
Constructs a RevokeRoleRequest object with the specified parameters.
Definition: revoke_role.h:42
A set of output parameters for const.
Definition: revoke_role.h:112
std::map< std::string, std::string > info
Definition: revoke_role.h:128
std::map< std::string, std::string > options
Definition: revoke_role.h:51
RevokeRoleRequest()
Constructs a RevokeRoleRequest object with default parameter values.
Definition: revoke_role.h:24
RevokeRoleResponse()
Constructs a RevokeRoleResponse object with default parameter values.
Definition: revoke_role.h:119
A set of input parameters for const.
Definition: revoke_role.h:18