com.datadog.api.client.v2.model.SLOReportStatus Maven / Gradle / Ivy
/*
* Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
* This product includes software developed at Datadog (https://www.datadoghq.com/).
* Copyright 2019-Present Datadog, Inc.
*/
package com.datadog.api.client.v2.model;
import com.datadog.api.client.ModelEnum;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.core.JsonGenerator;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.SerializerProvider;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import com.fasterxml.jackson.databind.ser.std.StdSerializer;
import java.io.IOException;
import java.util.Arrays;
import java.util.HashSet;
import java.util.Set;
/** The status of the SLO report job. */
@JsonSerialize(using = SLOReportStatus.SLOReportStatusSerializer.class)
public class SLOReportStatus extends ModelEnum {
private static final Set allowedValues =
new HashSet(
Arrays.asList("in_progress", "completed", "completed_with_errors", "failed"));
public static final SLOReportStatus IN_PROGRESS = new SLOReportStatus("in_progress");
public static final SLOReportStatus COMPLETED = new SLOReportStatus("completed");
public static final SLOReportStatus COMPLETED_WITH_ERRORS =
new SLOReportStatus("completed_with_errors");
public static final SLOReportStatus FAILED = new SLOReportStatus("failed");
SLOReportStatus(String value) {
super(value, allowedValues);
}
public static class SLOReportStatusSerializer extends StdSerializer {
public SLOReportStatusSerializer(Class t) {
super(t);
}
public SLOReportStatusSerializer() {
this(null);
}
@Override
public void serialize(SLOReportStatus value, JsonGenerator jgen, SerializerProvider provider)
throws IOException, JsonProcessingException {
jgen.writeObject(value.value);
}
}
@JsonCreator
public static SLOReportStatus fromValue(String value) {
return new SLOReportStatus(value);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy