com.aliyun.edas20170801.models.DeployK8sApplicationResponse 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 DeployK8sApplicationResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public DeployK8sApplicationResponseBody body;
public static DeployK8sApplicationResponse build(java.util.Map map) throws Exception {
DeployK8sApplicationResponse self = new DeployK8sApplicationResponse();
return TeaModel.build(map, self);
}
public DeployK8sApplicationResponse setHeaders(java.util.Map headers) {
this.headers = headers;
return this;
}
public java.util.Map getHeaders() {
return this.headers;
}
public DeployK8sApplicationResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public DeployK8sApplicationResponse setBody(DeployK8sApplicationResponseBody body) {
this.body = body;
return this;
}
public DeployK8sApplicationResponseBody getBody() {
return this.body;
}
}