DescribeAlertHistoryListRequest.h 2.5 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_CMS_MODEL_DESCRIBEALERTHISTORYLISTREQUEST_H_
  17. #define ALIBABACLOUD_CMS_MODEL_DESCRIBEALERTHISTORYLISTREQUEST_H_
  18. #include <string>
  19. #include <vector>
  20. #include <alibabacloud/core/RpcServiceRequest.h>
  21. #include <alibabacloud/cms/CmsExport.h>
  22. namespace AlibabaCloud
  23. {
  24. namespace Cms
  25. {
  26. namespace Model
  27. {
  28. class ALIBABACLOUD_CMS_EXPORT DescribeAlertHistoryListRequest : public RpcServiceRequest
  29. {
  30. public:
  31. DescribeAlertHistoryListRequest();
  32. ~DescribeAlertHistoryListRequest();
  33. std::string getRuleName()const;
  34. void setRuleName(const std::string& ruleName);
  35. std::string getStartTime()const;
  36. void setStartTime(const std::string& startTime);
  37. int getPageSize()const;
  38. void setPageSize(int pageSize);
  39. std::string getState()const;
  40. void setState(const std::string& state);
  41. std::string getMetricName()const;
  42. void setMetricName(const std::string& metricName);
  43. std::string getGroupId()const;
  44. void setGroupId(const std::string& groupId);
  45. std::string getEndTime()const;
  46. void setEndTime(const std::string& endTime);
  47. bool getAscending()const;
  48. void setAscending(bool ascending);
  49. std::string get_Namespace()const;
  50. void set_Namespace(const std::string& _namespace);
  51. int getPage()const;
  52. void setPage(int page);
  53. std::string getRuleId()const;
  54. void setRuleId(const std::string& ruleId);
  55. std::string getStatus()const;
  56. void setStatus(const std::string& status);
  57. private:
  58. std::string ruleName_;
  59. std::string startTime_;
  60. int pageSize_;
  61. std::string state_;
  62. std::string metricName_;
  63. std::string groupId_;
  64. std::string endTime_;
  65. bool ascending_;
  66. std::string _namespace_;
  67. int page_;
  68. std::string ruleId_;
  69. std::string status_;
  70. };
  71. }
  72. }
  73. }
  74. #endif // !ALIBABACLOUD_CMS_MODEL_DESCRIBEALERTHISTORYLISTREQUEST_H_