DescribeStreamPredictsRequest.cc 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324
  1. /*
  2. * Copyright 2009-2017 Alibaba Cloud All rights reserved.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. #include <alibabacloud/ivision/model/DescribeStreamPredictsRequest.h>
  17. using AlibabaCloud::Ivision::Model::DescribeStreamPredictsRequest;
  18. DescribeStreamPredictsRequest::DescribeStreamPredictsRequest() :
  19. RpcServiceRequest("ivision", "2019-03-08", "DescribeStreamPredicts")
  20. {}
  21. DescribeStreamPredictsRequest::~DescribeStreamPredictsRequest()
  22. {}
  23. long DescribeStreamPredictsRequest::getResourceOwnerId()const
  24. {
  25. return resourceOwnerId_;
  26. }
  27. void DescribeStreamPredictsRequest::setResourceOwnerId(long resourceOwnerId)
  28. {
  29. resourceOwnerId_ = resourceOwnerId;
  30. setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
  31. }
  32. std::string DescribeStreamPredictsRequest::getNextPageToken()const
  33. {
  34. return nextPageToken_;
  35. }
  36. void DescribeStreamPredictsRequest::setNextPageToken(const std::string& nextPageToken)
  37. {
  38. nextPageToken_ = nextPageToken;
  39. setCoreParameter("NextPageToken", nextPageToken);
  40. }
  41. long DescribeStreamPredictsRequest::getCallerParentId()const
  42. {
  43. return callerParentId_;
  44. }
  45. void DescribeStreamPredictsRequest::setCallerParentId(long callerParentId)
  46. {
  47. callerParentId_ = callerParentId;
  48. setCoreParameter("CallerParentId", std::to_string(callerParentId));
  49. }
  50. std::string DescribeStreamPredictsRequest::getPredictIds()const
  51. {
  52. return predictIds_;
  53. }
  54. void DescribeStreamPredictsRequest::setPredictIds(const std::string& predictIds)
  55. {
  56. predictIds_ = predictIds;
  57. setCoreParameter("PredictIds", predictIds);
  58. }
  59. bool DescribeStreamPredictsRequest::getProxy_original_security_transport()const
  60. {
  61. return proxy_original_security_transport_;
  62. }
  63. void DescribeStreamPredictsRequest::setProxy_original_security_transport(bool proxy_original_security_transport)
  64. {
  65. proxy_original_security_transport_ = proxy_original_security_transport;
  66. setCoreParameter("Proxy_original_security_transport", proxy_original_security_transport ? "true" : "false");
  67. }
  68. std::string DescribeStreamPredictsRequest::getProxy_original_source_ip()const
  69. {
  70. return proxy_original_source_ip_;
  71. }
  72. void DescribeStreamPredictsRequest::setProxy_original_source_ip(const std::string& proxy_original_source_ip)
  73. {
  74. proxy_original_source_ip_ = proxy_original_source_ip;
  75. setCoreParameter("Proxy_original_source_ip", proxy_original_source_ip);
  76. }
  77. std::string DescribeStreamPredictsRequest::getOwnerIdLoginEmail()const
  78. {
  79. return ownerIdLoginEmail_;
  80. }
  81. void DescribeStreamPredictsRequest::setOwnerIdLoginEmail(const std::string& ownerIdLoginEmail)
  82. {
  83. ownerIdLoginEmail_ = ownerIdLoginEmail;
  84. setCoreParameter("OwnerIdLoginEmail", ownerIdLoginEmail);
  85. }
  86. std::string DescribeStreamPredictsRequest::getCallerType()const
  87. {
  88. return callerType_;
  89. }
  90. void DescribeStreamPredictsRequest::setCallerType(const std::string& callerType)
  91. {
  92. callerType_ = callerType;
  93. setCoreParameter("CallerType", callerType);
  94. }
  95. std::string DescribeStreamPredictsRequest::getAccessKeyId()const
  96. {
  97. return accessKeyId_;
  98. }
  99. void DescribeStreamPredictsRequest::setAccessKeyId(const std::string& accessKeyId)
  100. {
  101. accessKeyId_ = accessKeyId;
  102. setCoreParameter("AccessKeyId", accessKeyId);
  103. }
  104. std::string DescribeStreamPredictsRequest::getSecurityToken()const
  105. {
  106. return securityToken_;
  107. }
  108. void DescribeStreamPredictsRequest::setSecurityToken(const std::string& securityToken)
  109. {
  110. securityToken_ = securityToken;
  111. setCoreParameter("SecurityToken", securityToken);
  112. }
  113. std::string DescribeStreamPredictsRequest::getRegionId()const
  114. {
  115. return regionId_;
  116. }
  117. void DescribeStreamPredictsRequest::setRegionId(const std::string& regionId)
  118. {
  119. regionId_ = regionId;
  120. setCoreParameter("RegionId", regionId);
  121. }
  122. std::string DescribeStreamPredictsRequest::getRequestContent()const
  123. {
  124. return requestContent_;
  125. }
  126. void DescribeStreamPredictsRequest::setRequestContent(const std::string& requestContent)
  127. {
  128. requestContent_ = requestContent;
  129. setCoreParameter("RequestContent", requestContent);
  130. }
  131. long DescribeStreamPredictsRequest::getPageSize()const
  132. {
  133. return pageSize_;
  134. }
  135. void DescribeStreamPredictsRequest::setPageSize(long pageSize)
  136. {
  137. pageSize_ = pageSize;
  138. setCoreParameter("PageSize", std::to_string(pageSize));
  139. }
  140. std::string DescribeStreamPredictsRequest::getCallerBidEmail()const
  141. {
  142. return callerBidEmail_;
  143. }
  144. void DescribeStreamPredictsRequest::setCallerBidEmail(const std::string& callerBidEmail)
  145. {
  146. callerBidEmail_ = callerBidEmail;
  147. setCoreParameter("CallerBidEmail", callerBidEmail);
  148. }
  149. std::string DescribeStreamPredictsRequest::getCallerUidEmail()const
  150. {
  151. return callerUidEmail_;
  152. }
  153. void DescribeStreamPredictsRequest::setCallerUidEmail(const std::string& callerUidEmail)
  154. {
  155. callerUidEmail_ = callerUidEmail;
  156. setCoreParameter("CallerUidEmail", callerUidEmail);
  157. }
  158. long DescribeStreamPredictsRequest::getCallerUid()const
  159. {
  160. return callerUid_;
  161. }
  162. void DescribeStreamPredictsRequest::setCallerUid(long callerUid)
  163. {
  164. callerUid_ = callerUid;
  165. setCoreParameter("CallerUid", std::to_string(callerUid));
  166. }
  167. std::string DescribeStreamPredictsRequest::getShowLog()const
  168. {
  169. return showLog_;
  170. }
  171. void DescribeStreamPredictsRequest::setShowLog(const std::string& showLog)
  172. {
  173. showLog_ = showLog;
  174. setCoreParameter("ShowLog", showLog);
  175. }
  176. std::string DescribeStreamPredictsRequest::getApp_ip()const
  177. {
  178. return app_ip_;
  179. }
  180. void DescribeStreamPredictsRequest::setApp_ip(const std::string& app_ip)
  181. {
  182. app_ip_ = app_ip;
  183. setCoreParameter("App_ip", app_ip);
  184. }
  185. std::string DescribeStreamPredictsRequest::getPopProduct()const
  186. {
  187. return popProduct_;
  188. }
  189. void DescribeStreamPredictsRequest::setPopProduct(const std::string& popProduct)
  190. {
  191. popProduct_ = popProduct;
  192. setCoreParameter("PopProduct", popProduct);
  193. }
  194. long DescribeStreamPredictsRequest::getCurrentPage()const
  195. {
  196. return currentPage_;
  197. }
  198. void DescribeStreamPredictsRequest::setCurrentPage(long currentPage)
  199. {
  200. currentPage_ = currentPage;
  201. setCoreParameter("CurrentPage", std::to_string(currentPage));
  202. }
  203. std::string DescribeStreamPredictsRequest::getCallerBid()const
  204. {
  205. return callerBid_;
  206. }
  207. void DescribeStreamPredictsRequest::setCallerBid(const std::string& callerBid)
  208. {
  209. callerBid_ = callerBid;
  210. setCoreParameter("CallerBid", callerBid);
  211. }
  212. long DescribeStreamPredictsRequest::getOwnerId()const
  213. {
  214. return ownerId_;
  215. }
  216. void DescribeStreamPredictsRequest::setOwnerId(long ownerId)
  217. {
  218. ownerId_ = ownerId;
  219. setCoreParameter("OwnerId", std::to_string(ownerId));
  220. }
  221. std::string DescribeStreamPredictsRequest::getVersion()const
  222. {
  223. return version_;
  224. }
  225. void DescribeStreamPredictsRequest::setVersion(const std::string& version)
  226. {
  227. version_ = version;
  228. setCoreParameter("Version", version);
  229. }
  230. bool DescribeStreamPredictsRequest::getProxy_trust_transport_info()const
  231. {
  232. return proxy_trust_transport_info_;
  233. }
  234. void DescribeStreamPredictsRequest::setProxy_trust_transport_info(bool proxy_trust_transport_info)
  235. {
  236. proxy_trust_transport_info_ = proxy_trust_transport_info;
  237. setCoreParameter("Proxy_trust_transport_info", proxy_trust_transport_info ? "true" : "false");
  238. }
  239. bool DescribeStreamPredictsRequest::getAk_mfa_present()const
  240. {
  241. return ak_mfa_present_;
  242. }
  243. void DescribeStreamPredictsRequest::setAk_mfa_present(bool ak_mfa_present)
  244. {
  245. ak_mfa_present_ = ak_mfa_present;
  246. setCoreParameter("Ak_mfa_present", ak_mfa_present ? "true" : "false");
  247. }
  248. bool DescribeStreamPredictsRequest::getSecurity_transport()const
  249. {
  250. return security_transport_;
  251. }
  252. void DescribeStreamPredictsRequest::setSecurity_transport(bool security_transport)
  253. {
  254. security_transport_ = security_transport;
  255. setCoreParameter("Security_transport", security_transport ? "true" : "false");
  256. }
  257. std::string DescribeStreamPredictsRequest::getRequestId()const
  258. {
  259. return requestId_;
  260. }
  261. void DescribeStreamPredictsRequest::setRequestId(const std::string& requestId)
  262. {
  263. requestId_ = requestId;
  264. setCoreParameter("RequestId", requestId);
  265. }