-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathEntityV3APIVersion.java
More file actions
61 lines (51 loc) · 2.19 KB
/
EntityV3APIVersion.java
File metadata and controls
61 lines (51 loc) · 2.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/*
* 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 version of the schema data that was used to populate this entity's data. This could be via
* the API, Terraform, or YAML file in a repository. The field is known as schema-version in the
* previous version.
*/
@JsonSerialize(using = EntityV3APIVersion.EntityV3APIVersionSerializer.class)
public class EntityV3APIVersion extends ModelEnum<String> {
private static final Set<String> allowedValues =
new HashSet<String>(Arrays.asList("v3", "v2.2", "v2.1", "v2"));
public static final EntityV3APIVersion V3 = new EntityV3APIVersion("v3");
public static final EntityV3APIVersion V2_2 = new EntityV3APIVersion("v2.2");
public static final EntityV3APIVersion V2_1 = new EntityV3APIVersion("v2.1");
public static final EntityV3APIVersion V2 = new EntityV3APIVersion("v2");
EntityV3APIVersion(String value) {
super(value, allowedValues);
}
public static class EntityV3APIVersionSerializer extends StdSerializer<EntityV3APIVersion> {
public EntityV3APIVersionSerializer(Class<EntityV3APIVersion> t) {
super(t);
}
public EntityV3APIVersionSerializer() {
this(null);
}
@Override
public void serialize(EntityV3APIVersion value, JsonGenerator jgen, SerializerProvider provider)
throws IOException, JsonProcessingException {
jgen.writeObject(value.value);
}
}
@JsonCreator
public static EntityV3APIVersion fromValue(String value) {
return new EntityV3APIVersion(value);
}
}