| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- /*
- * 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_DATAWORKS_PUBLIC_MODEL_UPDATEFILEREQUEST_H_
- #define ALIBABACLOUD_DATAWORKS_PUBLIC_MODEL_UPDATEFILEREQUEST_H_
- #include <alibabacloud/dataworks-public/Dataworks_publicExport.h>
- #include <alibabacloud/core/RpcServiceRequest.h>
- #include <string>
- #include <vector>
- #include <map>
- namespace AlibabaCloud {
- namespace Dataworks_public {
- namespace Model {
- class ALIBABACLOUD_DATAWORKS_PUBLIC_EXPORT UpdateFileRequest : public RpcServiceRequest {
- public:
- UpdateFileRequest();
- ~UpdateFileRequest();
- std::string getOutputList() const;
- void setOutputList(const std::string &outputList);
- std::string getImageId() const;
- void setImageId(const std::string &imageId);
- std::string getDependentNodeIdList() const;
- void setDependentNodeIdList(const std::string &dependentNodeIdList);
- std::string getContent() const;
- void setContent(const std::string &content);
- std::string getProjectIdentifier() const;
- void setProjectIdentifier(const std::string &projectIdentifier);
- int getTimeout() const;
- void setTimeout(int timeout);
- bool getStartImmediately() const;
- void setStartImmediately(bool startImmediately);
- long getProjectId() const;
- void setProjectId(long projectId);
- std::string getAdvancedSettings() const;
- void setAdvancedSettings(const std::string &advancedSettings);
- long getStartEffectDate() const;
- void setStartEffectDate(long startEffectDate);
- std::string getCycleType() const;
- void setCycleType(const std::string &cycleType);
- long getFileId() const;
- void setFileId(long fileId);
- int getAutoRerunIntervalMillis() const;
- void setAutoRerunIntervalMillis(int autoRerunIntervalMillis);
- std::string getOwner() const;
- void setOwner(const std::string &owner);
- std::string getInputList() const;
- void setInputList(const std::string &inputList);
- bool getApplyScheduleImmediately() const;
- void setApplyScheduleImmediately(bool applyScheduleImmediately);
- std::string getRerunMode() const;
- void setRerunMode(const std::string &rerunMode);
- std::string getConnectionName() const;
- void setConnectionName(const std::string &connectionName);
- std::string getOutputParameters() const;
- void setOutputParameters(const std::string &outputParameters);
- std::string getParaValue() const;
- void setParaValue(const std::string ¶Value);
- std::string getResourceGroupIdentifier() const;
- void setResourceGroupIdentifier(const std::string &resourceGroupIdentifier);
- int getAutoRerunTimes() const;
- void setAutoRerunTimes(int autoRerunTimes);
- std::string getCronExpress() const;
- void setCronExpress(const std::string &cronExpress);
- bool getIgnoreParentSkipRunningProperty() const;
- void setIgnoreParentSkipRunningProperty(bool ignoreParentSkipRunningProperty);
- long getEndEffectDate() const;
- void setEndEffectDate(long endEffectDate);
- std::string getFileName() const;
- void setFileName(const std::string &fileName);
- std::string getInputParameters() const;
- void setInputParameters(const std::string &inputParameters);
- bool getStop() const;
- void setStop(bool stop);
- std::string getDependentType() const;
- void setDependentType(const std::string &dependentType);
- std::string getFileFolderPath() const;
- void setFileFolderPath(const std::string &fileFolderPath);
- std::string getFileDescription() const;
- void setFileDescription(const std::string &fileDescription);
- bool getAutoParsing() const;
- void setAutoParsing(bool autoParsing);
- std::string getSchedulerType() const;
- void setSchedulerType(const std::string &schedulerType);
- private:
- std::string outputList_;
- std::string imageId_;
- std::string dependentNodeIdList_;
- std::string content_;
- std::string projectIdentifier_;
- int timeout_;
- bool startImmediately_;
- long projectId_;
- std::string advancedSettings_;
- long startEffectDate_;
- std::string cycleType_;
- long fileId_;
- int autoRerunIntervalMillis_;
- std::string owner_;
- std::string inputList_;
- bool applyScheduleImmediately_;
- std::string rerunMode_;
- std::string connectionName_;
- std::string outputParameters_;
- std::string paraValue_;
- std::string resourceGroupIdentifier_;
- int autoRerunTimes_;
- std::string cronExpress_;
- bool ignoreParentSkipRunningProperty_;
- long endEffectDate_;
- std::string fileName_;
- std::string inputParameters_;
- bool stop_;
- std::string dependentType_;
- std::string fileFolderPath_;
- std::string fileDescription_;
- bool autoParsing_;
- std::string schedulerType_;
- };
- } // namespace Model
- } // namespace Dataworks_public
- } // namespace AlibabaCloud
- #endif // !ALIBABACLOUD_DATAWORKS_PUBLIC_MODEL_UPDATEFILEREQUEST_H_
|