Rebuild.
This commit is contained in:
@@ -69,15 +69,6 @@ void CreateEaiEciRequest::setEaisType(const std::string &eaisType) {
|
||||
setParameter(std::string("EaisType"), eaisType);
|
||||
}
|
||||
|
||||
std::string CreateEaiEciRequest::getVSwitchId() const {
|
||||
return vSwitchId_;
|
||||
}
|
||||
|
||||
void CreateEaiEciRequest::setVSwitchId(const std::string &vSwitchId) {
|
||||
vSwitchId_ = vSwitchId;
|
||||
setParameter(std::string("VSwitchId"), vSwitchId);
|
||||
}
|
||||
|
||||
std::string CreateEaiEciRequest::getResourceGroupId() const {
|
||||
return resourceGroupId_;
|
||||
}
|
||||
@@ -105,3 +96,26 @@ void CreateEaiEciRequest::setEaisName(const std::string &eaisName) {
|
||||
setParameter(std::string("EaisName"), eaisName);
|
||||
}
|
||||
|
||||
std::vector<CreateEaiEciRequest::Tag> CreateEaiEciRequest::getTag() const {
|
||||
return tag_;
|
||||
}
|
||||
|
||||
void CreateEaiEciRequest::setTag(const std::vector<CreateEaiEciRequest::Tag> &tag) {
|
||||
tag_ = tag;
|
||||
for(int dep1 = 0; dep1 != tag.size(); dep1++) {
|
||||
auto tagObj = tag.at(dep1);
|
||||
std::string tagObjStr = std::string("Tag") + "." + std::to_string(dep1 + 1);
|
||||
setParameter(tagObjStr + ".Value", tagObj.value);
|
||||
setParameter(tagObjStr + ".Key", tagObj.key);
|
||||
}
|
||||
}
|
||||
|
||||
std::string CreateEaiEciRequest::getVSwitchId() const {
|
||||
return vSwitchId_;
|
||||
}
|
||||
|
||||
void CreateEaiEciRequest::setVSwitchId(const std::string &vSwitchId) {
|
||||
vSwitchId_ = vSwitchId;
|
||||
setParameter(std::string("VSwitchId"), vSwitchId);
|
||||
}
|
||||
|
||||
|
||||
@@ -52,15 +52,6 @@ void CreateEaiEcsRequest::setEaisType(const std::string &eaisType) {
|
||||
setParameter(std::string("EaisType"), eaisType);
|
||||
}
|
||||
|
||||
std::string CreateEaiEcsRequest::getVSwitchId() const {
|
||||
return vSwitchId_;
|
||||
}
|
||||
|
||||
void CreateEaiEcsRequest::setVSwitchId(const std::string &vSwitchId) {
|
||||
vSwitchId_ = vSwitchId;
|
||||
setParameter(std::string("VSwitchId"), vSwitchId);
|
||||
}
|
||||
|
||||
std::string CreateEaiEcsRequest::getResourceGroupId() const {
|
||||
return resourceGroupId_;
|
||||
}
|
||||
@@ -105,3 +96,26 @@ void CreateEaiEcsRequest::setEaisName(const std::string &eaisName) {
|
||||
setParameter(std::string("EaisName"), eaisName);
|
||||
}
|
||||
|
||||
std::vector<CreateEaiEcsRequest::Tag> CreateEaiEcsRequest::getTag() const {
|
||||
return tag_;
|
||||
}
|
||||
|
||||
void CreateEaiEcsRequest::setTag(const std::vector<CreateEaiEcsRequest::Tag> &tag) {
|
||||
tag_ = tag;
|
||||
for(int dep1 = 0; dep1 != tag.size(); dep1++) {
|
||||
auto tagObj = tag.at(dep1);
|
||||
std::string tagObjStr = std::string("Tag") + "." + std::to_string(dep1 + 1);
|
||||
setParameter(tagObjStr + ".Value", tagObj.value);
|
||||
setParameter(tagObjStr + ".Key", tagObj.key);
|
||||
}
|
||||
}
|
||||
|
||||
std::string CreateEaiEcsRequest::getVSwitchId() const {
|
||||
return vSwitchId_;
|
||||
}
|
||||
|
||||
void CreateEaiEcsRequest::setVSwitchId(const std::string &vSwitchId) {
|
||||
vSwitchId_ = vSwitchId;
|
||||
setParameter(std::string("VSwitchId"), vSwitchId);
|
||||
}
|
||||
|
||||
|
||||
@@ -52,15 +52,6 @@ void CreateEaiJupyterRequest::setEaisType(const std::string &eaisType) {
|
||||
setParameter(std::string("EaisType"), eaisType);
|
||||
}
|
||||
|
||||
std::string CreateEaiJupyterRequest::getVSwitchId() const {
|
||||
return vSwitchId_;
|
||||
}
|
||||
|
||||
void CreateEaiJupyterRequest::setVSwitchId(const std::string &vSwitchId) {
|
||||
vSwitchId_ = vSwitchId;
|
||||
setParameter(std::string("VSwitchId"), vSwitchId);
|
||||
}
|
||||
|
||||
std::string CreateEaiJupyterRequest::getResourceGroupId() const {
|
||||
return resourceGroupId_;
|
||||
}
|
||||
@@ -79,6 +70,38 @@ void CreateEaiJupyterRequest::setRegionId(const std::string ®ionId) {
|
||||
setParameter(std::string("RegionId"), regionId);
|
||||
}
|
||||
|
||||
std::string CreateEaiJupyterRequest::getEaisName() const {
|
||||
return eaisName_;
|
||||
}
|
||||
|
||||
void CreateEaiJupyterRequest::setEaisName(const std::string &eaisName) {
|
||||
eaisName_ = eaisName;
|
||||
setParameter(std::string("EaisName"), eaisName);
|
||||
}
|
||||
|
||||
std::vector<CreateEaiJupyterRequest::Tag> CreateEaiJupyterRequest::getTag() const {
|
||||
return tag_;
|
||||
}
|
||||
|
||||
void CreateEaiJupyterRequest::setTag(const std::vector<CreateEaiJupyterRequest::Tag> &tag) {
|
||||
tag_ = tag;
|
||||
for(int dep1 = 0; dep1 != tag.size(); dep1++) {
|
||||
auto tagObj = tag.at(dep1);
|
||||
std::string tagObjStr = std::string("Tag") + "." + std::to_string(dep1 + 1);
|
||||
setParameter(tagObjStr + ".Value", tagObj.value);
|
||||
setParameter(tagObjStr + ".Key", tagObj.key);
|
||||
}
|
||||
}
|
||||
|
||||
std::string CreateEaiJupyterRequest::getVSwitchId() const {
|
||||
return vSwitchId_;
|
||||
}
|
||||
|
||||
void CreateEaiJupyterRequest::setVSwitchId(const std::string &vSwitchId) {
|
||||
vSwitchId_ = vSwitchId;
|
||||
setParameter(std::string("VSwitchId"), vSwitchId);
|
||||
}
|
||||
|
||||
std::vector<CreateEaiJupyterRequest::EnvironmentVar> CreateEaiJupyterRequest::getEnvironmentVar() const {
|
||||
return environmentVar_;
|
||||
}
|
||||
@@ -91,12 +114,3 @@ void CreateEaiJupyterRequest::setEnvironmentVar(const std::vector<CreateEaiJupyt
|
||||
}
|
||||
}
|
||||
|
||||
std::string CreateEaiJupyterRequest::getEaisName() const {
|
||||
return eaisName_;
|
||||
}
|
||||
|
||||
void CreateEaiJupyterRequest::setEaisName(const std::string &eaisName) {
|
||||
eaisName_ = eaisName;
|
||||
setParameter(std::string("EaisName"), eaisName);
|
||||
}
|
||||
|
||||
|
||||
@@ -25,15 +25,6 @@ CreateEaiRequest::CreateEaiRequest()
|
||||
|
||||
CreateEaiRequest::~CreateEaiRequest() {}
|
||||
|
||||
std::string CreateEaiRequest::getImage() const {
|
||||
return image_;
|
||||
}
|
||||
|
||||
void CreateEaiRequest::setImage(const std::string &image) {
|
||||
image_ = image;
|
||||
setParameter(std::string("Image"), image);
|
||||
}
|
||||
|
||||
std::string CreateEaiRequest::getClientToken() const {
|
||||
return clientToken_;
|
||||
}
|
||||
@@ -52,15 +43,6 @@ void CreateEaiRequest::setSecurityGroupId(const std::string &securityGroupId) {
|
||||
setParameter(std::string("SecurityGroupId"), securityGroupId);
|
||||
}
|
||||
|
||||
std::string CreateEaiRequest::getVSwitchId() const {
|
||||
return vSwitchId_;
|
||||
}
|
||||
|
||||
void CreateEaiRequest::setVSwitchId(const std::string &vSwitchId) {
|
||||
vSwitchId_ = vSwitchId;
|
||||
setParameter(std::string("VSwitchId"), vSwitchId);
|
||||
}
|
||||
|
||||
std::string CreateEaiRequest::getResourceGroupId() const {
|
||||
return resourceGroupId_;
|
||||
}
|
||||
@@ -70,15 +52,6 @@ void CreateEaiRequest::setResourceGroupId(const std::string &resourceGroupId) {
|
||||
setParameter(std::string("ResourceGroupId"), resourceGroupId);
|
||||
}
|
||||
|
||||
std::string CreateEaiRequest::getInstanceName() const {
|
||||
return instanceName_;
|
||||
}
|
||||
|
||||
void CreateEaiRequest::setInstanceName(const std::string &instanceName) {
|
||||
instanceName_ = instanceName;
|
||||
setParameter(std::string("InstanceName"), instanceName);
|
||||
}
|
||||
|
||||
std::string CreateEaiRequest::getRegionId() const {
|
||||
return regionId_;
|
||||
}
|
||||
@@ -97,3 +70,44 @@ void CreateEaiRequest::setInstanceType(const std::string &instanceType) {
|
||||
setParameter(std::string("InstanceType"), instanceType);
|
||||
}
|
||||
|
||||
std::vector<CreateEaiRequest::Tag> CreateEaiRequest::getTag() const {
|
||||
return tag_;
|
||||
}
|
||||
|
||||
void CreateEaiRequest::setTag(const std::vector<CreateEaiRequest::Tag> &tag) {
|
||||
tag_ = tag;
|
||||
for(int dep1 = 0; dep1 != tag.size(); dep1++) {
|
||||
auto tagObj = tag.at(dep1);
|
||||
std::string tagObjStr = std::string("Tag") + "." + std::to_string(dep1 + 1);
|
||||
setParameter(tagObjStr + ".Value", tagObj.value);
|
||||
setParameter(tagObjStr + ".Key", tagObj.key);
|
||||
}
|
||||
}
|
||||
|
||||
std::string CreateEaiRequest::getImage() const {
|
||||
return image_;
|
||||
}
|
||||
|
||||
void CreateEaiRequest::setImage(const std::string &image) {
|
||||
image_ = image;
|
||||
setParameter(std::string("Image"), image);
|
||||
}
|
||||
|
||||
std::string CreateEaiRequest::getVSwitchId() const {
|
||||
return vSwitchId_;
|
||||
}
|
||||
|
||||
void CreateEaiRequest::setVSwitchId(const std::string &vSwitchId) {
|
||||
vSwitchId_ = vSwitchId;
|
||||
setParameter(std::string("VSwitchId"), vSwitchId);
|
||||
}
|
||||
|
||||
std::string CreateEaiRequest::getInstanceName() const {
|
||||
return instanceName_;
|
||||
}
|
||||
|
||||
void CreateEaiRequest::setInstanceName(const std::string &instanceName) {
|
||||
instanceName_ = instanceName;
|
||||
setParameter(std::string("InstanceName"), instanceName);
|
||||
}
|
||||
|
||||
|
||||
@@ -43,15 +43,6 @@ void CreateEaisEiRequest::setSecurityGroupId(const std::string &securityGroupId)
|
||||
setParameter(std::string("SecurityGroupId"), securityGroupId);
|
||||
}
|
||||
|
||||
std::string CreateEaisEiRequest::getVSwitchId() const {
|
||||
return vSwitchId_;
|
||||
}
|
||||
|
||||
void CreateEaisEiRequest::setVSwitchId(const std::string &vSwitchId) {
|
||||
vSwitchId_ = vSwitchId;
|
||||
setParameter(std::string("VSwitchId"), vSwitchId);
|
||||
}
|
||||
|
||||
std::string CreateEaisEiRequest::getResourceGroupId() const {
|
||||
return resourceGroupId_;
|
||||
}
|
||||
@@ -61,15 +52,6 @@ void CreateEaisEiRequest::setResourceGroupId(const std::string &resourceGroupId)
|
||||
setParameter(std::string("ResourceGroupId"), resourceGroupId);
|
||||
}
|
||||
|
||||
std::string CreateEaisEiRequest::getInstanceName() const {
|
||||
return instanceName_;
|
||||
}
|
||||
|
||||
void CreateEaisEiRequest::setInstanceName(const std::string &instanceName) {
|
||||
instanceName_ = instanceName;
|
||||
setParameter(std::string("InstanceName"), instanceName);
|
||||
}
|
||||
|
||||
std::string CreateEaisEiRequest::getRegionId() const {
|
||||
return regionId_;
|
||||
}
|
||||
@@ -88,3 +70,35 @@ void CreateEaisEiRequest::setInstanceType(const std::string &instanceType) {
|
||||
setParameter(std::string("InstanceType"), instanceType);
|
||||
}
|
||||
|
||||
std::vector<CreateEaisEiRequest::Tag> CreateEaisEiRequest::getTag() const {
|
||||
return tag_;
|
||||
}
|
||||
|
||||
void CreateEaisEiRequest::setTag(const std::vector<CreateEaisEiRequest::Tag> &tag) {
|
||||
tag_ = tag;
|
||||
for(int dep1 = 0; dep1 != tag.size(); dep1++) {
|
||||
auto tagObj = tag.at(dep1);
|
||||
std::string tagObjStr = std::string("Tag") + "." + std::to_string(dep1 + 1);
|
||||
setParameter(tagObjStr + ".Value", tagObj.value);
|
||||
setParameter(tagObjStr + ".Key", tagObj.key);
|
||||
}
|
||||
}
|
||||
|
||||
std::string CreateEaisEiRequest::getVSwitchId() const {
|
||||
return vSwitchId_;
|
||||
}
|
||||
|
||||
void CreateEaisEiRequest::setVSwitchId(const std::string &vSwitchId) {
|
||||
vSwitchId_ = vSwitchId;
|
||||
setParameter(std::string("VSwitchId"), vSwitchId);
|
||||
}
|
||||
|
||||
std::string CreateEaisEiRequest::getInstanceName() const {
|
||||
return instanceName_;
|
||||
}
|
||||
|
||||
void CreateEaisEiRequest::setInstanceName(const std::string &instanceName) {
|
||||
instanceName_ = instanceName;
|
||||
setParameter(std::string("InstanceName"), instanceName);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user