118 lines
3.8 KiB
C++
118 lines
3.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/slb/model/DescribeDomainExtensionsRequest.h>
|
|
|
|
using AlibabaCloud::Slb::Model::DescribeDomainExtensionsRequest;
|
|
|
|
DescribeDomainExtensionsRequest::DescribeDomainExtensionsRequest()
|
|
: RpcServiceRequest("slb", "2014-05-15", "DescribeDomainExtensions") {
|
|
setMethod(HttpRequest::Method::Post);
|
|
}
|
|
|
|
DescribeDomainExtensionsRequest::~DescribeDomainExtensionsRequest() {}
|
|
|
|
std::string DescribeDomainExtensionsRequest::getAccess_key_id() const {
|
|
return access_key_id_;
|
|
}
|
|
|
|
void DescribeDomainExtensionsRequest::setAccess_key_id(const std::string &access_key_id) {
|
|
access_key_id_ = access_key_id;
|
|
setParameter(std::string("access_key_id"), access_key_id);
|
|
}
|
|
|
|
long DescribeDomainExtensionsRequest::getResourceOwnerId() const {
|
|
return resourceOwnerId_;
|
|
}
|
|
|
|
void DescribeDomainExtensionsRequest::setResourceOwnerId(long resourceOwnerId) {
|
|
resourceOwnerId_ = resourceOwnerId;
|
|
setParameter(std::string("ResourceOwnerId"), std::to_string(resourceOwnerId));
|
|
}
|
|
|
|
std::string DescribeDomainExtensionsRequest::getRegionId() const {
|
|
return regionId_;
|
|
}
|
|
|
|
void DescribeDomainExtensionsRequest::setRegionId(const std::string ®ionId) {
|
|
regionId_ = regionId;
|
|
setParameter(std::string("RegionId"), regionId);
|
|
}
|
|
|
|
std::string DescribeDomainExtensionsRequest::getDomainExtensionId() const {
|
|
return domainExtensionId_;
|
|
}
|
|
|
|
void DescribeDomainExtensionsRequest::setDomainExtensionId(const std::string &domainExtensionId) {
|
|
domainExtensionId_ = domainExtensionId;
|
|
setParameter(std::string("DomainExtensionId"), domainExtensionId);
|
|
}
|
|
|
|
int DescribeDomainExtensionsRequest::getListenerPort() const {
|
|
return listenerPort_;
|
|
}
|
|
|
|
void DescribeDomainExtensionsRequest::setListenerPort(int listenerPort) {
|
|
listenerPort_ = listenerPort;
|
|
setParameter(std::string("ListenerPort"), std::to_string(listenerPort));
|
|
}
|
|
|
|
std::string DescribeDomainExtensionsRequest::getResourceOwnerAccount() const {
|
|
return resourceOwnerAccount_;
|
|
}
|
|
|
|
void DescribeDomainExtensionsRequest::setResourceOwnerAccount(const std::string &resourceOwnerAccount) {
|
|
resourceOwnerAccount_ = resourceOwnerAccount;
|
|
setParameter(std::string("ResourceOwnerAccount"), resourceOwnerAccount);
|
|
}
|
|
|
|
std::string DescribeDomainExtensionsRequest::getOwnerAccount() const {
|
|
return ownerAccount_;
|
|
}
|
|
|
|
void DescribeDomainExtensionsRequest::setOwnerAccount(const std::string &ownerAccount) {
|
|
ownerAccount_ = ownerAccount;
|
|
setParameter(std::string("OwnerAccount"), ownerAccount);
|
|
}
|
|
|
|
long DescribeDomainExtensionsRequest::getOwnerId() const {
|
|
return ownerId_;
|
|
}
|
|
|
|
void DescribeDomainExtensionsRequest::setOwnerId(long ownerId) {
|
|
ownerId_ = ownerId;
|
|
setParameter(std::string("OwnerId"), std::to_string(ownerId));
|
|
}
|
|
|
|
std::string DescribeDomainExtensionsRequest::getTags() const {
|
|
return tags_;
|
|
}
|
|
|
|
void DescribeDomainExtensionsRequest::setTags(const std::string &tags) {
|
|
tags_ = tags;
|
|
setParameter(std::string("Tags"), tags);
|
|
}
|
|
|
|
std::string DescribeDomainExtensionsRequest::getLoadBalancerId() const {
|
|
return loadBalancerId_;
|
|
}
|
|
|
|
void DescribeDomainExtensionsRequest::setLoadBalancerId(const std::string &loadBalancerId) {
|
|
loadBalancerId_ = loadBalancerId;
|
|
setParameter(std::string("LoadBalancerId"), loadBalancerId);
|
|
}
|
|
|