![JAR search and dependency download from the Maven repository](/logo.png)
com.tencentcloudapi.wedata.v20210820.models.DescribeSchedulerInstanceStatusRequest 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 DescribeSchedulerInstanceStatusRequest extends AbstractModel {
/**
* Project ID
*/
@SerializedName("ProjectId")
@Expose
private String ProjectId;
/**
* Task Type ID
*/
@SerializedName("TaskTypeId")
@Expose
private String TaskTypeId;
/**
* Execution Resource Group ID
*/
@SerializedName("ExecutionGroupId")
@Expose
private String ExecutionGroupId;
/**
* Execution Resource Group Name
*/
@SerializedName("ExecutionGroupName")
@Expose
private String ExecutionGroupName;
/**
* Start Time
*/
@SerializedName("StartTime")
@Expose
private String StartTime;
/**
* End time
*/
@SerializedName("EndTime")
@Expose
private String EndTime;
/**
* Person in Charge
*/
@SerializedName("InCharge")
@Expose
private String InCharge;
/**
* Workflow ID
*/
@SerializedName("WorkflowId")
@Expose
private String WorkflowId;
/**
* 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 Task Type ID
* @return TaskTypeId Task Type ID
*/
public String getTaskTypeId() {
return this.TaskTypeId;
}
/**
* Set Task Type ID
* @param TaskTypeId Task Type ID
*/
public void setTaskTypeId(String TaskTypeId) {
this.TaskTypeId = TaskTypeId;
}
/**
* Get Execution Resource Group ID
* @return ExecutionGroupId Execution Resource Group ID
*/
public String getExecutionGroupId() {
return this.ExecutionGroupId;
}
/**
* Set Execution Resource Group ID
* @param ExecutionGroupId Execution Resource Group ID
*/
public void setExecutionGroupId(String ExecutionGroupId) {
this.ExecutionGroupId = ExecutionGroupId;
}
/**
* Get Execution Resource Group Name
* @return ExecutionGroupName Execution Resource Group Name
*/
public String getExecutionGroupName() {
return this.ExecutionGroupName;
}
/**
* Set Execution Resource Group Name
* @param ExecutionGroupName Execution Resource Group Name
*/
public void setExecutionGroupName(String ExecutionGroupName) {
this.ExecutionGroupName = ExecutionGroupName;
}
/**
* Get Start Time
* @return StartTime Start Time
*/
public String getStartTime() {
return this.StartTime;
}
/**
* Set Start Time
* @param StartTime Start Time
*/
public void setStartTime(String StartTime) {
this.StartTime = StartTime;
}
/**
* Get End time
* @return EndTime End time
*/
public String getEndTime() {
return this.EndTime;
}
/**
* Set End time
* @param EndTime End time
*/
public void setEndTime(String EndTime) {
this.EndTime = EndTime;
}
/**
* Get Person in Charge
* @return InCharge Person in Charge
*/
public String getInCharge() {
return this.InCharge;
}
/**
* Set Person in Charge
* @param InCharge Person in Charge
*/
public void setInCharge(String InCharge) {
this.InCharge = InCharge;
}
/**
* Get Workflow ID
* @return WorkflowId Workflow ID
*/
public String getWorkflowId() {
return this.WorkflowId;
}
/**
* Set Workflow ID
* @param WorkflowId Workflow ID
*/
public void setWorkflowId(String WorkflowId) {
this.WorkflowId = WorkflowId;
}
public DescribeSchedulerInstanceStatusRequest() {
}
/**
* 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 DescribeSchedulerInstanceStatusRequest(DescribeSchedulerInstanceStatusRequest source) {
if (source.ProjectId != null) {
this.ProjectId = new String(source.ProjectId);
}
if (source.TaskTypeId != null) {
this.TaskTypeId = new String(source.TaskTypeId);
}
if (source.ExecutionGroupId != null) {
this.ExecutionGroupId = new String(source.ExecutionGroupId);
}
if (source.ExecutionGroupName != null) {
this.ExecutionGroupName = new String(source.ExecutionGroupName);
}
if (source.StartTime != null) {
this.StartTime = new String(source.StartTime);
}
if (source.EndTime != null) {
this.EndTime = new String(source.EndTime);
}
if (source.InCharge != null) {
this.InCharge = new String(source.InCharge);
}
if (source.WorkflowId != null) {
this.WorkflowId = new String(source.WorkflowId);
}
}
/**
* 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 + "TaskTypeId", this.TaskTypeId);
this.setParamSimple(map, prefix + "ExecutionGroupId", this.ExecutionGroupId);
this.setParamSimple(map, prefix + "ExecutionGroupName", this.ExecutionGroupName);
this.setParamSimple(map, prefix + "StartTime", this.StartTime);
this.setParamSimple(map, prefix + "EndTime", this.EndTime);
this.setParamSimple(map, prefix + "InCharge", this.InCharge);
this.setParamSimple(map, prefix + "WorkflowId", this.WorkflowId);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy