com.aliyun.arms20190808.models.DeleteAddonReleaseRequest 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
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.arms20190808.models;
import com.aliyun.tea.*;
public class DeleteAddonReleaseRequest extends TeaModel {
/**
* The name of the add-on. If you assign a value to AddonName, the ReleaseName parameter is ignored and all AddonReleases that belong to the same add-on are deleted.
*
* example:
* mysql
*/
@NameInMap("AddonName")
public String addonName;
/**
* Environment ID.
* This parameter is required.
*
* example:
* env-xxx
*/
@NameInMap("EnvironmentId")
public String environmentId;
/**
* Whether to be forcibly deleted. The default value is false.
*
* example:
* false
*/
@NameInMap("Force")
public Boolean force;
/**
* The region ID.
*
* example:
* cn-hangzhou
*/
@NameInMap("RegionId")
public String regionId;
/**
* Name of Release.
* This parameter is required.
*
* example:
* agent-822567d4-2449
*/
@NameInMap("ReleaseName")
public String releaseName;
public static DeleteAddonReleaseRequest build(java.util.Map map) throws Exception {
DeleteAddonReleaseRequest self = new DeleteAddonReleaseRequest();
return TeaModel.build(map, self);
}
public DeleteAddonReleaseRequest setAddonName(String addonName) {
this.addonName = addonName;
return this;
}
public String getAddonName() {
return this.addonName;
}
public DeleteAddonReleaseRequest setEnvironmentId(String environmentId) {
this.environmentId = environmentId;
return this;
}
public String getEnvironmentId() {
return this.environmentId;
}
public DeleteAddonReleaseRequest setForce(Boolean force) {
this.force = force;
return this;
}
public Boolean getForce() {
return this.force;
}
public DeleteAddonReleaseRequest setRegionId(String regionId) {
this.regionId = regionId;
return this;
}
public String getRegionId() {
return this.regionId;
}
public DeleteAddonReleaseRequest setReleaseName(String releaseName) {
this.releaseName = releaseName;
return this;
}
public String getReleaseName() {
return this.releaseName;
}
}