CreateUploadTokenRequest.h 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  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. #ifndef ALIBABACLOUD_IVISION_MODEL_CREATEUPLOADTOKENREQUEST_H_
  17. #define ALIBABACLOUD_IVISION_MODEL_CREATEUPLOADTOKENREQUEST_H_
  18. #include <string>
  19. #include <vector>
  20. #include <alibabacloud/core/RpcServiceRequest.h>
  21. #include <alibabacloud/ivision/IvisionExport.h>
  22. namespace AlibabaCloud
  23. {
  24. namespace Ivision
  25. {
  26. namespace Model
  27. {
  28. class ALIBABACLOUD_IVISION_EXPORT CreateUploadTokenRequest : public RpcServiceRequest
  29. {
  30. public:
  31. CreateUploadTokenRequest();
  32. ~CreateUploadTokenRequest();
  33. long getResourceOwnerId()const;
  34. void setResourceOwnerId(long resourceOwnerId);
  35. long getCallerParentId()const;
  36. void setCallerParentId(long callerParentId);
  37. bool getProxy_original_security_transport()const;
  38. void setProxy_original_security_transport(bool proxy_original_security_transport);
  39. std::string getProxy_original_source_ip()const;
  40. void setProxy_original_source_ip(const std::string& proxy_original_source_ip);
  41. std::string getOwnerIdLoginEmail()const;
  42. void setOwnerIdLoginEmail(const std::string& ownerIdLoginEmail);
  43. std::string getCallerType()const;
  44. void setCallerType(const std::string& callerType);
  45. std::string getAccessKeyId()const;
  46. void setAccessKeyId(const std::string& accessKeyId);
  47. std::string getSecurityToken()const;
  48. void setSecurityToken(const std::string& securityToken);
  49. std::string getRegionId()const;
  50. void setRegionId(const std::string& regionId);
  51. std::string getRequestContent()const;
  52. void setRequestContent(const std::string& requestContent);
  53. std::string getCallerBidEmail()const;
  54. void setCallerBidEmail(const std::string& callerBidEmail);
  55. std::string getProjectId()const;
  56. void setProjectId(const std::string& projectId);
  57. std::string getCallerUidEmail()const;
  58. void setCallerUidEmail(const std::string& callerUidEmail);
  59. long getCallerUid()const;
  60. void setCallerUid(long callerUid);
  61. std::string getShowLog()const;
  62. void setShowLog(const std::string& showLog);
  63. std::string getApp_ip()const;
  64. void setApp_ip(const std::string& app_ip);
  65. std::string getPopProduct()const;
  66. void setPopProduct(const std::string& popProduct);
  67. std::string getCallerBid()const;
  68. void setCallerBid(const std::string& callerBid);
  69. long getOwnerId()const;
  70. void setOwnerId(long ownerId);
  71. std::string getVersion()const;
  72. void setVersion(const std::string& version);
  73. bool getProxy_trust_transport_info()const;
  74. void setProxy_trust_transport_info(bool proxy_trust_transport_info);
  75. bool getAk_mfa_present()const;
  76. void setAk_mfa_present(bool ak_mfa_present);
  77. bool getSecurity_transport()const;
  78. void setSecurity_transport(bool security_transport);
  79. std::string getFileName()const;
  80. void setFileName(const std::string& fileName);
  81. std::string getRequestId()const;
  82. void setRequestId(const std::string& requestId);
  83. private:
  84. long resourceOwnerId_;
  85. long callerParentId_;
  86. bool proxy_original_security_transport_;
  87. std::string proxy_original_source_ip_;
  88. std::string ownerIdLoginEmail_;
  89. std::string callerType_;
  90. std::string accessKeyId_;
  91. std::string securityToken_;
  92. std::string regionId_;
  93. std::string requestContent_;
  94. std::string callerBidEmail_;
  95. std::string projectId_;
  96. std::string callerUidEmail_;
  97. long callerUid_;
  98. std::string showLog_;
  99. std::string app_ip_;
  100. std::string popProduct_;
  101. std::string callerBid_;
  102. long ownerId_;
  103. std::string version_;
  104. bool proxy_trust_transport_info_;
  105. bool ak_mfa_present_;
  106. bool security_transport_;
  107. std::string fileName_;
  108. std::string requestId_;
  109. };
  110. }
  111. }
  112. }
  113. #endif // !ALIBABACLOUD_IVISION_MODEL_CREATEUPLOADTOKENREQUEST_H_