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

com.datadog.api.client.v1.model.SyntheticsAssertionOperator 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.v1.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;

/** Assertion operator to apply. */
@JsonSerialize(using = SyntheticsAssertionOperator.SyntheticsAssertionOperatorSerializer.class)
public class SyntheticsAssertionOperator extends ModelEnum {

  private static final Set allowedValues =
      new HashSet(
          Arrays.asList(
              "contains",
              "doesNotContain",
              "is",
              "isNot",
              "lessThan",
              "lessThanOrEqual",
              "moreThan",
              "moreThanOrEqual",
              "matches",
              "doesNotMatch",
              "validates",
              "isInMoreThan",
              "isInLessThan",
              "doesNotExist",
              "isUndefined"));

  public static final SyntheticsAssertionOperator CONTAINS =
      new SyntheticsAssertionOperator("contains");
  public static final SyntheticsAssertionOperator DOES_NOT_CONTAIN =
      new SyntheticsAssertionOperator("doesNotContain");
  public static final SyntheticsAssertionOperator IS = new SyntheticsAssertionOperator("is");
  public static final SyntheticsAssertionOperator IS_NOT = new SyntheticsAssertionOperator("isNot");
  public static final SyntheticsAssertionOperator LESS_THAN =
      new SyntheticsAssertionOperator("lessThan");
  public static final SyntheticsAssertionOperator LESS_THAN_OR_EQUAL =
      new SyntheticsAssertionOperator("lessThanOrEqual");
  public static final SyntheticsAssertionOperator MORE_THAN =
      new SyntheticsAssertionOperator("moreThan");
  public static final SyntheticsAssertionOperator MORE_THAN_OR_EQUAL =
      new SyntheticsAssertionOperator("moreThanOrEqual");
  public static final SyntheticsAssertionOperator MATCHES =
      new SyntheticsAssertionOperator("matches");
  public static final SyntheticsAssertionOperator DOES_NOT_MATCH =
      new SyntheticsAssertionOperator("doesNotMatch");
  public static final SyntheticsAssertionOperator VALIDATES =
      new SyntheticsAssertionOperator("validates");
  public static final SyntheticsAssertionOperator IS_IN_MORE_DAYS_THAN =
      new SyntheticsAssertionOperator("isInMoreThan");
  public static final SyntheticsAssertionOperator IS_IN_LESS_DAYS_THAN =
      new SyntheticsAssertionOperator("isInLessThan");
  public static final SyntheticsAssertionOperator DOES_NOT_EXIST =
      new SyntheticsAssertionOperator("doesNotExist");
  public static final SyntheticsAssertionOperator IS_UNDEFINED =
      new SyntheticsAssertionOperator("isUndefined");

  SyntheticsAssertionOperator(String value) {
    super(value, allowedValues);
  }

  public static class SyntheticsAssertionOperatorSerializer
      extends StdSerializer {
    public SyntheticsAssertionOperatorSerializer(Class t) {
      super(t);
    }

    public SyntheticsAssertionOperatorSerializer() {
      this(null);
    }

    @Override
    public void serialize(
        SyntheticsAssertionOperator value, JsonGenerator jgen, SerializerProvider provider)
        throws IOException, JsonProcessingException {
      jgen.writeObject(value.value);
    }
  }

  @JsonCreator
  public static SyntheticsAssertionOperator fromValue(String value) {
    return new SyntheticsAssertionOperator(value);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy