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

com.aliyun.arms20190808.models.GetPrometheusGlobalViewRequest Maven / Gradle / Ivy

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.arms20190808.models;

import com.aliyun.tea.*;

public class GetPrometheusGlobalViewRequest extends TeaModel {
    /**
     * 

The ID of the global aggregation instance.

*

This parameter is required.

* * example: *

global-v2-cn-1478326682034601-vss8pd0i

*/ @NameInMap("GlobalViewClusterId") public String globalViewClusterId; /** *

The region ID.

*

This parameter is required.

* * example: *

cn-hangzhou

*/ @NameInMap("RegionId") public String regionId; public static GetPrometheusGlobalViewRequest build(java.util.Map map) throws Exception { GetPrometheusGlobalViewRequest self = new GetPrometheusGlobalViewRequest(); return TeaModel.build(map, self); } public GetPrometheusGlobalViewRequest setGlobalViewClusterId(String globalViewClusterId) { this.globalViewClusterId = globalViewClusterId; return this; } public String getGlobalViewClusterId() { return this.globalViewClusterId; } public GetPrometheusGlobalViewRequest setRegionId(String regionId) { this.regionId = regionId; return this; } public String getRegionId() { return this.regionId; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy