AEGIS SDK Auto Released By lai.zhoulai,Version:1.36.5

Signed-off-by: haowei.yao <haowei.yao@alibaba-inc.com>
This commit is contained in:
haowei.yao
2019-04-15 14:17:29 +08:00
parent a99e207d8f
commit 643a939c6d
884 changed files with 64083 additions and 2289 deletions

View File

@@ -25,17 +25,6 @@ DescribeWebshellRequest::DescribeWebshellRequest() :
DescribeWebshellRequest::~DescribeWebshellRequest()
{}
long DescribeWebshellRequest::getResourceOwnerId()const
{
return resourceOwnerId_;
}
void DescribeWebshellRequest::setResourceOwnerId(long resourceOwnerId)
{
resourceOwnerId_ = resourceOwnerId;
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
}
std::string DescribeWebshellRequest::getSourceIp()const
{
return sourceIp_;
@@ -44,7 +33,7 @@ std::string DescribeWebshellRequest::getSourceIp()const
void DescribeWebshellRequest::setSourceIp(const std::string& sourceIp)
{
sourceIp_ = sourceIp;
setParameter("SourceIp", sourceIp);
setCoreParameter("SourceIp", sourceIp);
}
int DescribeWebshellRequest::getGroupId()const
@@ -55,7 +44,7 @@ int DescribeWebshellRequest::getGroupId()const
void DescribeWebshellRequest::setGroupId(int groupId)
{
groupId_ = groupId;
setParameter("GroupId", std::to_string(groupId));
setCoreParameter("GroupId", std::to_string(groupId));
}
std::string DescribeWebshellRequest::getRemark()const
@@ -66,6 +55,28 @@ std::string DescribeWebshellRequest::getRemark()const
void DescribeWebshellRequest::setRemark(const std::string& remark)
{
remark_ = remark;
setParameter("Remark", remark);
setCoreParameter("Remark", remark);
}
std::string DescribeWebshellRequest::getDealed()const
{
return dealed_;
}
void DescribeWebshellRequest::setDealed(const std::string& dealed)
{
dealed_ = dealed;
setCoreParameter("Dealed", dealed);
}
int DescribeWebshellRequest::getTag()const
{
return tag_;
}
void DescribeWebshellRequest::setTag(int tag)
{
tag_ = tag;
setCoreParameter("Tag", std::to_string(tag));
}