/* * 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 using AlibabaCloud::HBase::Model::UnTagResourcesRequest; UnTagResourcesRequest::UnTagResourcesRequest() : RpcServiceRequest("hbase", "2019-01-01", "UnTagResources") { setMethod(HttpRequest::Method::Post); } UnTagResourcesRequest::~UnTagResourcesRequest() {} std::string UnTagResourcesRequest::getRegionId()const { return regionId_; } void UnTagResourcesRequest::setRegionId(const std::string& regionId) { regionId_ = regionId; setCoreParameter("RegionId", regionId); } bool UnTagResourcesRequest::getAll()const { return all_; } void UnTagResourcesRequest::setAll(bool all) { all_ = all; setCoreParameter("All", all ? "true" : "false"); } std::vector UnTagResourcesRequest::getResourceId()const { return resourceId_; } void UnTagResourcesRequest::setResourceId(const std::vector& resourceId) { resourceId_ = resourceId; for(int dep1 = 0; dep1!= resourceId.size(); dep1++) { setCoreParameter("ResourceId."+ std::to_string(dep1), resourceId.at(dep1)); } } std::vector UnTagResourcesRequest::getTagKey()const { return tagKey_; } void UnTagResourcesRequest::setTagKey(const std::vector& tagKey) { tagKey_ = tagKey; for(int dep1 = 0; dep1!= tagKey.size(); dep1++) { setCoreParameter("TagKey."+ std::to_string(dep1), tagKey.at(dep1)); } }