Add CreateProduct API ProductSecret in Response.

This commit is contained in:
sdk-team
2020-06-12 13:50:54 +08:00
parent 1855010705
commit 9ae74a6524
383 changed files with 17621 additions and 2110 deletions

View File

@@ -27,17 +27,6 @@ QueryThingModelRequest::QueryThingModelRequest() :
QueryThingModelRequest::~QueryThingModelRequest()
{}
std::string QueryThingModelRequest::getProductKey()const
{
return productKey_;
}
void QueryThingModelRequest::setProductKey(const std::string& productKey)
{
productKey_ = productKey;
setParameter("ProductKey", productKey);
}
std::string QueryThingModelRequest::getAccessKeyId()const
{
return accessKeyId_;
@@ -71,6 +60,39 @@ void QueryThingModelRequest::setIotInstanceId(const std::string& iotInstanceId)
setParameter("IotInstanceId", iotInstanceId);
}
std::string QueryThingModelRequest::getProductKey()const
{
return productKey_;
}
void QueryThingModelRequest::setProductKey(const std::string& productKey)
{
productKey_ = productKey;
setParameter("ProductKey", productKey);
}
std::string QueryThingModelRequest::getApiProduct()const
{
return apiProduct_;
}
void QueryThingModelRequest::setApiProduct(const std::string& apiProduct)
{
apiProduct_ = apiProduct;
setBodyParameter("ApiProduct", apiProduct);
}
std::string QueryThingModelRequest::getApiRevision()const
{
return apiRevision_;
}
void QueryThingModelRequest::setApiRevision(const std::string& apiRevision)
{
apiRevision_ = apiRevision;
setBodyParameter("ApiRevision", apiRevision);
}
std::string QueryThingModelRequest::getModelVersion()const
{
return modelVersion_;