| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- /*
- * 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/cloudwf/model/UpLoadMapRequest.h>
- using AlibabaCloud::Cloudwf::Model::UpLoadMapRequest;
- UpLoadMapRequest::UpLoadMapRequest() :
- RpcServiceRequest("cloudwf", "2017-03-28", "UpLoadMap")
- {}
- UpLoadMapRequest::~UpLoadMapRequest()
- {}
- std::string UpLoadMapRequest::getFileName()const
- {
- return fileName_;
- }
- void UpLoadMapRequest::setFileName(const std::string& fileName)
- {
- fileName_ = fileName;
- setCoreParameter("FileName", fileName);
- }
- std::string UpLoadMapRequest::getUploadId()const
- {
- return uploadId_;
- }
- void UpLoadMapRequest::setUploadId(const std::string& uploadId)
- {
- uploadId_ = uploadId;
- setCoreParameter("UploadId", uploadId);
- }
- std::string UpLoadMapRequest::getObjectName()const
- {
- return objectName_;
- }
- void UpLoadMapRequest::setObjectName(const std::string& objectName)
- {
- objectName_ = objectName;
- setCoreParameter("ObjectName", objectName);
- }
- int UpLoadMapRequest::getChunkIndex()const
- {
- return chunkIndex_;
- }
- void UpLoadMapRequest::setChunkIndex(int chunkIndex)
- {
- chunkIndex_ = chunkIndex;
- setCoreParameter("ChunkIndex", std::to_string(chunkIndex));
- }
- std::string UpLoadMapRequest::getAccessKeyId()const
- {
- return accessKeyId_;
- }
- void UpLoadMapRequest::setAccessKeyId(const std::string& accessKeyId)
- {
- accessKeyId_ = accessKeyId;
- setCoreParameter("AccessKeyId", accessKeyId);
- }
- int UpLoadMapRequest::getChunkCnt()const
- {
- return chunkCnt_;
- }
- void UpLoadMapRequest::setChunkCnt(int chunkCnt)
- {
- chunkCnt_ = chunkCnt;
- setCoreParameter("ChunkCnt", std::to_string(chunkCnt));
- }
|