| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- /*
- * Copyright 2009-2017 Alibaba Cloud All rights reserved.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- #ifndef ALIBABACLOUD_SDDP_MODEL_DESCRIBECOLUMNSV2REQUEST_H_
- #define ALIBABACLOUD_SDDP_MODEL_DESCRIBECOLUMNSV2REQUEST_H_
- #include <alibabacloud/sddp/SddpExport.h>
- #include <alibabacloud/core/RpcServiceRequest.h>
- #include <string>
- #include <vector>
- #include <map>
- namespace AlibabaCloud {
- namespace Sddp {
- namespace Model {
- class ALIBABACLOUD_SDDP_EXPORT DescribeColumnsV2Request : public RpcServiceRequest {
- public:
- DescribeColumnsV2Request();
- ~DescribeColumnsV2Request();
- std::string getProductCode() const;
- void setProductCode(const std::string &productCode);
- std::string getRiskLevels() const;
- void setRiskLevels(const std::string &riskLevels);
- std::string getRuleName() const;
- void setRuleName(const std::string &ruleName);
- std::string getQueryName() const;
- void setQueryName(const std::string &queryName);
- long getRiskLevelId() const;
- void setRiskLevelId(long riskLevelId);
- std::string getSensLevelName() const;
- void setSensLevelName(const std::string &sensLevelName);
- std::string getSourceIp() const;
- void setSourceIp(const std::string &sourceIp);
- int getPageSize() const;
- void setPageSize(int pageSize);
- std::string getTableId() const;
- void setTableId(const std::string &tableId);
- std::string getLang() const;
- void setLang(const std::string &lang);
- std::string getTableName() const;
- void setTableName(const std::string &tableName);
- int getFeatureType() const;
- void setFeatureType(int featureType);
- std::string getOrderBy() const;
- void setOrderBy(const std::string &orderBy);
- int getCurrentPage() const;
- void setCurrentPage(int currentPage);
- long getInstanceId() const;
- void setInstanceId(long instanceId);
- std::string getInstanceName() const;
- void setInstanceName(const std::string &instanceName);
- std::string getName() const;
- void setName(const std::string &name);
- long getRuleId() const;
- void setRuleId(long ruleId);
- private:
- std::string productCode_;
- std::string riskLevels_;
- std::string ruleName_;
- std::string queryName_;
- long riskLevelId_;
- std::string sensLevelName_;
- std::string sourceIp_;
- int pageSize_;
- std::string tableId_;
- std::string lang_;
- std::string tableName_;
- int featureType_;
- std::string orderBy_;
- int currentPage_;
- long instanceId_;
- std::string instanceName_;
- std::string name_;
- long ruleId_;
- };
- } // namespace Model
- } // namespace Sddp
- } // namespace AlibabaCloud
- #endif // !ALIBABACLOUD_SDDP_MODEL_DESCRIBECOLUMNSV2REQUEST_H_
|