All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.bpstudio20210931.models.DeleteApplicationRequest Maven / Gradle / Ivy

There is a newer version: 7.0.1
Show newest version
// 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy