com.aliyun.arms20190808.models.GrafanaWorkspaceIntegrationDetail Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of arms20190808 Show documentation
Show all versions of arms20190808 Show documentation
Alibaba Cloud Application Real-Time Monitoring Service (20190808) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.arms20190808.models;
import com.aliyun.tea.*;
public class GrafanaWorkspaceIntegrationDetail extends TeaModel {
@NameInMap("dataSources")
public java.util.List dataSources;
@NameInMap("integrationId")
public String integrationId;
@NameInMap("status")
public String status;
public static GrafanaWorkspaceIntegrationDetail build(java.util.Map map) throws Exception {
GrafanaWorkspaceIntegrationDetail self = new GrafanaWorkspaceIntegrationDetail();
return TeaModel.build(map, self);
}
public GrafanaWorkspaceIntegrationDetail setDataSources(java.util.List dataSources) {
this.dataSources = dataSources;
return this;
}
public java.util.List getDataSources() {
return this.dataSources;
}
public GrafanaWorkspaceIntegrationDetail setIntegrationId(String integrationId) {
this.integrationId = integrationId;
return this;
}
public String getIntegrationId() {
return this.integrationId;
}
public GrafanaWorkspaceIntegrationDetail setStatus(String status) {
this.status = status;
return this;
}
public String getStatus() {
return this.status;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy