Add DescribeDcdnRefreshTaskById.
This commit is contained in:
51
dcdn/src/model/DescribeDcdnRefreshTaskByIdRequest.cc
Normal file
51
dcdn/src/model/DescribeDcdnRefreshTaskByIdRequest.cc
Normal file
@@ -0,0 +1,51 @@
|
||||
/*
|
||||
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#include <alibabacloud/dcdn/model/DescribeDcdnRefreshTaskByIdRequest.h>
|
||||
|
||||
using AlibabaCloud::Dcdn::Model::DescribeDcdnRefreshTaskByIdRequest;
|
||||
|
||||
DescribeDcdnRefreshTaskByIdRequest::DescribeDcdnRefreshTaskByIdRequest() :
|
||||
RpcServiceRequest("dcdn", "2018-01-15", "DescribeDcdnRefreshTaskById")
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DescribeDcdnRefreshTaskByIdRequest::~DescribeDcdnRefreshTaskByIdRequest()
|
||||
{}
|
||||
|
||||
std::string DescribeDcdnRefreshTaskByIdRequest::getTaskId()const
|
||||
{
|
||||
return taskId_;
|
||||
}
|
||||
|
||||
void DescribeDcdnRefreshTaskByIdRequest::setTaskId(const std::string& taskId)
|
||||
{
|
||||
taskId_ = taskId;
|
||||
setParameter("TaskId", taskId);
|
||||
}
|
||||
|
||||
long DescribeDcdnRefreshTaskByIdRequest::getOwnerId()const
|
||||
{
|
||||
return ownerId_;
|
||||
}
|
||||
|
||||
void DescribeDcdnRefreshTaskByIdRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
76
dcdn/src/model/DescribeDcdnRefreshTaskByIdResult.cc
Normal file
76
dcdn/src/model/DescribeDcdnRefreshTaskByIdResult.cc
Normal file
@@ -0,0 +1,76 @@
|
||||
/*
|
||||
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#include <alibabacloud/dcdn/model/DescribeDcdnRefreshTaskByIdResult.h>
|
||||
#include <json/json.h>
|
||||
|
||||
using namespace AlibabaCloud::Dcdn;
|
||||
using namespace AlibabaCloud::Dcdn::Model;
|
||||
|
||||
DescribeDcdnRefreshTaskByIdResult::DescribeDcdnRefreshTaskByIdResult() :
|
||||
ServiceResult()
|
||||
{}
|
||||
|
||||
DescribeDcdnRefreshTaskByIdResult::DescribeDcdnRefreshTaskByIdResult(const std::string &payload) :
|
||||
ServiceResult()
|
||||
{
|
||||
parse(payload);
|
||||
}
|
||||
|
||||
DescribeDcdnRefreshTaskByIdResult::~DescribeDcdnRefreshTaskByIdResult()
|
||||
{}
|
||||
|
||||
void DescribeDcdnRefreshTaskByIdResult::parse(const std::string &payload)
|
||||
{
|
||||
Json::Reader reader;
|
||||
Json::Value value;
|
||||
reader.parse(payload, value);
|
||||
setRequestId(value["RequestId"].asString());
|
||||
auto allTasksNode = value["Tasks"]["CDNTask"];
|
||||
for (auto valueTasksCDNTask : allTasksNode)
|
||||
{
|
||||
CDNTask tasksObject;
|
||||
if(!valueTasksCDNTask["TaskId"].isNull())
|
||||
tasksObject.taskId = valueTasksCDNTask["TaskId"].asString();
|
||||
if(!valueTasksCDNTask["ObjectPath"].isNull())
|
||||
tasksObject.objectPath = valueTasksCDNTask["ObjectPath"].asString();
|
||||
if(!valueTasksCDNTask["Process"].isNull())
|
||||
tasksObject.process = valueTasksCDNTask["Process"].asString();
|
||||
if(!valueTasksCDNTask["Status"].isNull())
|
||||
tasksObject.status = valueTasksCDNTask["Status"].asString();
|
||||
if(!valueTasksCDNTask["CreationTime"].isNull())
|
||||
tasksObject.creationTime = valueTasksCDNTask["CreationTime"].asString();
|
||||
if(!valueTasksCDNTask["Description"].isNull())
|
||||
tasksObject.description = valueTasksCDNTask["Description"].asString();
|
||||
if(!valueTasksCDNTask["ObjectType"].isNull())
|
||||
tasksObject.objectType = valueTasksCDNTask["ObjectType"].asString();
|
||||
tasks_.push_back(tasksObject);
|
||||
}
|
||||
if(!value["TotalCount"].isNull())
|
||||
totalCount_ = std::stol(value["TotalCount"].asString());
|
||||
|
||||
}
|
||||
|
||||
long DescribeDcdnRefreshTaskByIdResult::getTotalCount()const
|
||||
{
|
||||
return totalCount_;
|
||||
}
|
||||
|
||||
std::vector<DescribeDcdnRefreshTaskByIdResult::CDNTask> DescribeDcdnRefreshTaskByIdResult::getTasks()const
|
||||
{
|
||||
return tasks_;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user