111 lines
2.8 KiB
C++
111 lines
2.8 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/ots/model/InsertInstanceRequest.h>
|
|
|
|
using AlibabaCloud::Ots::Model::InsertInstanceRequest;
|
|
|
|
InsertInstanceRequest::InsertInstanceRequest() :
|
|
RpcServiceRequest("ots", "2016-06-20", "InsertInstance")
|
|
{}
|
|
|
|
InsertInstanceRequest::~InsertInstanceRequest()
|
|
{}
|
|
|
|
std::string InsertInstanceRequest::getAccess_key_id()const
|
|
{
|
|
return access_key_id_;
|
|
}
|
|
|
|
void InsertInstanceRequest::setAccess_key_id(const std::string& access_key_id)
|
|
{
|
|
access_key_id_ = access_key_id;
|
|
setCoreParameter("Access_key_id", access_key_id);
|
|
}
|
|
|
|
std::string InsertInstanceRequest::getClusterType()const
|
|
{
|
|
return clusterType_;
|
|
}
|
|
|
|
void InsertInstanceRequest::setClusterType(const std::string& clusterType)
|
|
{
|
|
clusterType_ = clusterType;
|
|
setCoreParameter("ClusterType", clusterType);
|
|
}
|
|
|
|
long InsertInstanceRequest::getResourceOwnerId()const
|
|
{
|
|
return resourceOwnerId_;
|
|
}
|
|
|
|
void InsertInstanceRequest::setResourceOwnerId(long resourceOwnerId)
|
|
{
|
|
resourceOwnerId_ = resourceOwnerId;
|
|
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
|
}
|
|
|
|
std::string InsertInstanceRequest::getInstanceName()const
|
|
{
|
|
return instanceName_;
|
|
}
|
|
|
|
void InsertInstanceRequest::setInstanceName(const std::string& instanceName)
|
|
{
|
|
instanceName_ = instanceName;
|
|
setCoreParameter("InstanceName", instanceName);
|
|
}
|
|
|
|
std::string InsertInstanceRequest::getDescription()const
|
|
{
|
|
return description_;
|
|
}
|
|
|
|
void InsertInstanceRequest::setDescription(const std::string& description)
|
|
{
|
|
description_ = description;
|
|
setCoreParameter("Description", description);
|
|
}
|
|
|
|
std::vector<InsertInstanceRequest::TagInfo> InsertInstanceRequest::getTagInfo()const
|
|
{
|
|
return tagInfo_;
|
|
}
|
|
|
|
void InsertInstanceRequest::setTagInfo(const std::vector<TagInfo>& tagInfo)
|
|
{
|
|
tagInfo_ = tagInfo;
|
|
int i = 0;
|
|
for(int i = 0; i!= tagInfo.size(); i++) {
|
|
auto obj = tagInfo.at(i);
|
|
std::string str ="TagInfo."+ std::to_string(i);
|
|
setCoreParameter(str + ".TagValue", obj.tagValue);
|
|
setCoreParameter(str + ".TagKey", obj.tagKey);
|
|
}
|
|
}
|
|
|
|
std::string InsertInstanceRequest::getNetwork()const
|
|
{
|
|
return network_;
|
|
}
|
|
|
|
void InsertInstanceRequest::setNetwork(const std::string& network)
|
|
{
|
|
network_ = network;
|
|
setCoreParameter("Network", network);
|
|
}
|
|
|