| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- /*
- * 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/alidns/model/DescribeDomainLogsRequest.h>
- using AlibabaCloud::Alidns::Model::DescribeDomainLogsRequest;
- DescribeDomainLogsRequest::DescribeDomainLogsRequest() :
- RpcServiceRequest("alidns", "2015-01-09", "DescribeDomainLogs")
- {
- setMethod(HttpRequest::Method::Post);
- }
- DescribeDomainLogsRequest::~DescribeDomainLogsRequest()
- {}
- std::string DescribeDomainLogsRequest::getGroupId()const
- {
- return groupId_;
- }
- void DescribeDomainLogsRequest::setGroupId(const std::string& groupId)
- {
- groupId_ = groupId;
- setParameter("GroupId", groupId);
- }
- std::string DescribeDomainLogsRequest::getStartDate()const
- {
- return startDate_;
- }
- void DescribeDomainLogsRequest::setStartDate(const std::string& startDate)
- {
- startDate_ = startDate;
- setParameter("StartDate", startDate);
- }
- std::string DescribeDomainLogsRequest::getType()const
- {
- return type_;
- }
- void DescribeDomainLogsRequest::setType(const std::string& type)
- {
- type_ = type;
- setParameter("Type", type);
- }
- long DescribeDomainLogsRequest::getPageNumber()const
- {
- return pageNumber_;
- }
- void DescribeDomainLogsRequest::setPageNumber(long pageNumber)
- {
- pageNumber_ = pageNumber;
- setParameter("PageNumber", std::to_string(pageNumber));
- }
- std::string DescribeDomainLogsRequest::getEndDate()const
- {
- return endDate_;
- }
- void DescribeDomainLogsRequest::setEndDate(const std::string& endDate)
- {
- endDate_ = endDate;
- setParameter("EndDate", endDate);
- }
- std::string DescribeDomainLogsRequest::getUserClientIp()const
- {
- return userClientIp_;
- }
- void DescribeDomainLogsRequest::setUserClientIp(const std::string& userClientIp)
- {
- userClientIp_ = userClientIp;
- setParameter("UserClientIp", userClientIp);
- }
- long DescribeDomainLogsRequest::getPageSize()const
- {
- return pageSize_;
- }
- void DescribeDomainLogsRequest::setPageSize(long pageSize)
- {
- pageSize_ = pageSize;
- setParameter("PageSize", std::to_string(pageSize));
- }
- std::string DescribeDomainLogsRequest::getLang()const
- {
- return lang_;
- }
- void DescribeDomainLogsRequest::setLang(const std::string& lang)
- {
- lang_ = lang;
- setParameter("Lang", lang);
- }
- std::string DescribeDomainLogsRequest::getKeyWord()const
- {
- return keyWord_;
- }
- void DescribeDomainLogsRequest::setKeyWord(const std::string& keyWord)
- {
- keyWord_ = keyWord;
- setParameter("KeyWord", keyWord);
- }
|