com.tencentcloudapi.wedata.v20210820.models.CreateWorkflowDsRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tencentcloud-sdk-java-intl-en Show documentation
Show all versions of tencentcloud-sdk-java-intl-en Show documentation
Tencent Cloud API SDK for Java
/*
* Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. 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.
*/
package com.tencentcloudapi.wedata.v20210820.models;
import com.tencentcloudapi.common.AbstractModel;
import com.tencentcloudapi.common.SSEResponseModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;
public class CreateWorkflowDsRequest extends AbstractModel {
/**
* Project ID
*/
@SerializedName("ProjectId")
@Expose
private String ProjectId;
/**
* Workflow name
*/
@SerializedName("WorkflowName")
@Expose
private String WorkflowName;
/**
* Folder ID
*/
@SerializedName("FolderId")
@Expose
private String FolderId;
/**
* Workflow Description
*/
@SerializedName("WorkflowDesc")
@Expose
private String WorkflowDesc;
/**
* Get Project ID
* @return ProjectId Project ID
*/
public String getProjectId() {
return this.ProjectId;
}
/**
* Set Project ID
* @param ProjectId Project ID
*/
public void setProjectId(String ProjectId) {
this.ProjectId = ProjectId;
}
/**
* Get Workflow name
* @return WorkflowName Workflow name
*/
public String getWorkflowName() {
return this.WorkflowName;
}
/**
* Set Workflow name
* @param WorkflowName Workflow name
*/
public void setWorkflowName(String WorkflowName) {
this.WorkflowName = WorkflowName;
}
/**
* Get Folder ID
* @return FolderId Folder ID
*/
public String getFolderId() {
return this.FolderId;
}
/**
* Set Folder ID
* @param FolderId Folder ID
*/
public void setFolderId(String FolderId) {
this.FolderId = FolderId;
}
/**
* Get Workflow Description
* @return WorkflowDesc Workflow Description
*/
public String getWorkflowDesc() {
return this.WorkflowDesc;
}
/**
* Set Workflow Description
* @param WorkflowDesc Workflow Description
*/
public void setWorkflowDesc(String WorkflowDesc) {
this.WorkflowDesc = WorkflowDesc;
}
public CreateWorkflowDsRequest() {
}
/**
* NOTE: Any ambiguous key set via .set("AnyKey", "value") will be a shallow copy,
* and any explicit key, i.e Foo, set via .setFoo("value") will be a deep copy.
*/
public CreateWorkflowDsRequest(CreateWorkflowDsRequest source) {
if (source.ProjectId != null) {
this.ProjectId = new String(source.ProjectId);
}
if (source.WorkflowName != null) {
this.WorkflowName = new String(source.WorkflowName);
}
if (source.FolderId != null) {
this.FolderId = new String(source.FolderId);
}
if (source.WorkflowDesc != null) {
this.WorkflowDesc = new String(source.WorkflowDesc);
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "ProjectId", this.ProjectId);
this.setParamSimple(map, prefix + "WorkflowName", this.WorkflowName);
this.setParamSimple(map, prefix + "FolderId", this.FolderId);
this.setParamSimple(map, prefix + "WorkflowDesc", this.WorkflowDesc);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy