UpdateFileRequest.h 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. /*
  2. * Copyright 2009-2017 Alibaba Cloud All rights reserved.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. #ifndef ALIBABACLOUD_DATAWORKS_PUBLIC_MODEL_UPDATEFILEREQUEST_H_
  17. #define ALIBABACLOUD_DATAWORKS_PUBLIC_MODEL_UPDATEFILEREQUEST_H_
  18. #include <alibabacloud/dataworks-public/Dataworks_publicExport.h>
  19. #include <alibabacloud/core/RpcServiceRequest.h>
  20. #include <string>
  21. #include <vector>
  22. #include <map>
  23. namespace AlibabaCloud {
  24. namespace Dataworks_public {
  25. namespace Model {
  26. class ALIBABACLOUD_DATAWORKS_PUBLIC_EXPORT UpdateFileRequest : public RpcServiceRequest {
  27. public:
  28. UpdateFileRequest();
  29. ~UpdateFileRequest();
  30. std::string getOutputList() const;
  31. void setOutputList(const std::string &outputList);
  32. std::string getImageId() const;
  33. void setImageId(const std::string &imageId);
  34. std::string getDependentNodeIdList() const;
  35. void setDependentNodeIdList(const std::string &dependentNodeIdList);
  36. std::string getContent() const;
  37. void setContent(const std::string &content);
  38. std::string getProjectIdentifier() const;
  39. void setProjectIdentifier(const std::string &projectIdentifier);
  40. int getTimeout() const;
  41. void setTimeout(int timeout);
  42. bool getStartImmediately() const;
  43. void setStartImmediately(bool startImmediately);
  44. long getProjectId() const;
  45. void setProjectId(long projectId);
  46. std::string getAdvancedSettings() const;
  47. void setAdvancedSettings(const std::string &advancedSettings);
  48. long getStartEffectDate() const;
  49. void setStartEffectDate(long startEffectDate);
  50. std::string getCycleType() const;
  51. void setCycleType(const std::string &cycleType);
  52. long getFileId() const;
  53. void setFileId(long fileId);
  54. int getAutoRerunIntervalMillis() const;
  55. void setAutoRerunIntervalMillis(int autoRerunIntervalMillis);
  56. std::string getOwner() const;
  57. void setOwner(const std::string &owner);
  58. std::string getInputList() const;
  59. void setInputList(const std::string &inputList);
  60. bool getApplyScheduleImmediately() const;
  61. void setApplyScheduleImmediately(bool applyScheduleImmediately);
  62. std::string getRerunMode() const;
  63. void setRerunMode(const std::string &rerunMode);
  64. std::string getConnectionName() const;
  65. void setConnectionName(const std::string &connectionName);
  66. std::string getOutputParameters() const;
  67. void setOutputParameters(const std::string &outputParameters);
  68. std::string getParaValue() const;
  69. void setParaValue(const std::string &paraValue);
  70. std::string getResourceGroupIdentifier() const;
  71. void setResourceGroupIdentifier(const std::string &resourceGroupIdentifier);
  72. int getAutoRerunTimes() const;
  73. void setAutoRerunTimes(int autoRerunTimes);
  74. std::string getCronExpress() const;
  75. void setCronExpress(const std::string &cronExpress);
  76. bool getIgnoreParentSkipRunningProperty() const;
  77. void setIgnoreParentSkipRunningProperty(bool ignoreParentSkipRunningProperty);
  78. long getEndEffectDate() const;
  79. void setEndEffectDate(long endEffectDate);
  80. std::string getFileName() const;
  81. void setFileName(const std::string &fileName);
  82. std::string getInputParameters() const;
  83. void setInputParameters(const std::string &inputParameters);
  84. bool getStop() const;
  85. void setStop(bool stop);
  86. std::string getDependentType() const;
  87. void setDependentType(const std::string &dependentType);
  88. std::string getFileFolderPath() const;
  89. void setFileFolderPath(const std::string &fileFolderPath);
  90. std::string getFileDescription() const;
  91. void setFileDescription(const std::string &fileDescription);
  92. bool getAutoParsing() const;
  93. void setAutoParsing(bool autoParsing);
  94. std::string getSchedulerType() const;
  95. void setSchedulerType(const std::string &schedulerType);
  96. private:
  97. std::string outputList_;
  98. std::string imageId_;
  99. std::string dependentNodeIdList_;
  100. std::string content_;
  101. std::string projectIdentifier_;
  102. int timeout_;
  103. bool startImmediately_;
  104. long projectId_;
  105. std::string advancedSettings_;
  106. long startEffectDate_;
  107. std::string cycleType_;
  108. long fileId_;
  109. int autoRerunIntervalMillis_;
  110. std::string owner_;
  111. std::string inputList_;
  112. bool applyScheduleImmediately_;
  113. std::string rerunMode_;
  114. std::string connectionName_;
  115. std::string outputParameters_;
  116. std::string paraValue_;
  117. std::string resourceGroupIdentifier_;
  118. int autoRerunTimes_;
  119. std::string cronExpress_;
  120. bool ignoreParentSkipRunningProperty_;
  121. long endEffectDate_;
  122. std::string fileName_;
  123. std::string inputParameters_;
  124. bool stop_;
  125. std::string dependentType_;
  126. std::string fileFolderPath_;
  127. std::string fileDescription_;
  128. bool autoParsing_;
  129. std::string schedulerType_;
  130. };
  131. } // namespace Model
  132. } // namespace Dataworks_public
  133. } // namespace AlibabaCloud
  134. #endif // !ALIBABACLOUD_DATAWORKS_PUBLIC_MODEL_UPDATEFILEREQUEST_H_