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

com.datadog.api.client.v2.model.SensitiveDataScannerProduct Maven / Gradle / Ivy

There is a newer version: 2.24.0
Show newest version
/*
 * 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;

/** Datadog product onto which Sensitive Data Scanner can be activated. */
@JsonSerialize(using = SensitiveDataScannerProduct.SensitiveDataScannerProductSerializer.class)
public class SensitiveDataScannerProduct extends ModelEnum {

  private static final Set allowedValues =
      new HashSet(Arrays.asList("logs", "rum", "events", "apm"));

  public static final SensitiveDataScannerProduct LOGS = new SensitiveDataScannerProduct("logs");
  public static final SensitiveDataScannerProduct RUM = new SensitiveDataScannerProduct("rum");
  public static final SensitiveDataScannerProduct EVENTS =
      new SensitiveDataScannerProduct("events");
  public static final SensitiveDataScannerProduct APM = new SensitiveDataScannerProduct("apm");

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

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

    public SensitiveDataScannerProductSerializer() {
      this(null);
    }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy