com.aliyun.bpstudio20210931.models.DeleteApplicationRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bpstudio20210931 Show documentation
Show all versions of bpstudio20210931 Show documentation
Alibaba Cloud BPStudio (20210931) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.bpstudio20210931.models;
import com.aliyun.tea.*;
public class DeleteApplicationRequest extends TeaModel {
/**
* The ID of the application.
* This parameter is required.
*
* example:
* 002XWH7MXB8MJRU0
*/
@NameInMap("ApplicationId")
public String applicationId;
/**
* The ID of the resource group.
*
* example:
* rg-acfmyjt3c5om3hi
*/
@NameInMap("ResourceGroupId")
public String resourceGroupId;
public static DeleteApplicationRequest build(java.util.Map map) throws Exception {
DeleteApplicationRequest self = new DeleteApplicationRequest();
return TeaModel.build(map, self);
}
public DeleteApplicationRequest setApplicationId(String applicationId) {
this.applicationId = applicationId;
return this;
}
public String getApplicationId() {
return this.applicationId;
}
public DeleteApplicationRequest setResourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
return this;
}
public String getResourceGroupId() {
return this.resourceGroupId;
}
}