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

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

Go to download

Alibaba Cloud Application Real-Time Monitoring Service (20190808) SDK for Java

There is a newer version: 9.1.1
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.arms20190808.models;

import com.aliyun.tea.*;

public class AddAliClusterIdsToPrometheusGlobalViewRequest extends TeaModel {
    /**
     * 

The IDs of clusters. Separate multiple IDs with commas (,).

*

This parameter is required.

* * example: *

cd1d55bef19904324a20ed0ebb86caa5c,c5b48729918ab4745a24482ac29d0973a, c00a94896641449098bf24931e4166003, cd174485c09384060ba542bc1be1185a4

*/ @NameInMap("ClusterIds") public String clusterIds; /** *

The ID of the global aggregation instance.

*

This parameter is required.

* * example: *

global-v2-cn-1478326682034601-vss8pd0i

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

The name of the global aggregation instance.

*

This parameter is required.

* * example: *

zyGlobalView

*/ @NameInMap("GroupName") public String groupName; /** *

The region ID.

*

This parameter is required.

* * example: *

cn-hangzhou

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy