com.aliyun.edas20170801.models.GetAppDeploymentRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of edas20170801 Show documentation
Show all versions of edas20170801 Show documentation
Alibaba Cloud Enterprise Distributed Application Service (20170801) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.edas20170801.models;
import com.aliyun.tea.*;
public class GetAppDeploymentRequest extends TeaModel {
/**
* The ID of the application. You can call the ListApplication operation to query the application ID.
*/
@NameInMap("AppId")
public String appId;
public static GetAppDeploymentRequest build(java.util.Map map) throws Exception {
GetAppDeploymentRequest self = new GetAppDeploymentRequest();
return TeaModel.build(map, self);
}
public GetAppDeploymentRequest setAppId(String appId) {
this.appId = appId;
return this;
}
public String getAppId() {
return this.appId;
}
}