| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- /*
- * 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 <string>
- #include <vector>
- #include <alibabacloud/core/RpcServiceRequest.h>
- #include <alibabacloud/dataworks-public/Dataworks_publicExport.h>
- 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 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);
- long getProjectId()const;
- void setProjectId(long projectId);
- 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);
- std::string getRerunMode()const;
- void setRerunMode(const std::string& rerunMode);
- std::string getConnectionName()const;
- void setConnectionName(const std::string& connectionName);
- std::string getParaValue()const;
- void setParaValue(const std::string& paraValue);
- 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);
- long getEndEffectDate()const;
- void setEndEffectDate(long endEffectDate);
- std::string getFileName()const;
- void setFileName(const std::string& fileName);
- 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);
- private:
- std::string outputList_;
- std::string dependentNodeIdList_;
- std::string content_;
- std::string projectIdentifier_;
- long projectId_;
- long startEffectDate_;
- std::string cycleType_;
- long fileId_;
- int autoRerunIntervalMillis_;
- std::string owner_;
- std::string inputList_;
- std::string rerunMode_;
- std::string connectionName_;
- std::string paraValue_;
- std::string resourceGroupIdentifier_;
- int autoRerunTimes_;
- std::string cronExpress_;
- long endEffectDate_;
- std::string fileName_;
- bool stop_;
- std::string dependentType_;
- std::string fileFolderPath_;
- std::string fileDescription_;
- };
- }
- }
- }
- #endif // !ALIBABACLOUD_DATAWORKS_PUBLIC_MODEL_UPDATEFILEREQUEST_H_
|