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

com.aliyun.apig20240327.models.GetEnvironmentRequest Maven / Gradle / Ivy

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