109 lines
4.0 KiB
C++
109 lines
4.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/cbn/model/DescribeCenGeographicSpanRemainingBandwidthRequest.h>
|
|
|
|
using AlibabaCloud::Cbn::Model::DescribeCenGeographicSpanRemainingBandwidthRequest;
|
|
|
|
DescribeCenGeographicSpanRemainingBandwidthRequest::DescribeCenGeographicSpanRemainingBandwidthRequest()
|
|
: RpcServiceRequest("cbn", "2017-09-12", "DescribeCenGeographicSpanRemainingBandwidth") {
|
|
setMethod(HttpRequest::Method::Post);
|
|
}
|
|
|
|
DescribeCenGeographicSpanRemainingBandwidthRequest::~DescribeCenGeographicSpanRemainingBandwidthRequest() {}
|
|
|
|
long DescribeCenGeographicSpanRemainingBandwidthRequest::getResourceOwnerId() const {
|
|
return resourceOwnerId_;
|
|
}
|
|
|
|
void DescribeCenGeographicSpanRemainingBandwidthRequest::setResourceOwnerId(long resourceOwnerId) {
|
|
resourceOwnerId_ = resourceOwnerId;
|
|
setParameter(std::string("ResourceOwnerId"), std::to_string(resourceOwnerId));
|
|
}
|
|
|
|
std::string DescribeCenGeographicSpanRemainingBandwidthRequest::getCenId() const {
|
|
return cenId_;
|
|
}
|
|
|
|
void DescribeCenGeographicSpanRemainingBandwidthRequest::setCenId(const std::string &cenId) {
|
|
cenId_ = cenId;
|
|
setParameter(std::string("CenId"), cenId);
|
|
}
|
|
|
|
int DescribeCenGeographicSpanRemainingBandwidthRequest::getPageNumber() const {
|
|
return pageNumber_;
|
|
}
|
|
|
|
void DescribeCenGeographicSpanRemainingBandwidthRequest::setPageNumber(int pageNumber) {
|
|
pageNumber_ = pageNumber;
|
|
setParameter(std::string("PageNumber"), std::to_string(pageNumber));
|
|
}
|
|
|
|
int DescribeCenGeographicSpanRemainingBandwidthRequest::getPageSize() const {
|
|
return pageSize_;
|
|
}
|
|
|
|
void DescribeCenGeographicSpanRemainingBandwidthRequest::setPageSize(int pageSize) {
|
|
pageSize_ = pageSize;
|
|
setParameter(std::string("PageSize"), std::to_string(pageSize));
|
|
}
|
|
|
|
std::string DescribeCenGeographicSpanRemainingBandwidthRequest::getGeographicRegionBId() const {
|
|
return geographicRegionBId_;
|
|
}
|
|
|
|
void DescribeCenGeographicSpanRemainingBandwidthRequest::setGeographicRegionBId(const std::string &geographicRegionBId) {
|
|
geographicRegionBId_ = geographicRegionBId;
|
|
setParameter(std::string("GeographicRegionBId"), geographicRegionBId);
|
|
}
|
|
|
|
std::string DescribeCenGeographicSpanRemainingBandwidthRequest::getGeographicRegionAId() const {
|
|
return geographicRegionAId_;
|
|
}
|
|
|
|
void DescribeCenGeographicSpanRemainingBandwidthRequest::setGeographicRegionAId(const std::string &geographicRegionAId) {
|
|
geographicRegionAId_ = geographicRegionAId;
|
|
setParameter(std::string("GeographicRegionAId"), geographicRegionAId);
|
|
}
|
|
|
|
std::string DescribeCenGeographicSpanRemainingBandwidthRequest::getResourceOwnerAccount() const {
|
|
return resourceOwnerAccount_;
|
|
}
|
|
|
|
void DescribeCenGeographicSpanRemainingBandwidthRequest::setResourceOwnerAccount(const std::string &resourceOwnerAccount) {
|
|
resourceOwnerAccount_ = resourceOwnerAccount;
|
|
setParameter(std::string("ResourceOwnerAccount"), resourceOwnerAccount);
|
|
}
|
|
|
|
std::string DescribeCenGeographicSpanRemainingBandwidthRequest::getOwnerAccount() const {
|
|
return ownerAccount_;
|
|
}
|
|
|
|
void DescribeCenGeographicSpanRemainingBandwidthRequest::setOwnerAccount(const std::string &ownerAccount) {
|
|
ownerAccount_ = ownerAccount;
|
|
setParameter(std::string("OwnerAccount"), ownerAccount);
|
|
}
|
|
|
|
long DescribeCenGeographicSpanRemainingBandwidthRequest::getOwnerId() const {
|
|
return ownerId_;
|
|
}
|
|
|
|
void DescribeCenGeographicSpanRemainingBandwidthRequest::setOwnerId(long ownerId) {
|
|
ownerId_ = ownerId;
|
|
setParameter(std::string("OwnerId"), std::to_string(ownerId));
|
|
}
|
|
|