DescribeDataLimitsRequest.h 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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_SDDP_MODEL_DESCRIBEDATALIMITSREQUEST_H_
  17. #define ALIBABACLOUD_SDDP_MODEL_DESCRIBEDATALIMITSREQUEST_H_
  18. #include <alibabacloud/sddp/SddpExport.h>
  19. #include <alibabacloud/core/RpcServiceRequest.h>
  20. #include <string>
  21. #include <vector>
  22. #include <map>
  23. namespace AlibabaCloud {
  24. namespace Sddp {
  25. namespace Model {
  26. class ALIBABACLOUD_SDDP_EXPORT DescribeDataLimitsRequest : public RpcServiceRequest {
  27. public:
  28. DescribeDataLimitsRequest();
  29. ~DescribeDataLimitsRequest();
  30. long getStartTime() const;
  31. void setStartTime(long startTime);
  32. std::string getParentId() const;
  33. void setParentId(const std::string &parentId);
  34. std::string getSourceIp() const;
  35. void setSourceIp(const std::string &sourceIp);
  36. int getEnable() const;
  37. void setEnable(int enable);
  38. int getPageSize() const;
  39. void setPageSize(int pageSize);
  40. int getCheckStatus() const;
  41. void setCheckStatus(int checkStatus);
  42. int getDatamaskStatus() const;
  43. void setDatamaskStatus(int datamaskStatus);
  44. std::string getLang() const;
  45. void setLang(const std::string &lang);
  46. std::string getServiceRegionId() const;
  47. void setServiceRegionId(const std::string &serviceRegionId);
  48. std::string getEngineType() const;
  49. void setEngineType(const std::string &engineType);
  50. int getAuditStatus() const;
  51. void setAuditStatus(int auditStatus);
  52. long getEndTime() const;
  53. void setEndTime(long endTime);
  54. int getCurrentPage() const;
  55. void setCurrentPage(int currentPage);
  56. int getResourceType() const;
  57. void setResourceType(int resourceType);
  58. private:
  59. long startTime_;
  60. std::string parentId_;
  61. std::string sourceIp_;
  62. int enable_;
  63. int pageSize_;
  64. int checkStatus_;
  65. int datamaskStatus_;
  66. std::string lang_;
  67. std::string serviceRegionId_;
  68. std::string engineType_;
  69. int auditStatus_;
  70. long endTime_;
  71. int currentPage_;
  72. int resourceType_;
  73. };
  74. } // namespace Model
  75. } // namespace Sddp
  76. } // namespace AlibabaCloud
  77. #endif // !ALIBABACLOUD_SDDP_MODEL_DESCRIBEDATALIMITSREQUEST_H_