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

com.aliyun.arms20190808.models.DeleteGrafanaWorkspaceRequest 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 DeleteGrafanaWorkspaceRequest extends TeaModel {
    /**
     * 

The ID of the workspace.

*

This parameter is required.

* * example: *

grafana-rnglkcdrntlhk0****

*/ @NameInMap("GrafanaWorkspaceId") public String grafanaWorkspaceId; /** *

The region ID. Default value: cn-hangzhou.

*

This parameter is required.

* * example: *

cn-hangzhou

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy