| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- /*
- * 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.
- */
- #ifndef ALIBABACLOUD_IMM_MODEL_CREATEFILEUNCOMPRESSIONTASKREQUEST_H_
- #define ALIBABACLOUD_IMM_MODEL_CREATEFILEUNCOMPRESSIONTASKREQUEST_H_
- #include <alibabacloud/imm/ImmExport.h>
- #include <alibabacloud/core/RpcServiceRequest.h>
- #include <string>
- #include <vector>
- #include <map>
- namespace AlibabaCloud {
- namespace Imm {
- namespace Model {
- class ALIBABACLOUD_IMM_EXPORT CreateFileUncompressionTaskRequest : public RpcServiceRequest {
- public:
- struct Notification {
- struct MNS {
- std::string endpoint;
- std::string topicName;
- };
- MNS mNS;
- struct RocketMQ {
- std::string endpoint;
- std::string instanceId;
- std::string topicName;
- };
- RocketMQ rocketMQ;
- };
- struct CredentialConfig {
- struct ChainItem {
- std::string role;
- std::string roleType;
- std::string assumeRoleFor;
- };
- ChainItem chainItem;
- std::vector<ChainItem> chain;
- std::string serviceRole;
- std::string policy;
- };
- struct Target {
- std::string manifestURI;
- std::string uRI;
- };
- CreateFileUncompressionTaskRequest();
- ~CreateFileUncompressionTaskRequest();
- std::string getUserData() const;
- void setUserData(const std::string &userData);
- Notification getNotification() const;
- void setNotification(const Notification ¬ification);
- std::string getPassword() const;
- void setPassword(const std::string &password);
- std::vector<std::string> getSelectedFiles() const;
- void setSelectedFiles(const std::vector<std::string> &selectedFiles);
- std::string getNotifyEndpoint() const;
- void setNotifyEndpoint(const std::string ¬ifyEndpoint);
- std::string getProjectName() const;
- void setProjectName(const std::string &projectName);
- std::string getNotifyTopicName() const;
- void setNotifyTopicName(const std::string ¬ifyTopicName);
- CredentialConfig getCredentialConfig() const;
- void setCredentialConfig(const CredentialConfig &credentialConfig);
- Target getTarget() const;
- void setTarget(const Target &target);
- std::string getSourceURI() const;
- void setSourceURI(const std::string &sourceURI);
- private:
- std::string userData_;
- Notification notification_;
- std::string password_;
- std::vector<std::string> selectedFiles_;
- std::string notifyEndpoint_;
- std::string projectName_;
- std::string notifyTopicName_;
- CredentialConfig credentialConfig_;
- Target target_;
- std::string sourceURI_;
- };
- } // namespace Model
- } // namespace Imm
- } // namespace AlibabaCloud
- #endif // !ALIBABACLOUD_IMM_MODEL_CREATEFILEUNCOMPRESSIONTASKREQUEST_H_
|