| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- /*
- * 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_DATAWORKS_PUBLIC_MODEL_CREATEQUALITYRULEREQUEST_H_
- #define ALIBABACLOUD_DATAWORKS_PUBLIC_MODEL_CREATEQUALITYRULEREQUEST_H_
- #include <alibabacloud/dataworks-public/Dataworks_publicExport.h>
- #include <alibabacloud/core/RpcServiceRequest.h>
- #include <string>
- #include <vector>
- #include <map>
- namespace AlibabaCloud {
- namespace Dataworks_public {
- namespace Model {
- class ALIBABACLOUD_DATAWORKS_PUBLIC_EXPORT CreateQualityRuleRequest : public RpcServiceRequest {
- public:
- CreateQualityRuleRequest();
- ~CreateQualityRuleRequest();
- std::string getTaskSetting() const;
- void setTaskSetting(const std::string &taskSetting);
- std::string getTrend() const;
- void setTrend(const std::string &trend);
- int getBlockType() const;
- void setBlockType(int blockType);
- std::string getPropertyType() const;
- void setPropertyType(const std::string &propertyType);
- long getEntityId() const;
- void setEntityId(long entityId);
- std::string getRuleName() const;
- void setRuleName(const std::string &ruleName);
- int getChecker() const;
- void setChecker(int checker);
- std::string get_Operator() const;
- void set_Operator(const std::string &_operator);
- std::string getProperty() const;
- void setProperty(const std::string &property);
- std::string getWarningThreshold() const;
- void setWarningThreshold(const std::string &warningThreshold);
- long getProjectId() const;
- void setProjectId(long projectId);
- std::string getMethodName() const;
- void setMethodName(const std::string &methodName);
- std::string getProjectName() const;
- void setProjectName(const std::string &projectName);
- int getRuleType() const;
- void setRuleType(int ruleType);
- int getTemplateId() const;
- void setTemplateId(int templateId);
- std::string getExpectValue() const;
- void setExpectValue(const std::string &expectValue);
- std::string getWhereCondition() const;
- void setWhereCondition(const std::string &whereCondition);
- std::string getCriticalThreshold() const;
- void setCriticalThreshold(const std::string &criticalThreshold);
- std::string getComment() const;
- void setComment(const std::string &comment);
- int getPredictType() const;
- void setPredictType(int predictType);
- private:
- std::string taskSetting_;
- std::string trend_;
- int blockType_;
- std::string propertyType_;
- long entityId_;
- std::string ruleName_;
- int checker_;
- std::string _operator_;
- std::string property_;
- std::string warningThreshold_;
- long projectId_;
- std::string methodName_;
- std::string projectName_;
- int ruleType_;
- int templateId_;
- std::string expectValue_;
- std::string whereCondition_;
- std::string criticalThreshold_;
- std::string comment_;
- int predictType_;
- };
- } // namespace Model
- } // namespace Dataworks_public
- } // namespace AlibabaCloud
- #endif // !ALIBABACLOUD_DATAWORKS_PUBLIC_MODEL_CREATEQUALITYRULEREQUEST_H_
|