Files
aliyun-openapi-cpp-sdk/iot/src/model/BatchGetEdgeInstanceChannelRequest.cc
2020-06-12 13:50:54 +08:00

109 lines
3.0 KiB
C++

/*
* 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/iot/model/BatchGetEdgeInstanceChannelRequest.h>
using AlibabaCloud::Iot::Model::BatchGetEdgeInstanceChannelRequest;
BatchGetEdgeInstanceChannelRequest::BatchGetEdgeInstanceChannelRequest() :
RpcServiceRequest("iot", "2018-01-20", "BatchGetEdgeInstanceChannel")
{
setMethod(HttpRequest::Method::Post);
}
BatchGetEdgeInstanceChannelRequest::~BatchGetEdgeInstanceChannelRequest()
{}
std::string BatchGetEdgeInstanceChannelRequest::getAccessKeyId()const
{
return accessKeyId_;
}
void BatchGetEdgeInstanceChannelRequest::setAccessKeyId(const std::string& accessKeyId)
{
accessKeyId_ = accessKeyId;
setParameter("AccessKeyId", accessKeyId);
}
std::string BatchGetEdgeInstanceChannelRequest::getDriverId()const
{
return driverId_;
}
void BatchGetEdgeInstanceChannelRequest::setDriverId(const std::string& driverId)
{
driverId_ = driverId;
setParameter("DriverId", driverId);
}
std::string BatchGetEdgeInstanceChannelRequest::getIotInstanceId()const
{
return iotInstanceId_;
}
void BatchGetEdgeInstanceChannelRequest::setIotInstanceId(const std::string& iotInstanceId)
{
iotInstanceId_ = iotInstanceId;
setParameter("IotInstanceId", iotInstanceId);
}
std::string BatchGetEdgeInstanceChannelRequest::getInstanceId()const
{
return instanceId_;
}
void BatchGetEdgeInstanceChannelRequest::setInstanceId(const std::string& instanceId)
{
instanceId_ = instanceId;
setParameter("InstanceId", instanceId);
}
std::string BatchGetEdgeInstanceChannelRequest::getApiProduct()const
{
return apiProduct_;
}
void BatchGetEdgeInstanceChannelRequest::setApiProduct(const std::string& apiProduct)
{
apiProduct_ = apiProduct;
setBodyParameter("ApiProduct", apiProduct);
}
std::string BatchGetEdgeInstanceChannelRequest::getApiRevision()const
{
return apiRevision_;
}
void BatchGetEdgeInstanceChannelRequest::setApiRevision(const std::string& apiRevision)
{
apiRevision_ = apiRevision;
setBodyParameter("ApiRevision", apiRevision);
}
std::vector<std::string> BatchGetEdgeInstanceChannelRequest::getChannelIds()const
{
return channelIds_;
}
void BatchGetEdgeInstanceChannelRequest::setChannelIds(const std::vector<std::string>& channelIds)
{
channelIds_ = channelIds;
for(int dep1 = 0; dep1!= channelIds.size(); dep1++) {
setParameter("ChannelIds."+ std::to_string(dep1), channelIds.at(dep1));
}
}