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

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

The language. Valid values: zh and en. Default value: zh.

* * example: *

zh

*/ @NameInMap("AliyunLang") public String aliyunLang; /** *

The Grafana version.

*

This parameter is required.

* * example: *

10.0.x

*/ @NameInMap("GrafanaVersion") public String grafanaVersion; /** *

The ID of the workspace.

*

This parameter is required.

* * example: *

grafana-cn-4xl3g******

*/ @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 UpdateGrafanaWorkspaceVersionRequest build(java.util.Map map) throws Exception { UpdateGrafanaWorkspaceVersionRequest self = new UpdateGrafanaWorkspaceVersionRequest(); return TeaModel.build(map, self); } public UpdateGrafanaWorkspaceVersionRequest setAliyunLang(String aliyunLang) { this.aliyunLang = aliyunLang; return this; } public String getAliyunLang() { return this.aliyunLang; } public UpdateGrafanaWorkspaceVersionRequest setGrafanaVersion(String grafanaVersion) { this.grafanaVersion = grafanaVersion; return this; } public String getGrafanaVersion() { return this.grafanaVersion; } public UpdateGrafanaWorkspaceVersionRequest setGrafanaWorkspaceId(String grafanaWorkspaceId) { this.grafanaWorkspaceId = grafanaWorkspaceId; return this; } public String getGrafanaWorkspaceId() { return this.grafanaWorkspaceId; } public UpdateGrafanaWorkspaceVersionRequest setRegionId(String regionId) { this.regionId = regionId; return this; } public String getRegionId() { return this.regionId; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy