| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- /*
- * 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/ListInstanceRequest.h>
- using AlibabaCloud::Ots::Model::ListInstanceRequest;
- ListInstanceRequest::ListInstanceRequest() :
- RpcServiceRequest("ots", "2016-06-20", "ListInstance")
- {}
- ListInstanceRequest::~ListInstanceRequest()
- {}
- std::string ListInstanceRequest::getAccess_key_id()const
- {
- return access_key_id_;
- }
- void ListInstanceRequest::setAccess_key_id(const std::string& access_key_id)
- {
- access_key_id_ = access_key_id;
- setCoreParameter("Access_key_id", access_key_id);
- }
- long ListInstanceRequest::getResourceOwnerId()const
- {
- return resourceOwnerId_;
- }
- void ListInstanceRequest::setResourceOwnerId(long resourceOwnerId)
- {
- resourceOwnerId_ = resourceOwnerId;
- setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
- }
- long ListInstanceRequest::getPageSize()const
- {
- return pageSize_;
- }
- void ListInstanceRequest::setPageSize(long pageSize)
- {
- pageSize_ = pageSize;
- setCoreParameter("PageSize", std::to_string(pageSize));
- }
- long ListInstanceRequest::getPageNum()const
- {
- return pageNum_;
- }
- void ListInstanceRequest::setPageNum(long pageNum)
- {
- pageNum_ = pageNum;
- setCoreParameter("PageNum", std::to_string(pageNum));
- }
- std::vector<ListInstanceRequest::TagInfo> ListInstanceRequest::getTagInfo()const
- {
- return tagInfo_;
- }
- void ListInstanceRequest::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);
- }
- }
|