Add request parameter groupType for OnsGroupCreate.
This commit is contained in:
@@ -1,3 +1,6 @@
|
||||
2019-12-31 Version 1.36.227
|
||||
- Add request parameter groupType for OnsGroupCreate.
|
||||
|
||||
2019-12-31 Version 1.36.226
|
||||
- Supported image for process.
|
||||
|
||||
|
||||
@@ -41,11 +41,14 @@ namespace AlibabaCloud
|
||||
void setRemark(const std::string& remark);
|
||||
std::string getInstanceId()const;
|
||||
void setInstanceId(const std::string& instanceId);
|
||||
std::string getGroupType()const;
|
||||
void setGroupType(const std::string& groupType);
|
||||
|
||||
private:
|
||||
std::string groupId_;
|
||||
std::string remark_;
|
||||
std::string instanceId_;
|
||||
std::string groupType_;
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
@@ -60,3 +60,14 @@ void OnsGroupCreateRequest::setInstanceId(const std::string& instanceId)
|
||||
setCoreParameter("InstanceId", instanceId);
|
||||
}
|
||||
|
||||
std::string OnsGroupCreateRequest::getGroupType()const
|
||||
{
|
||||
return groupType_;
|
||||
}
|
||||
|
||||
void OnsGroupCreateRequest::setGroupType(const std::string& groupType)
|
||||
{
|
||||
groupType_ = groupType;
|
||||
setCoreParameter("GroupType", groupType);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user