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:
@@ -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_;
|
||||
|
||||
Reference in New Issue
Block a user