JARVIS SDK Auto Released By mainri.mxy,Version:1.17.1
Signed-off-by: haowei.yao <haowei.yao@alibaba-inc.com>
This commit is contained in:
@@ -1,3 +1,6 @@
|
||||
2018-06-06 Version: 1.17.1
|
||||
1, Change the type of srcUid to int.
|
||||
|
||||
2018-06-06 Version: 1.17.0
|
||||
1, Add interface DescribePhoneInfo, DescribeDdosDefenseInfo, DescribeRiskListDetail, DescribePunishList.
|
||||
|
||||
|
||||
@@ -39,15 +39,15 @@ namespace AlibabaCloud
|
||||
void setSourceIp(const std::string& sourceIp);
|
||||
std::string getLang()const;
|
||||
void setLang(const std::string& lang);
|
||||
std::string getSrcUid()const;
|
||||
void setSrcUid(const std::string& srcUid);
|
||||
long getSrcUid()const;
|
||||
void setSrcUid(long srcUid);
|
||||
std::string getSourceCode()const;
|
||||
void setSourceCode(const std::string& sourceCode);
|
||||
|
||||
private:
|
||||
std::string sourceIp_;
|
||||
std::string lang_;
|
||||
std::string srcUid_;
|
||||
long srcUid_;
|
||||
std::string sourceCode_;
|
||||
|
||||
};
|
||||
|
||||
@@ -47,8 +47,8 @@ namespace AlibabaCloud
|
||||
void setPunishStatus(const std::string& punishStatus);
|
||||
std::string getLang()const;
|
||||
void setLang(const std::string& lang);
|
||||
std::string getSrcUid()const;
|
||||
void setSrcUid(const std::string& srcUid);
|
||||
long getSrcUid()const;
|
||||
void setSrcUid(long srcUid);
|
||||
std::string getSourceCode()const;
|
||||
void setSourceCode(const std::string& sourceCode);
|
||||
|
||||
@@ -59,7 +59,7 @@ namespace AlibabaCloud
|
||||
int currentPage_;
|
||||
std::string punishStatus_;
|
||||
std::string lang_;
|
||||
std::string srcUid_;
|
||||
long srcUid_;
|
||||
std::string sourceCode_;
|
||||
|
||||
};
|
||||
|
||||
@@ -39,18 +39,18 @@ namespace AlibabaCloud
|
||||
void setRiskType(const std::string& riskType);
|
||||
std::string getSourceIp()const;
|
||||
void setSourceIp(const std::string& sourceIp);
|
||||
std::string getPageSize()const;
|
||||
void setPageSize(const std::string& pageSize);
|
||||
int getPageSize()const;
|
||||
void setPageSize(int pageSize);
|
||||
std::string getQueryProduct()const;
|
||||
void setQueryProduct(const std::string& queryProduct);
|
||||
std::string getCurrentPage()const;
|
||||
void setCurrentPage(const std::string& currentPage);
|
||||
int getCurrentPage()const;
|
||||
void setCurrentPage(int currentPage);
|
||||
std::string getRiskDescribe()const;
|
||||
void setRiskDescribe(const std::string& riskDescribe);
|
||||
std::string getLang()const;
|
||||
void setLang(const std::string& lang);
|
||||
std::string getSrcUid()const;
|
||||
void setSrcUid(const std::string& srcUid);
|
||||
long getSrcUid()const;
|
||||
void setSrcUid(long srcUid);
|
||||
std::string getSourceCode()const;
|
||||
void setSourceCode(const std::string& sourceCode);
|
||||
std::string getQueryRegionId()const;
|
||||
@@ -61,12 +61,12 @@ namespace AlibabaCloud
|
||||
private:
|
||||
std::string riskType_;
|
||||
std::string sourceIp_;
|
||||
std::string pageSize_;
|
||||
int pageSize_;
|
||||
std::string queryProduct_;
|
||||
std::string currentPage_;
|
||||
int currentPage_;
|
||||
std::string riskDescribe_;
|
||||
std::string lang_;
|
||||
std::string srcUid_;
|
||||
long srcUid_;
|
||||
std::string sourceCode_;
|
||||
std::string queryRegionId_;
|
||||
std::string status_;
|
||||
|
||||
@@ -47,15 +47,15 @@ void DescribeDdosDefenseInfoRequest::setLang(const std::string& lang)
|
||||
setParameter("Lang", lang);
|
||||
}
|
||||
|
||||
std::string DescribeDdosDefenseInfoRequest::getSrcUid()const
|
||||
long DescribeDdosDefenseInfoRequest::getSrcUid()const
|
||||
{
|
||||
return srcUid_;
|
||||
}
|
||||
|
||||
void DescribeDdosDefenseInfoRequest::setSrcUid(const std::string& srcUid)
|
||||
void DescribeDdosDefenseInfoRequest::setSrcUid(long srcUid)
|
||||
{
|
||||
srcUid_ = srcUid;
|
||||
setParameter("SrcUid", srcUid);
|
||||
setParameter("SrcUid", std::to_string(srcUid));
|
||||
}
|
||||
|
||||
std::string DescribeDdosDefenseInfoRequest::getSourceCode()const
|
||||
|
||||
@@ -91,15 +91,15 @@ void DescribePunishListRequest::setLang(const std::string& lang)
|
||||
setParameter("Lang", lang);
|
||||
}
|
||||
|
||||
std::string DescribePunishListRequest::getSrcUid()const
|
||||
long DescribePunishListRequest::getSrcUid()const
|
||||
{
|
||||
return srcUid_;
|
||||
}
|
||||
|
||||
void DescribePunishListRequest::setSrcUid(const std::string& srcUid)
|
||||
void DescribePunishListRequest::setSrcUid(long srcUid)
|
||||
{
|
||||
srcUid_ = srcUid;
|
||||
setParameter("SrcUid", srcUid);
|
||||
setParameter("SrcUid", std::to_string(srcUid));
|
||||
}
|
||||
|
||||
std::string DescribePunishListRequest::getSourceCode()const
|
||||
|
||||
@@ -47,15 +47,15 @@ void DescribeRiskListDetailRequest::setSourceIp(const std::string& sourceIp)
|
||||
setParameter("SourceIp", sourceIp);
|
||||
}
|
||||
|
||||
std::string DescribeRiskListDetailRequest::getPageSize()const
|
||||
int DescribeRiskListDetailRequest::getPageSize()const
|
||||
{
|
||||
return pageSize_;
|
||||
}
|
||||
|
||||
void DescribeRiskListDetailRequest::setPageSize(const std::string& pageSize)
|
||||
void DescribeRiskListDetailRequest::setPageSize(int pageSize)
|
||||
{
|
||||
pageSize_ = pageSize;
|
||||
setParameter("PageSize", pageSize);
|
||||
setParameter("PageSize", std::to_string(pageSize));
|
||||
}
|
||||
|
||||
std::string DescribeRiskListDetailRequest::getQueryProduct()const
|
||||
@@ -69,15 +69,15 @@ void DescribeRiskListDetailRequest::setQueryProduct(const std::string& queryProd
|
||||
setParameter("QueryProduct", queryProduct);
|
||||
}
|
||||
|
||||
std::string DescribeRiskListDetailRequest::getCurrentPage()const
|
||||
int DescribeRiskListDetailRequest::getCurrentPage()const
|
||||
{
|
||||
return currentPage_;
|
||||
}
|
||||
|
||||
void DescribeRiskListDetailRequest::setCurrentPage(const std::string& currentPage)
|
||||
void DescribeRiskListDetailRequest::setCurrentPage(int currentPage)
|
||||
{
|
||||
currentPage_ = currentPage;
|
||||
setParameter("CurrentPage", currentPage);
|
||||
setParameter("CurrentPage", std::to_string(currentPage));
|
||||
}
|
||||
|
||||
std::string DescribeRiskListDetailRequest::getRiskDescribe()const
|
||||
@@ -102,15 +102,15 @@ void DescribeRiskListDetailRequest::setLang(const std::string& lang)
|
||||
setParameter("Lang", lang);
|
||||
}
|
||||
|
||||
std::string DescribeRiskListDetailRequest::getSrcUid()const
|
||||
long DescribeRiskListDetailRequest::getSrcUid()const
|
||||
{
|
||||
return srcUid_;
|
||||
}
|
||||
|
||||
void DescribeRiskListDetailRequest::setSrcUid(const std::string& srcUid)
|
||||
void DescribeRiskListDetailRequest::setSrcUid(long srcUid)
|
||||
{
|
||||
srcUid_ = srcUid;
|
||||
setParameter("SrcUid", srcUid);
|
||||
setParameter("SrcUid", std::to_string(srcUid));
|
||||
}
|
||||
|
||||
std::string DescribeRiskListDetailRequest::getSourceCode()const
|
||||
|
||||
Reference in New Issue
Block a user