DescribeEventsRequest.h 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  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_ECS_MODEL_DESCRIBEEVENTSREQUEST_H_
  17. #define ALIBABACLOUD_ECS_MODEL_DESCRIBEEVENTSREQUEST_H_
  18. #include <string>
  19. #include <vector>
  20. #include <alibabacloud/core/RpcServiceRequest.h>
  21. #include <alibabacloud/ecs/EcsExport.h>
  22. namespace AlibabaCloud
  23. {
  24. namespace Ecs
  25. {
  26. namespace Model
  27. {
  28. class ALIBABACLOUD_ECS_EXPORT DescribeEventsRequest : public RpcServiceRequest
  29. {
  30. public:
  31. DescribeEventsRequest();
  32. ~DescribeEventsRequest();
  33. std::string getEventId()const;
  34. void setEventId(const std::string& eventId);
  35. long getResourceOwnerId()const;
  36. void setResourceOwnerId(long resourceOwnerId);
  37. long getCallerParentId()const;
  38. void setCallerParentId(long callerParentId);
  39. bool getProxy_original_security_transport()const;
  40. void setProxy_original_security_transport(bool proxy_original_security_transport);
  41. std::string getProxy_original_source_ip()const;
  42. void setProxy_original_source_ip(const std::string& proxy_original_source_ip);
  43. std::string getOwnerIdLoginEmail()const;
  44. void setOwnerIdLoginEmail(const std::string& ownerIdLoginEmail);
  45. std::string getCallerType()const;
  46. void setCallerType(const std::string& callerType);
  47. int getPageNumber()const;
  48. void setPageNumber(int pageNumber);
  49. std::string getAccessKeyId()const;
  50. void setAccessKeyId(const std::string& accessKeyId);
  51. std::string getSecurityToken()const;
  52. void setSecurityToken(const std::string& securityToken);
  53. std::string getRegionId()const;
  54. void setRegionId(const std::string& regionId);
  55. bool getEnable()const;
  56. void setEnable(bool enable);
  57. std::string getRequestContent()const;
  58. void setRequestContent(const std::string& requestContent);
  59. int getPageSize()const;
  60. void setPageSize(int pageSize);
  61. std::string getCallerBidEmail()const;
  62. void setCallerBidEmail(const std::string& callerBidEmail);
  63. std::string getPlanTime()const;
  64. void setPlanTime(const std::string& planTime);
  65. std::string getCallerUidEmail()const;
  66. void setCallerUidEmail(const std::string& callerUidEmail);
  67. long getCallerUid()const;
  68. void setCallerUid(long callerUid);
  69. std::string getApp_ip()const;
  70. void setApp_ip(const std::string& app_ip);
  71. std::string getExpireTime()const;
  72. void setExpireTime(const std::string& expireTime);
  73. std::string getResourceId()const;
  74. void setResourceId(const std::string& resourceId);
  75. std::string getResourceOwnerAccount()const;
  76. void setResourceOwnerAccount(const std::string& resourceOwnerAccount);
  77. std::string getCallerBid()const;
  78. void setCallerBid(const std::string& callerBid);
  79. long getOwnerId()const;
  80. void setOwnerId(long ownerId);
  81. bool getProxy_trust_transport_info()const;
  82. void setProxy_trust_transport_info(bool proxy_trust_transport_info);
  83. bool getAk_mfa_present()const;
  84. void setAk_mfa_present(bool ak_mfa_present);
  85. bool getSecurity_transport()const;
  86. void setSecurity_transport(bool security_transport);
  87. std::string getRequestId()const;
  88. void setRequestId(const std::string& requestId);
  89. std::string getEventType()const;
  90. void setEventType(const std::string& eventType);
  91. std::string getStatus()const;
  92. void setStatus(const std::string& status);
  93. private:
  94. std::string eventId_;
  95. long resourceOwnerId_;
  96. long callerParentId_;
  97. bool proxy_original_security_transport_;
  98. std::string proxy_original_source_ip_;
  99. std::string ownerIdLoginEmail_;
  100. std::string callerType_;
  101. int pageNumber_;
  102. std::string accessKeyId_;
  103. std::string securityToken_;
  104. std::string regionId_;
  105. bool enable_;
  106. std::string requestContent_;
  107. int pageSize_;
  108. std::string callerBidEmail_;
  109. std::string planTime_;
  110. std::string callerUidEmail_;
  111. long callerUid_;
  112. std::string app_ip_;
  113. std::string expireTime_;
  114. std::string resourceId_;
  115. std::string resourceOwnerAccount_;
  116. std::string callerBid_;
  117. long ownerId_;
  118. bool proxy_trust_transport_info_;
  119. bool ak_mfa_present_;
  120. bool security_transport_;
  121. std::string requestId_;
  122. std::string eventType_;
  123. std::string status_;
  124. };
  125. }
  126. }
  127. }
  128. #endif // !ALIBABACLOUD_ECS_MODEL_DESCRIBEEVENTSREQUEST_H_