Add support for IoT jobs, including job management and query APIs like CreateJob, UpdateJob, QueryJob, CancelJob, ListTask, QueryTask, QueryJobStatistics etc.

This commit is contained in:
sdk-team
2021-01-13 08:39:41 +00:00
parent e8a74f4418
commit 9d21a76b23
104 changed files with 4773 additions and 0 deletions

View File

@@ -27,6 +27,17 @@ QueryDeviceEventDataRequest::QueryDeviceEventDataRequest() :
QueryDeviceEventDataRequest::~QueryDeviceEventDataRequest()
{}
std::string QueryDeviceEventDataRequest::getRealTenantId()const
{
return realTenantId_;
}
void QueryDeviceEventDataRequest::setRealTenantId(const std::string& realTenantId)
{
realTenantId_ = realTenantId;
setParameter("RealTenantId", realTenantId);
}
long QueryDeviceEventDataRequest::getStartTime()const
{
return startTime_;
@@ -49,6 +60,17 @@ void QueryDeviceEventDataRequest::setAccessKeyId(const std::string& accessKeyId)
setParameter("AccessKeyId", accessKeyId);
}
std::string QueryDeviceEventDataRequest::getRealTripartiteKey()const
{
return realTripartiteKey_;
}
void QueryDeviceEventDataRequest::setRealTripartiteKey(const std::string& realTripartiteKey)
{
realTripartiteKey_ = realTripartiteKey;
setParameter("RealTripartiteKey", realTripartiteKey);
}
std::string QueryDeviceEventDataRequest::getIotId()const
{
return iotId_;