com.aliyun.arms20190808.models.DeleteEnvCustomJobRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of arms20190808 Show documentation
Show all versions of arms20190808 Show documentation
Alibaba Cloud Application Real-Time Monitoring Service (20190808) SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.arms20190808.models;
import com.aliyun.tea.*;
public class DeleteEnvCustomJobRequest extends TeaModel {
/**
* The name of the custom job.
* This parameter is required.
*
* example:
* job1
*/
@NameInMap("CustomJobName")
public String customJobName;
/**
* The ID of the environment instance.
* This parameter is required.
*
* example:
* env-xxx
*/
@NameInMap("EnvironmentId")
public String environmentId;
/**
* The region ID.
* This parameter is required.
*
* example:
* cn-hangzhou
*/
@NameInMap("RegionId")
public String regionId;
public static DeleteEnvCustomJobRequest build(java.util.Map map) throws Exception {
DeleteEnvCustomJobRequest self = new DeleteEnvCustomJobRequest();
return TeaModel.build(map, self);
}
public DeleteEnvCustomJobRequest setCustomJobName(String customJobName) {
this.customJobName = customJobName;
return this;
}
public String getCustomJobName() {
return this.customJobName;
}
public DeleteEnvCustomJobRequest setEnvironmentId(String environmentId) {
this.environmentId = environmentId;
return this;
}
public String getEnvironmentId() {
return this.environmentId;
}
public DeleteEnvCustomJobRequest setRegionId(String regionId) {
this.regionId = regionId;
return this;
}
public String getRegionId() {
return this.regionId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy