Add name.

This commit is contained in:
sdk-team
2020-08-28 19:50:05 +08:00
parent b5790be0db
commit 1dcf6cb7f3
4 changed files with 7 additions and 1 deletions

View File

@@ -1,3 +1,6 @@
2020-08-28 Version: 1.36.615
- Add name.
2020-08-28 Version: 1.36.614
- Support multiple security group for one ehpc cluster.
- Update GWS apis.

View File

@@ -1 +1 @@
1.36.614
1.36.615

View File

@@ -36,6 +36,7 @@ namespace AlibabaCloud
{
std::string type;
std::string id;
std::string name;
};

View File

@@ -47,6 +47,8 @@ void ListDevopsProjectTaskFlowResult::parse(const std::string &payload)
objectObject.id = valueObjectTaskflow["Id"].asString();
if(!valueObjectTaskflow["Type"].isNull())
objectObject.type = valueObjectTaskflow["Type"].asString();
if(!valueObjectTaskflow["Name"].isNull())
objectObject.name = valueObjectTaskflow["Name"].asString();
object_.push_back(objectObject);
}
if(!value["Successful"].isNull())