com.aliyun.apig20240327.models.GetEnvironmentRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apig20240327 Show documentation
Show all versions of apig20240327 Show documentation
Alibaba Cloud APIG (20240327) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.apig20240327.models;
import com.aliyun.tea.*;
public class GetEnvironmentRequest extends TeaModel {
@NameInMap("withStatistics")
public Boolean withStatistics;
/**
* Option for vpc info.
*/
@NameInMap("withVpcInfo")
public Boolean withVpcInfo;
public static GetEnvironmentRequest build(java.util.Map map) throws Exception {
GetEnvironmentRequest self = new GetEnvironmentRequest();
return TeaModel.build(map, self);
}
public GetEnvironmentRequest setWithStatistics(Boolean withStatistics) {
this.withStatistics = withStatistics;
return this;
}
public Boolean getWithStatistics() {
return this.withStatistics;
}
public GetEnvironmentRequest setWithVpcInfo(Boolean withVpcInfo) {
this.withVpcInfo = withVpcInfo;
return this;
}
public Boolean getWithVpcInfo() {
return this.withVpcInfo;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy