com.grafana.foundation.cloudwatch.QueryEditorExpression Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of grafana-foundation-sdk Show documentation
Show all versions of grafana-foundation-sdk Show documentation
A set of tools, types and libraries for building and manipulating Grafana objects.
// Code generated - EDITING IS FUTILE. DO NOT EDIT.
package com.grafana.foundation.cloudwatch;
import com.fasterxml.jackson.annotation.JsonUnwrapped;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.ObjectWriter;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import com.fasterxml.jackson.annotation.JsonInclude;
@JsonDeserialize(using = QueryEditorExpressionDeserializer.class)
public class QueryEditorExpression {
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonUnwrapped
protected QueryEditorArrayExpression queryEditorArrayExpression;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonUnwrapped
protected QueryEditorPropertyExpression queryEditorPropertyExpression;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonUnwrapped
protected QueryEditorGroupByExpression queryEditorGroupByExpression;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonUnwrapped
protected QueryEditorFunctionExpression queryEditorFunctionExpression;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonUnwrapped
protected QueryEditorFunctionParameterExpression queryEditorFunctionParameterExpression;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonUnwrapped
protected QueryEditorOperatorExpression queryEditorOperatorExpression;
protected QueryEditorExpression() {}
public static QueryEditorExpression createQueryEditorArrayExpression(com.grafana.foundation.cog.Builder queryEditorArrayExpression) {
QueryEditorExpression queryEditorExpression = new QueryEditorExpression();
queryEditorExpression.queryEditorArrayExpression = queryEditorArrayExpression.build();
return queryEditorExpression;
}
public static QueryEditorExpression createQueryEditorPropertyExpression(com.grafana.foundation.cog.Builder queryEditorPropertyExpression) {
QueryEditorExpression queryEditorExpression = new QueryEditorExpression();
queryEditorExpression.queryEditorPropertyExpression = queryEditorPropertyExpression.build();
return queryEditorExpression;
}
public static QueryEditorExpression createQueryEditorGroupByExpression(com.grafana.foundation.cog.Builder queryEditorGroupByExpression) {
QueryEditorExpression queryEditorExpression = new QueryEditorExpression();
queryEditorExpression.queryEditorGroupByExpression = queryEditorGroupByExpression.build();
return queryEditorExpression;
}
public static QueryEditorExpression createQueryEditorFunctionExpression(com.grafana.foundation.cog.Builder queryEditorFunctionExpression) {
QueryEditorExpression queryEditorExpression = new QueryEditorExpression();
queryEditorExpression.queryEditorFunctionExpression = queryEditorFunctionExpression.build();
return queryEditorExpression;
}
public static QueryEditorExpression createQueryEditorFunctionParameterExpression(com.grafana.foundation.cog.Builder queryEditorFunctionParameterExpression) {
QueryEditorExpression queryEditorExpression = new QueryEditorExpression();
queryEditorExpression.queryEditorFunctionParameterExpression = queryEditorFunctionParameterExpression.build();
return queryEditorExpression;
}
public static QueryEditorExpression createQueryEditorOperatorExpression(com.grafana.foundation.cog.Builder queryEditorOperatorExpression) {
QueryEditorExpression queryEditorExpression = new QueryEditorExpression();
queryEditorExpression.queryEditorOperatorExpression = queryEditorOperatorExpression.build();
return queryEditorExpression;
}
public String toJSON() throws JsonProcessingException {
if (queryEditorArrayExpression != null) {
ObjectWriter ow = new ObjectMapper().writer().withDefaultPrettyPrinter();
return ow.writeValueAsString(queryEditorArrayExpression);
}
if (queryEditorPropertyExpression != null) {
ObjectWriter ow = new ObjectMapper().writer().withDefaultPrettyPrinter();
return ow.writeValueAsString(queryEditorPropertyExpression);
}
if (queryEditorGroupByExpression != null) {
ObjectWriter ow = new ObjectMapper().writer().withDefaultPrettyPrinter();
return ow.writeValueAsString(queryEditorGroupByExpression);
}
if (queryEditorFunctionExpression != null) {
ObjectWriter ow = new ObjectMapper().writer().withDefaultPrettyPrinter();
return ow.writeValueAsString(queryEditorFunctionExpression);
}
if (queryEditorFunctionParameterExpression != null) {
ObjectWriter ow = new ObjectMapper().writer().withDefaultPrettyPrinter();
return ow.writeValueAsString(queryEditorFunctionParameterExpression);
}
if (queryEditorOperatorExpression != null) {
ObjectWriter ow = new ObjectMapper().writer().withDefaultPrettyPrinter();
return ow.writeValueAsString(queryEditorOperatorExpression);
}
return null;
}
}