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

com.aliyun.edas20170801.models.GetAppDeploymentRequest Maven / Gradle / Ivy

Go to download

Alibaba Cloud Enterprise Distributed Application Service (20170801) SDK for Java

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy