Files
aliyun-openapi-cpp-sdk/dataworks-public/include/alibabacloud/dataworks-public/model/UpdateQualityRuleRequest.h
2023-03-08 07:47:47 +00:00

103 lines
3.4 KiB
C++

/*
* 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_UPDATEQUALITYRULEREQUEST_H_
#define ALIBABACLOUD_DATAWORKS_PUBLIC_MODEL_UPDATEQUALITYRULEREQUEST_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 UpdateQualityRuleRequest : public RpcServiceRequest {
public:
UpdateQualityRuleRequest();
~UpdateQualityRuleRequest();
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);
long getId() const;
void setId(long id);
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);
bool getOpenSwitch() const;
void setOpenSwitch(bool openSwitch);
std::string getComment() const;
void setComment(const std::string &comment);
int getPredictType() const;
void setPredictType(int predictType);
private:
std::string trend_;
int blockType_;
std::string propertyType_;
long entityId_;
std::string ruleName_;
int checker_;
std::string _operator_;
std::string property_;
long id_;
std::string warningThreshold_;
long projectId_;
std::string methodName_;
std::string projectName_;
int ruleType_;
int templateId_;
std::string expectValue_;
std::string whereCondition_;
std::string criticalThreshold_;
bool openSwitch_;
std::string comment_;
int predictType_;
};
} // namespace Model
} // namespace Dataworks_public
} // namespace AlibabaCloud
#endif // !ALIBABACLOUD_DATAWORKS_PUBLIC_MODEL_UPDATEQUALITYRULEREQUEST_H_