69 lines
2.7 KiB
C++
69 lines
2.7 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/alb/model/RemoveServersFromServerGroupRequest.h>
|
|
|
|
using AlibabaCloud::Alb::Model::RemoveServersFromServerGroupRequest;
|
|
|
|
RemoveServersFromServerGroupRequest::RemoveServersFromServerGroupRequest()
|
|
: RpcServiceRequest("alb", "2020-06-16", "RemoveServersFromServerGroup") {
|
|
setMethod(HttpRequest::Method::Post);
|
|
}
|
|
|
|
RemoveServersFromServerGroupRequest::~RemoveServersFromServerGroupRequest() {}
|
|
|
|
std::string RemoveServersFromServerGroupRequest::getClientToken() const {
|
|
return clientToken_;
|
|
}
|
|
|
|
void RemoveServersFromServerGroupRequest::setClientToken(const std::string &clientToken) {
|
|
clientToken_ = clientToken;
|
|
setParameter(std::string("ClientToken"), clientToken);
|
|
}
|
|
|
|
std::string RemoveServersFromServerGroupRequest::getServerGroupId() const {
|
|
return serverGroupId_;
|
|
}
|
|
|
|
void RemoveServersFromServerGroupRequest::setServerGroupId(const std::string &serverGroupId) {
|
|
serverGroupId_ = serverGroupId;
|
|
setParameter(std::string("ServerGroupId"), serverGroupId);
|
|
}
|
|
|
|
std::vector<RemoveServersFromServerGroupRequest::Servers> RemoveServersFromServerGroupRequest::getServers() const {
|
|
return servers_;
|
|
}
|
|
|
|
void RemoveServersFromServerGroupRequest::setServers(const std::vector<RemoveServersFromServerGroupRequest::Servers> &servers) {
|
|
servers_ = servers;
|
|
for(int dep1 = 0; dep1 != servers.size(); dep1++) {
|
|
setParameter(std::string("Servers") + "." + std::to_string(dep1 + 1) + ".ServerType", servers[dep1].serverType);
|
|
setParameter(std::string("Servers") + "." + std::to_string(dep1 + 1) + ".Port", std::to_string(servers[dep1].port));
|
|
setParameter(std::string("Servers") + "." + std::to_string(dep1 + 1) + ".ServerIp", servers[dep1].serverIp);
|
|
setParameter(std::string("Servers") + "." + std::to_string(dep1 + 1) + ".ServerId", servers[dep1].serverId);
|
|
}
|
|
}
|
|
|
|
bool RemoveServersFromServerGroupRequest::getDryRun() const {
|
|
return dryRun_;
|
|
}
|
|
|
|
void RemoveServersFromServerGroupRequest::setDryRun(bool dryRun) {
|
|
dryRun_ = dryRun;
|
|
setParameter(std::string("DryRun"), dryRun ? "true" : "false");
|
|
}
|
|
|