Change ListCheckInstanceResult Public.
This commit is contained in:
@@ -1,3 +1,6 @@
|
||||
2022-07-26 Version: 1.36.1203
|
||||
- Change ListCheckInstanceResult Public.
|
||||
|
||||
2022-07-25 Version: 1.36.1202
|
||||
- Change ListCheckInstanceResult GetCheckDetail Public.
|
||||
|
||||
|
||||
@@ -30,8 +30,14 @@ class ALIBABACLOUD_SAS_EXPORT DescribeWarningMachinesRequest : public RpcService
|
||||
public:
|
||||
DescribeWarningMachinesRequest();
|
||||
~DescribeWarningMachinesRequest();
|
||||
std::string getTargetType() const;
|
||||
void setTargetType(const std::string &targetType);
|
||||
std::string getContainerFieldName() const;
|
||||
void setContainerFieldName(const std::string &containerFieldName);
|
||||
std::string getSourceIp() const;
|
||||
void setSourceIp(const std::string &sourceIp);
|
||||
std::string getContainerFieldValue() const;
|
||||
void setContainerFieldValue(const std::string &containerFieldValue);
|
||||
int getPageSize() const;
|
||||
void setPageSize(int pageSize);
|
||||
std::string getMachineName() const;
|
||||
@@ -40,6 +46,8 @@ public:
|
||||
void setLang(const std::string &lang);
|
||||
int getCurrentPage() const;
|
||||
void setCurrentPage(int currentPage);
|
||||
std::string getClusterId() const;
|
||||
void setClusterId(const std::string &clusterId);
|
||||
long getRiskId() const;
|
||||
void setRiskId(long riskId);
|
||||
long getStrategyId() const;
|
||||
@@ -48,11 +56,15 @@ public:
|
||||
void setUuids(const std::string &uuids);
|
||||
|
||||
private:
|
||||
std::string targetType_;
|
||||
std::string containerFieldName_;
|
||||
std::string sourceIp_;
|
||||
std::string containerFieldValue_;
|
||||
int pageSize_;
|
||||
std::string machineName_;
|
||||
std::string lang_;
|
||||
int currentPage_;
|
||||
std::string clusterId_;
|
||||
long riskId_;
|
||||
long strategyId_;
|
||||
std::string uuids_;
|
||||
|
||||
@@ -25,6 +25,24 @@ DescribeWarningMachinesRequest::DescribeWarningMachinesRequest()
|
||||
|
||||
DescribeWarningMachinesRequest::~DescribeWarningMachinesRequest() {}
|
||||
|
||||
std::string DescribeWarningMachinesRequest::getTargetType() const {
|
||||
return targetType_;
|
||||
}
|
||||
|
||||
void DescribeWarningMachinesRequest::setTargetType(const std::string &targetType) {
|
||||
targetType_ = targetType;
|
||||
setParameter(std::string("TargetType"), targetType);
|
||||
}
|
||||
|
||||
std::string DescribeWarningMachinesRequest::getContainerFieldName() const {
|
||||
return containerFieldName_;
|
||||
}
|
||||
|
||||
void DescribeWarningMachinesRequest::setContainerFieldName(const std::string &containerFieldName) {
|
||||
containerFieldName_ = containerFieldName;
|
||||
setParameter(std::string("ContainerFieldName"), containerFieldName);
|
||||
}
|
||||
|
||||
std::string DescribeWarningMachinesRequest::getSourceIp() const {
|
||||
return sourceIp_;
|
||||
}
|
||||
@@ -34,6 +52,15 @@ void DescribeWarningMachinesRequest::setSourceIp(const std::string &sourceIp) {
|
||||
setParameter(std::string("SourceIp"), sourceIp);
|
||||
}
|
||||
|
||||
std::string DescribeWarningMachinesRequest::getContainerFieldValue() const {
|
||||
return containerFieldValue_;
|
||||
}
|
||||
|
||||
void DescribeWarningMachinesRequest::setContainerFieldValue(const std::string &containerFieldValue) {
|
||||
containerFieldValue_ = containerFieldValue;
|
||||
setParameter(std::string("ContainerFieldValue"), containerFieldValue);
|
||||
}
|
||||
|
||||
int DescribeWarningMachinesRequest::getPageSize() const {
|
||||
return pageSize_;
|
||||
}
|
||||
@@ -70,6 +97,15 @@ void DescribeWarningMachinesRequest::setCurrentPage(int currentPage) {
|
||||
setParameter(std::string("CurrentPage"), std::to_string(currentPage));
|
||||
}
|
||||
|
||||
std::string DescribeWarningMachinesRequest::getClusterId() const {
|
||||
return clusterId_;
|
||||
}
|
||||
|
||||
void DescribeWarningMachinesRequest::setClusterId(const std::string &clusterId) {
|
||||
clusterId_ = clusterId;
|
||||
setParameter(std::string("ClusterId"), clusterId);
|
||||
}
|
||||
|
||||
long DescribeWarningMachinesRequest::getRiskId() const {
|
||||
return riskId_;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user