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

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

Go to download

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

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

import com.aliyun.tea.*;

public class UninstallManagedPrometheusRequest extends TeaModel {
    /**
     * 

The ID of the Container Service for Kubernetes (ACK) cluster. This parameter is required when the ClusterType parameter is set to ask or one.

* * example: *

cc7a37ee31aea4ed1a059eff8034b****

*/ @NameInMap("ClusterId") public String clusterId; /** *

The cluster type. Valid values: ask, ecs, and one.

*

This parameter is required.

* * example: *

ask

*/ @NameInMap("ClusterType") public String clusterType; /** *

The region ID.

*

This parameter is required.

* * example: *

cn-hangzhou

*/ @NameInMap("RegionId") public String regionId; /** *

The ID of the resource group to which the Prometheus instance belongs.

* * example: *

rg-acfmxyexli2****

*/ @NameInMap("ResourceGroupId") public String resourceGroupId; /** *

The ID of the virtual private cloud (VPC) where the cluster resides.

* * example: *

vpc-rpn**********

* * if can be null: *

true

*/ @NameInMap("VpcId") public String vpcId; public static UninstallManagedPrometheusRequest build(java.util.Map map) throws Exception { UninstallManagedPrometheusRequest self = new UninstallManagedPrometheusRequest(); return TeaModel.build(map, self); } public UninstallManagedPrometheusRequest setClusterId(String clusterId) { this.clusterId = clusterId; return this; } public String getClusterId() { return this.clusterId; } public UninstallManagedPrometheusRequest setClusterType(String clusterType) { this.clusterType = clusterType; return this; } public String getClusterType() { return this.clusterType; } public UninstallManagedPrometheusRequest setRegionId(String regionId) { this.regionId = regionId; return this; } public String getRegionId() { return this.regionId; } public UninstallManagedPrometheusRequest setResourceGroupId(String resourceGroupId) { this.resourceGroupId = resourceGroupId; return this; } public String getResourceGroupId() { return this.resourceGroupId; } public UninstallManagedPrometheusRequest setVpcId(String vpcId) { this.vpcId = vpcId; return this; } public String getVpcId() { return this.vpcId; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy