diff --git a/CHANGELOG b/CHANGELOG index 9b9f90ff2..4041ac805 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,6 @@ +2021-06-03 Version: 1.36.763 +- Support name. + 2021-06-02 Version: 1.36.762 - Support key deletion protection. diff --git a/VERSION b/VERSION index 1b76a9df9..88f7cb11f 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.36.762 \ No newline at end of file +1.36.763 \ No newline at end of file diff --git a/devops-rdc/include/alibabacloud/devops-rdc/model/ListDevopsScenarioFieldConfigResult.h b/devops-rdc/include/alibabacloud/devops-rdc/model/ListDevopsScenarioFieldConfigResult.h index 6cf12ffad..236abca92 100644 --- a/devops-rdc/include/alibabacloud/devops-rdc/model/ListDevopsScenarioFieldConfigResult.h +++ b/devops-rdc/include/alibabacloud/devops-rdc/model/ListDevopsScenarioFieldConfigResult.h @@ -36,6 +36,7 @@ namespace AlibabaCloud { std::string type; std::string id; + std::string name; }; diff --git a/devops-rdc/src/Devops-rdcClient.cc b/devops-rdc/src/Devops-rdcClient.cc index 1c7c2e699..0f400280f 100644 --- a/devops-rdc/src/Devops-rdcClient.cc +++ b/devops-rdc/src/Devops-rdcClient.cc @@ -31,21 +31,21 @@ Devops_rdcClient::Devops_rdcClient(const Credentials &credentials, const ClientC RpcServiceClient(SERVICE_NAME, std::make_shared(credentials), configuration) { auto locationClient = std::make_shared(credentials, configuration); - endpointProvider_ = std::make_shared(locationClient, configuration.regionId(), SERVICE_NAME, ""); + endpointProvider_ = std::make_shared(locationClient, configuration.regionId(), SERVICE_NAME, "1.9.6"); } Devops_rdcClient::Devops_rdcClient(const std::shared_ptr& credentialsProvider, const ClientConfiguration & configuration) : RpcServiceClient(SERVICE_NAME, credentialsProvider, configuration) { auto locationClient = std::make_shared(credentialsProvider, configuration); - endpointProvider_ = std::make_shared(locationClient, configuration.regionId(), SERVICE_NAME, ""); + endpointProvider_ = std::make_shared(locationClient, configuration.regionId(), SERVICE_NAME, "1.9.6"); } Devops_rdcClient::Devops_rdcClient(const std::string & accessKeyId, const std::string & accessKeySecret, const ClientConfiguration & configuration) : RpcServiceClient(SERVICE_NAME, std::make_shared(accessKeyId, accessKeySecret), configuration) { auto locationClient = std::make_shared(accessKeyId, accessKeySecret, configuration); - endpointProvider_ = std::make_shared(locationClient, configuration.regionId(), SERVICE_NAME, ""); + endpointProvider_ = std::make_shared(locationClient, configuration.regionId(), SERVICE_NAME, "1.9.6"); } Devops_rdcClient::~Devops_rdcClient() diff --git a/devops-rdc/src/model/ListDevopsScenarioFieldConfigResult.cc b/devops-rdc/src/model/ListDevopsScenarioFieldConfigResult.cc index 85ea6c155..b344b663e 100644 --- a/devops-rdc/src/model/ListDevopsScenarioFieldConfigResult.cc +++ b/devops-rdc/src/model/ListDevopsScenarioFieldConfigResult.cc @@ -47,6 +47,8 @@ void ListDevopsScenarioFieldConfigResult::parse(const std::string &payload) objectObject.id = valueObjectScenarioFieldConfig["Id"].asString(); if(!valueObjectScenarioFieldConfig["Type"].isNull()) objectObject.type = valueObjectScenarioFieldConfig["Type"].asString(); + if(!valueObjectScenarioFieldConfig["Name"].isNull()) + objectObject.name = valueObjectScenarioFieldConfig["Name"].asString(); object_.push_back(objectObject); } if(!value["Successful"].isNull())