Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit ff6e921

Browse files
author
ci.datadog-api-spec
committedJan 30, 2025·
Regenerate client from commit 7a9a548d of spec repo
1 parent 34f0e67 commit ff6e921

10 files changed

+1394
-8
lines changed
 

‎.apigentools-info

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
"spec_versions": {
55
"v1": {
66
"apigentools_version": "1.6.6",
7-
"regenerated": "2025-01-29 14:56:05.546786",
8-
"spec_repo_commit": "14f5d952"
7+
"regenerated": "2025-01-30 22:38:53.841724",
8+
"spec_repo_commit": "7a9a548d"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2025-01-29 14:56:05.561740",
13-
"spec_repo_commit": "14f5d952"
12+
"regenerated": "2025-01-30 22:38:53.856873",
13+
"spec_repo_commit": "7a9a548d"
1414
}
1515
}
1616
}

‎.generator/schemas/v2/openapi.yaml

+93
Original file line numberDiff line numberDiff line change
@@ -10523,6 +10523,99 @@ components:
1052310523
- $ref: '#/components/schemas/EntityV3Datastore'
1052410524
- $ref: '#/components/schemas/EntityV3Queue'
1052510525
- $ref: '#/components/schemas/EntityV3System'
10526+
- $ref: '#/components/schemas/EntityV3API'
10527+
EntityV3API:
10528+
additionalProperties: false
10529+
description: Schema for API entities.
10530+
properties:
10531+
apiVersion:
10532+
$ref: '#/components/schemas/EntityV3APIVersion'
10533+
datadog:
10534+
$ref: '#/components/schemas/EntityV3APIDatadog'
10535+
extensions:
10536+
additionalProperties: {}
10537+
description: Custom extensions. This is the free-formed field to send client-side
10538+
metadata. No Datadog features are affected by this field.
10539+
type: object
10540+
integrations:
10541+
$ref: '#/components/schemas/EntityV3Integrations'
10542+
kind:
10543+
$ref: '#/components/schemas/EntityV3APIKind'
10544+
metadata:
10545+
$ref: '#/components/schemas/EntityV3Metadata'
10546+
spec:
10547+
$ref: '#/components/schemas/EntityV3APISpec'
10548+
required:
10549+
- apiVersion
10550+
- kind
10551+
- metadata
10552+
type: object
10553+
EntityV3APIDatadog:
10554+
additionalProperties: false
10555+
description: Datadog product integrations for the API entity.
10556+
properties:
10557+
codeLocations:
10558+
$ref: '#/components/schemas/EntityV3DatadogCodeLocations'
10559+
events:
10560+
$ref: '#/components/schemas/EntityV3DatadogEvents'
10561+
logs:
10562+
$ref: '#/components/schemas/EntityV3DatadogLogs'
10563+
performanceData:
10564+
$ref: '#/components/schemas/EntityV3DatadogPerformance'
10565+
pipelines:
10566+
$ref: '#/components/schemas/EntityV3DatadogPipelines'
10567+
type: object
10568+
EntityV3APIKind:
10569+
description: The definition of Entity V3 API Kind object.
10570+
enum:
10571+
- api
10572+
example: api
10573+
type: string
10574+
x-enum-varnames:
10575+
- API
10576+
EntityV3APISpec:
10577+
additionalProperties: false
10578+
description: The definition of Entity V3 API Spec object.
10579+
properties:
10580+
implementedBy:
10581+
description: Services which implemented the API.
10582+
items:
10583+
type: string
10584+
type: array
10585+
interface:
10586+
$ref: '#/components/schemas/EntityV3APISpecInterface'
10587+
lifecycle:
10588+
description: The lifecycle state of the component.
10589+
minLength: 1
10590+
type: string
10591+
tier:
10592+
description: The importance of the component.
10593+
minLength: 1
10594+
type: string
10595+
type:
10596+
description: The type of API.
10597+
type: string
10598+
type: object
10599+
EntityV3APISpecInterface:
10600+
additionalProperties: false
10601+
description: The API definition.
10602+
oneOf:
10603+
- $ref: '#/components/schemas/EntityV3APISpecInterfaceFileRef'
10604+
- $ref: '#/components/schemas/EntityV3APISpecInterfaceDefinition'
10605+
EntityV3APISpecInterfaceDefinition:
10606+
additionalProperties: false
10607+
description: The definition of `EntityV3APISpecInterfaceDefinition` object.
10608+
properties:
10609+
definition:
10610+
description: The API definition.
10611+
type: object
10612+
EntityV3APISpecInterfaceFileRef:
10613+
additionalProperties: false
10614+
description: The definition of `EntityV3APISpecInterfaceFileRef` object.
10615+
properties:
10616+
fileRef:
10617+
description: The reference to the API definition file.
10618+
type: string
1052610619
EntityV3APIVersion:
1052710620
description: The schema version of entity type. The field is known as schema-version
1052810621
in the previous version.

‎src/main/java/com/datadog/api/client/v2/model/EntityV3.java

+68-4
Original file line numberDiff line numberDiff line change
@@ -253,6 +253,48 @@ public EntityV3 deserialize(JsonParser jp, DeserializationContext ctxt)
253253
log.log(Level.FINER, "Input data does not match schema 'EntityV3System'", e);
254254
}
255255

256+
// deserialize EntityV3API
257+
try {
258+
boolean attemptParsing = true;
259+
// ensure that we respect type coercion as set on the client ObjectMapper
260+
if (EntityV3API.class.equals(Integer.class)
261+
|| EntityV3API.class.equals(Long.class)
262+
|| EntityV3API.class.equals(Float.class)
263+
|| EntityV3API.class.equals(Double.class)
264+
|| EntityV3API.class.equals(Boolean.class)
265+
|| EntityV3API.class.equals(String.class)) {
266+
attemptParsing = typeCoercion;
267+
if (!attemptParsing) {
268+
attemptParsing |=
269+
((EntityV3API.class.equals(Integer.class) || EntityV3API.class.equals(Long.class))
270+
&& token == JsonToken.VALUE_NUMBER_INT);
271+
attemptParsing |=
272+
((EntityV3API.class.equals(Float.class) || EntityV3API.class.equals(Double.class))
273+
&& (token == JsonToken.VALUE_NUMBER_FLOAT
274+
|| token == JsonToken.VALUE_NUMBER_INT));
275+
attemptParsing |=
276+
(EntityV3API.class.equals(Boolean.class)
277+
&& (token == JsonToken.VALUE_FALSE || token == JsonToken.VALUE_TRUE));
278+
attemptParsing |=
279+
(EntityV3API.class.equals(String.class) && token == JsonToken.VALUE_STRING);
280+
}
281+
}
282+
if (attemptParsing) {
283+
tmp = tree.traverse(jp.getCodec()).readValueAs(EntityV3API.class);
284+
// TODO: there is no validation against JSON schema constraints
285+
// (min, max, enum, pattern...), this does not perform a strict JSON
286+
// validation, which means the 'match' count may be higher than it should be.
287+
if (!((EntityV3API) tmp).unparsed) {
288+
deserialized = tmp;
289+
match++;
290+
}
291+
log.log(Level.FINER, "Input data matches schema 'EntityV3API'");
292+
}
293+
} catch (Exception e) {
294+
// deserialization failed, continue
295+
log.log(Level.FINER, "Input data does not match schema 'EntityV3API'", e);
296+
}
297+
256298
EntityV3 ret = new EntityV3();
257299
if (match == 1) {
258300
ret.setActualInstance(deserialized);
@@ -301,11 +343,17 @@ public EntityV3(EntityV3System o) {
301343
setActualInstance(o);
302344
}
303345

346+
public EntityV3(EntityV3API o) {
347+
super("oneOf", Boolean.FALSE);
348+
setActualInstance(o);
349+
}
350+
304351
static {
305352
schemas.put("EntityV3Service", new GenericType<EntityV3Service>() {});
306353
schemas.put("EntityV3Datastore", new GenericType<EntityV3Datastore>() {});
307354
schemas.put("EntityV3Queue", new GenericType<EntityV3Queue>() {});
308355
schemas.put("EntityV3System", new GenericType<EntityV3System>() {});
356+
schemas.put("EntityV3API", new GenericType<EntityV3API>() {});
309357
JSON.registerDescendants(EntityV3.class, Collections.unmodifiableMap(schemas));
310358
}
311359

@@ -317,7 +365,7 @@ public Map<String, GenericType> getSchemas() {
317365
/**
318366
* Set the instance that matches the oneOf child schema, check the instance parameter is valid
319367
* against the oneOf child schemas: EntityV3Service, EntityV3Datastore, EntityV3Queue,
320-
* EntityV3System
368+
* EntityV3System, EntityV3API
321369
*
322370
* <p>It could be an instance of the 'oneOf' schemas. The oneOf child schemas may themselves be a
323371
* composed schema (allOf, anyOf, oneOf).
@@ -340,21 +388,26 @@ public void setActualInstance(Object instance) {
340388
super.setActualInstance(instance);
341389
return;
342390
}
391+
if (JSON.isInstanceOf(EntityV3API.class, instance, new HashSet<Class<?>>())) {
392+
super.setActualInstance(instance);
393+
return;
394+
}
343395

344396
if (JSON.isInstanceOf(UnparsedObject.class, instance, new HashSet<Class<?>>())) {
345397
super.setActualInstance(instance);
346398
return;
347399
}
348400
throw new RuntimeException(
349401
"Invalid instance type. Must be EntityV3Service, EntityV3Datastore, EntityV3Queue,"
350-
+ " EntityV3System");
402+
+ " EntityV3System, EntityV3API");
351403
}
352404

353405
/**
354406
* Get the actual instance, which can be the following: EntityV3Service, EntityV3Datastore,
355-
* EntityV3Queue, EntityV3System
407+
* EntityV3Queue, EntityV3System, EntityV3API
356408
*
357-
* @return The actual instance (EntityV3Service, EntityV3Datastore, EntityV3Queue, EntityV3System)
409+
* @return The actual instance (EntityV3Service, EntityV3Datastore, EntityV3Queue, EntityV3System,
410+
* EntityV3API)
358411
*/
359412
@Override
360413
public Object getActualInstance() {
@@ -404,4 +457,15 @@ public EntityV3Queue getEntityV3Queue() throws ClassCastException {
404457
public EntityV3System getEntityV3System() throws ClassCastException {
405458
return (EntityV3System) super.getActualInstance();
406459
}
460+
461+
/**
462+
* Get the actual instance of `EntityV3API`. If the actual instance is not `EntityV3API`, the
463+
* ClassCastException will be thrown.
464+
*
465+
* @return The actual instance of `EntityV3API`
466+
* @throws ClassCastException if the instance is not `EntityV3API`
467+
*/
468+
public EntityV3API getEntityV3API() throws ClassCastException {
469+
return (EntityV3API) super.getActualInstance();
470+
}
407471
}

0 commit comments

Comments
 (0)
Please sign in to comment.