DescribeDomainPathDataRequest.h 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  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_CDN_MODEL_DESCRIBEDOMAINPATHDATAREQUEST_H_
  17. #define ALIBABACLOUD_CDN_MODEL_DESCRIBEDOMAINPATHDATAREQUEST_H_
  18. #include <string>
  19. #include <vector>
  20. #include <alibabacloud/core/RpcServiceRequest.h>
  21. #include <alibabacloud/cdn/CdnExport.h>
  22. namespace AlibabaCloud
  23. {
  24. namespace Cdn
  25. {
  26. namespace Model
  27. {
  28. class ALIBABACLOUD_CDN_EXPORT DescribeDomainPathDataRequest : public RpcServiceRequest
  29. {
  30. public:
  31. DescribeDomainPathDataRequest();
  32. ~DescribeDomainPathDataRequest();
  33. long getCallerParentId()const;
  34. void setCallerParentId(long callerParentId);
  35. bool getProxy_original_security_transport()const;
  36. void setProxy_original_security_transport(bool proxy_original_security_transport);
  37. std::string getStartTime()const;
  38. void setStartTime(const std::string& startTime);
  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. int getPageNumber()const;
  46. void setPageNumber(int pageNumber);
  47. std::string getAccessKeyId()const;
  48. void setAccessKeyId(const std::string& accessKeyId);
  49. std::string getPath()const;
  50. void setPath(const std::string& path);
  51. std::string getSecurityToken()const;
  52. void setSecurityToken(const std::string& securityToken);
  53. std::string getRequestContent()const;
  54. void setRequestContent(const std::string& requestContent);
  55. int getPageSize()const;
  56. void setPageSize(int pageSize);
  57. std::string getCallerBidEmail()const;
  58. void setCallerBidEmail(const std::string& callerBidEmail);
  59. std::string getCallerUidEmail()const;
  60. void setCallerUidEmail(const std::string& callerUidEmail);
  61. long getCallerUid()const;
  62. void setCallerUid(long callerUid);
  63. std::string getApp_ip()const;
  64. void setApp_ip(const std::string& app_ip);
  65. std::string getProduct()const;
  66. void setProduct(const std::string& product);
  67. std::string getDomainName()const;
  68. void setDomainName(const std::string& domainName);
  69. std::string getEndTime()const;
  70. void setEndTime(const std::string& endTime);
  71. std::string getCallerBid()const;
  72. void setCallerBid(const std::string& callerBid);
  73. long getOwnerId()const;
  74. void setOwnerId(long ownerId);
  75. std::string getVersion()const;
  76. void setVersion(const std::string& version);
  77. bool getProxy_trust_transport_info()const;
  78. void setProxy_trust_transport_info(bool proxy_trust_transport_info);
  79. bool getAk_mfa_present()const;
  80. void setAk_mfa_present(bool ak_mfa_present);
  81. bool getSecurity_transport()const;
  82. void setSecurity_transport(bool security_transport);
  83. std::string getRequestId()const;
  84. void setRequestId(const std::string& requestId);
  85. private:
  86. long callerParentId_;
  87. bool proxy_original_security_transport_;
  88. std::string startTime_;
  89. std::string proxy_original_source_ip_;
  90. std::string ownerIdLoginEmail_;
  91. std::string callerType_;
  92. int pageNumber_;
  93. std::string accessKeyId_;
  94. std::string path_;
  95. std::string securityToken_;
  96. std::string requestContent_;
  97. int pageSize_;
  98. std::string callerBidEmail_;
  99. std::string callerUidEmail_;
  100. long callerUid_;
  101. std::string app_ip_;
  102. std::string product_;
  103. std::string domainName_;
  104. std::string endTime_;
  105. std::string callerBid_;
  106. long ownerId_;
  107. std::string version_;
  108. bool proxy_trust_transport_info_;
  109. bool ak_mfa_present_;
  110. bool security_transport_;
  111. std::string requestId_;
  112. };
  113. }
  114. }
  115. }
  116. #endif // !ALIBABACLOUD_CDN_MODEL_DESCRIBEDOMAINPATHDATAREQUEST_H_