DescribeColumnsV2Request.h 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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_DESCRIBECOLUMNSV2REQUEST_H_
  17. #define ALIBABACLOUD_SDDP_MODEL_DESCRIBECOLUMNSV2REQUEST_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 DescribeColumnsV2Request : public RpcServiceRequest {
  27. public:
  28. DescribeColumnsV2Request();
  29. ~DescribeColumnsV2Request();
  30. std::string getProductCode() const;
  31. void setProductCode(const std::string &productCode);
  32. std::string getRiskLevels() const;
  33. void setRiskLevels(const std::string &riskLevels);
  34. std::string getRuleName() const;
  35. void setRuleName(const std::string &ruleName);
  36. std::string getQueryName() const;
  37. void setQueryName(const std::string &queryName);
  38. long getRiskLevelId() const;
  39. void setRiskLevelId(long riskLevelId);
  40. std::string getSensLevelName() const;
  41. void setSensLevelName(const std::string &sensLevelName);
  42. std::string getSourceIp() const;
  43. void setSourceIp(const std::string &sourceIp);
  44. int getPageSize() const;
  45. void setPageSize(int pageSize);
  46. std::string getTableId() const;
  47. void setTableId(const std::string &tableId);
  48. std::string getLang() const;
  49. void setLang(const std::string &lang);
  50. std::string getTableName() const;
  51. void setTableName(const std::string &tableName);
  52. int getFeatureType() const;
  53. void setFeatureType(int featureType);
  54. std::string getOrderBy() const;
  55. void setOrderBy(const std::string &orderBy);
  56. int getCurrentPage() const;
  57. void setCurrentPage(int currentPage);
  58. long getInstanceId() const;
  59. void setInstanceId(long instanceId);
  60. std::string getInstanceName() const;
  61. void setInstanceName(const std::string &instanceName);
  62. std::string getName() const;
  63. void setName(const std::string &name);
  64. long getRuleId() const;
  65. void setRuleId(long ruleId);
  66. private:
  67. std::string productCode_;
  68. std::string riskLevels_;
  69. std::string ruleName_;
  70. std::string queryName_;
  71. long riskLevelId_;
  72. std::string sensLevelName_;
  73. std::string sourceIp_;
  74. int pageSize_;
  75. std::string tableId_;
  76. std::string lang_;
  77. std::string tableName_;
  78. int featureType_;
  79. std::string orderBy_;
  80. int currentPage_;
  81. long instanceId_;
  82. std::string instanceName_;
  83. std::string name_;
  84. long ruleId_;
  85. };
  86. } // namespace Model
  87. } // namespace Sddp
  88. } // namespace AlibabaCloud
  89. #endif // !ALIBABACLOUD_SDDP_MODEL_DESCRIBECOLUMNSV2REQUEST_H_