| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- /*
- * 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/hbase/model/UnTagResourcesRequest.h>
- 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<std::string> UnTagResourcesRequest::getResourceId()const
- {
- return resourceId_;
- }
- void UnTagResourcesRequest::setResourceId(const std::vector<std::string>& resourceId)
- {
- resourceId_ = resourceId;
- for(int dep1 = 0; dep1!= resourceId.size(); dep1++) {
- setCoreParameter("ResourceId."+ std::to_string(dep1), resourceId.at(dep1));
- }
- }
- std::vector<std::string> UnTagResourcesRequest::getTagKey()const
- {
- return tagKey_;
- }
- void UnTagResourcesRequest::setTagKey(const std::vector<std::string>& tagKey)
- {
- tagKey_ = tagKey;
- for(int dep1 = 0; dep1!= tagKey.size(); dep1++) {
- setCoreParameter("TagKey."+ std::to_string(dep1), tagKey.at(dep1));
- }
- }
|