Fix DescribeIpcLiveAddress , add in params.
This commit is contained in:
@@ -1,3 +1,6 @@
|
|||||||
|
2020-05-18 Version: 1.36.419
|
||||||
|
- Fix DescribeIpcLiveAddress , add in params.
|
||||||
|
|
||||||
2020-05-17 Version: 1.36.418
|
2020-05-17 Version: 1.36.418
|
||||||
- Open API publish.
|
- Open API publish.
|
||||||
|
|
||||||
|
|||||||
@@ -39,10 +39,13 @@ namespace AlibabaCloud
|
|||||||
void setIpcId(long ipcId);
|
void setIpcId(long ipcId);
|
||||||
long getStoreId()const;
|
long getStoreId()const;
|
||||||
void setStoreId(long storeId);
|
void setStoreId(long storeId);
|
||||||
|
std::string getProtocolType()const;
|
||||||
|
void setProtocolType(const std::string& protocolType);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
long ipcId_;
|
long ipcId_;
|
||||||
long storeId_;
|
long storeId_;
|
||||||
|
std::string protocolType_;
|
||||||
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -49,3 +49,14 @@ void DescribeIpcLiveAddressRequest::setStoreId(long storeId)
|
|||||||
setBodyParameter("StoreId", std::to_string(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);
|
||||||
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user