diff --git a/CHANGELOG b/CHANGELOG index 8bf714bfc..9c5e080f2 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,6 @@ +2020-05-18 Version: 1.36.419 +- Fix DescribeIpcLiveAddress , add in params. + 2020-05-17 Version: 1.36.418 - Open API publish. diff --git a/VERSION b/VERSION index ced1da281..e5e4aaefc 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.36.418 \ No newline at end of file +1.36.419 \ No newline at end of file diff --git a/reid/include/alibabacloud/reid/model/DescribeIpcLiveAddressRequest.h b/reid/include/alibabacloud/reid/model/DescribeIpcLiveAddressRequest.h index 57ba3609d..692d4ba44 100644 --- a/reid/include/alibabacloud/reid/model/DescribeIpcLiveAddressRequest.h +++ b/reid/include/alibabacloud/reid/model/DescribeIpcLiveAddressRequest.h @@ -39,10 +39,13 @@ namespace AlibabaCloud void setIpcId(long ipcId); long getStoreId()const; void setStoreId(long storeId); + std::string getProtocolType()const; + void setProtocolType(const std::string& protocolType); private: long ipcId_; long storeId_; + std::string protocolType_; }; } diff --git a/reid/src/model/DescribeIpcLiveAddressRequest.cc b/reid/src/model/DescribeIpcLiveAddressRequest.cc index caa8a9fcd..b2fc76551 100644 --- a/reid/src/model/DescribeIpcLiveAddressRequest.cc +++ b/reid/src/model/DescribeIpcLiveAddressRequest.cc @@ -49,3 +49,14 @@ void DescribeIpcLiveAddressRequest::setStoreId(long storeId) setBodyParameter("StoreId", std::to_string(storeId)); } +std::string DescribeIpcLiveAddressRequest::getProtocolType()const +{ + return protocolType_; +} + +void DescribeIpcLiveAddressRequest::setProtocolType(const std::string& protocolType) +{ + protocolType_ = protocolType; + setBodyParameter("ProtocolType", protocolType); +} +