Public beta version.

This commit is contained in:
sdk-team
2020-07-17 11:47:07 +08:00
parent 1ac661d847
commit 44130b741e
9 changed files with 275 additions and 1 deletions

View File

@@ -483,6 +483,42 @@ AliyuncvcClient::CreateUserInternationalOutcomeCallable AliyuncvcClient::createU
return task->get_future();
}
AliyuncvcClient::CustomGonggeLayoutOutcome AliyuncvcClient::customGonggeLayout(const CustomGonggeLayoutRequest &request) const
{
auto endpointOutcome = endpointProvider_->getEndpoint();
if (!endpointOutcome.isSuccess())
return CustomGonggeLayoutOutcome(endpointOutcome.error());
auto outcome = makeRequest(endpointOutcome.result(), request);
if (outcome.isSuccess())
return CustomGonggeLayoutOutcome(CustomGonggeLayoutResult(outcome.result()));
else
return CustomGonggeLayoutOutcome(outcome.error());
}
void AliyuncvcClient::customGonggeLayoutAsync(const CustomGonggeLayoutRequest& request, const CustomGonggeLayoutAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context) const
{
auto fn = [this, request, handler, context]()
{
handler(this, request, customGonggeLayout(request), context);
};
asyncExecute(new Runnable(fn));
}
AliyuncvcClient::CustomGonggeLayoutOutcomeCallable AliyuncvcClient::customGonggeLayoutCallable(const CustomGonggeLayoutRequest &request) const
{
auto task = std::make_shared<std::packaged_task<CustomGonggeLayoutOutcome()>>(
[this, request]()
{
return this->customGonggeLayout(request);
});
asyncExecute(new Runnable([task]() { (*task)(); }));
return task->get_future();
}
AliyuncvcClient::DeleteDeviceOutcome AliyuncvcClient::deleteDevice(const DeleteDeviceRequest &request) const
{
auto endpointOutcome = endpointProvider_->getEndpoint();

View 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/aliyuncvc/model/CustomGonggeLayoutRequest.h>
using AlibabaCloud::Aliyuncvc::Model::CustomGonggeLayoutRequest;
CustomGonggeLayoutRequest::CustomGonggeLayoutRequest() :
RpcServiceRequest("aliyuncvc", "2019-10-30", "CustomGonggeLayout")
{
setMethod(HttpRequest::Method::Post);
}
CustomGonggeLayoutRequest::~CustomGonggeLayoutRequest()
{}
std::string CustomGonggeLayoutRequest::getMeetingUUID()const
{
return meetingUUID_;
}
void CustomGonggeLayoutRequest::setMeetingUUID(const std::string& meetingUUID)
{
meetingUUID_ = meetingUUID;
setBodyParameter("MeetingUUID", meetingUUID);
}
std::string CustomGonggeLayoutRequest::getLayoutSolution()const
{
return layoutSolution_;
}
void CustomGonggeLayoutRequest::setLayoutSolution(const std::string& layoutSolution)
{
layoutSolution_ = layoutSolution;
setBodyParameter("LayoutSolution", layoutSolution);
}

View File

@@ -0,0 +1,65 @@
/*
* 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/aliyuncvc/model/CustomGonggeLayoutResult.h>
#include <json/json.h>
using namespace AlibabaCloud::Aliyuncvc;
using namespace AlibabaCloud::Aliyuncvc::Model;
CustomGonggeLayoutResult::CustomGonggeLayoutResult() :
ServiceResult()
{}
CustomGonggeLayoutResult::CustomGonggeLayoutResult(const std::string &payload) :
ServiceResult()
{
parse(payload);
}
CustomGonggeLayoutResult::~CustomGonggeLayoutResult()
{}
void CustomGonggeLayoutResult::parse(const std::string &payload)
{
Json::Reader reader;
Json::Value value;
reader.parse(payload, value);
setRequestId(value["RequestId"].asString());
if(!value["ErrorCode"].isNull())
errorCode_ = std::stoi(value["ErrorCode"].asString());
if(!value["Success"].isNull())
success_ = value["Success"].asString() == "true";
if(!value["Message"].isNull())
message_ = value["Message"].asString();
}
std::string CustomGonggeLayoutResult::getMessage()const
{
return message_;
}
int CustomGonggeLayoutResult::getErrorCode()const
{
return errorCode_;
}
bool CustomGonggeLayoutResult::getSuccess()const
{
return success_;
}