Rebuild sdk (#60)

* rebuild sdk

* fixed ut include Utils.h
This commit is contained in:
Axios
2019-08-14 14:34:09 +08:00
committed by GitHub
parent f3d9843e63
commit c43307bc80
11893 changed files with 462166 additions and 221301 deletions

View File

@@ -33,7 +33,7 @@ std::string CreateClusterScriptRequest::getArgs()const
void CreateClusterScriptRequest::setArgs(const std::string& args)
{
args_ = args;
setParameter("Args", args);
setCoreParameter("Args", args);
}
std::string CreateClusterScriptRequest::getPath()const
@@ -44,7 +44,7 @@ std::string CreateClusterScriptRequest::getPath()const
void CreateClusterScriptRequest::setPath(const std::string& path)
{
path_ = path;
setParameter("Path", path);
setCoreParameter("Path", path);
}
long CreateClusterScriptRequest::getResourceOwnerId()const
@@ -55,7 +55,7 @@ long CreateClusterScriptRequest::getResourceOwnerId()const
void CreateClusterScriptRequest::setResourceOwnerId(long resourceOwnerId)
{
resourceOwnerId_ = resourceOwnerId;
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
}
std::string CreateClusterScriptRequest::getRegionId()const
@@ -66,7 +66,7 @@ std::string CreateClusterScriptRequest::getRegionId()const
void CreateClusterScriptRequest::setRegionId(const std::string& regionId)
{
regionId_ = regionId;
setParameter("RegionId", regionId);
setCoreParameter("RegionId", regionId);
}
std::string CreateClusterScriptRequest::getName()const
@@ -77,7 +77,7 @@ std::string CreateClusterScriptRequest::getName()const
void CreateClusterScriptRequest::setName(const std::string& name)
{
name_ = name;
setParameter("Name", name);
setCoreParameter("Name", name);
}
std::string CreateClusterScriptRequest::getClusterId()const
@@ -88,7 +88,7 @@ std::string CreateClusterScriptRequest::getClusterId()const
void CreateClusterScriptRequest::setClusterId(const std::string& clusterId)
{
clusterId_ = clusterId;
setParameter("ClusterId", clusterId);
setCoreParameter("ClusterId", clusterId);
}
std::string CreateClusterScriptRequest::getNodeIdList()const
@@ -99,7 +99,7 @@ std::string CreateClusterScriptRequest::getNodeIdList()const
void CreateClusterScriptRequest::setNodeIdList(const std::string& nodeIdList)
{
nodeIdList_ = nodeIdList;
setParameter("NodeIdList", nodeIdList);
setCoreParameter("NodeIdList", nodeIdList);
}
std::string CreateClusterScriptRequest::getAccessKeyId()const
@@ -110,6 +110,6 @@ std::string CreateClusterScriptRequest::getAccessKeyId()const
void CreateClusterScriptRequest::setAccessKeyId(const std::string& accessKeyId)
{
accessKeyId_ = accessKeyId;
setParameter("AccessKeyId", accessKeyId);
setCoreParameter("AccessKeyId", accessKeyId);
}