Skip to content

Commit 1d010d7

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Align DORA Event ID description with new validation (#3359)
Co-authored-by: ci.datadog-api-spec <[email protected]>
1 parent 454f920 commit 1d010d7

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

.generator/schemas/v2/openapi.yaml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15983,7 +15983,9 @@ components:
1598315983
git:
1598415984
$ref: '#/components/schemas/DORAGitInfo'
1598515985
id:
15986-
description: Deployment ID.
15986+
description: Deployment ID. Must be 16-128 characters and contain only alphanumeric
15987+
characters, hyphens, underscores, periods, and colons (a-z, A-Z, 0-9,
15988+
-, _, ., :).
1598715989
type: string
1598815990
service:
1598915991
description: Service name.
@@ -16121,8 +16123,9 @@ components:
1612116123
git:
1612216124
$ref: '#/components/schemas/DORAGitInfo'
1612316125
id:
16124-
description: Failure ID. Must have at least 16 characters. Required to update
16125-
a previously sent failure.
16126+
description: Failure ID. Must be 16-128 characters and contain only alphanumeric
16127+
characters, hyphens, underscores, periods, and colons (a-z, A-Z, 0-9,
16128+
-, _, ., :).
1612616129
type: string
1612716130
name:
1612816131
description: Failure name.

src/main/java/com/datadog/api/client/v2/model/DORADeploymentRequestAttributes.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,8 @@ public DORADeploymentRequestAttributes id(String id) {
189189
}
190190

191191
/**
192-
* Deployment ID.
192+
* Deployment ID. Must be 16-128 characters and contain only alphanumeric characters, hyphens,
193+
* underscores, periods, and colons (a-z, A-Z, 0-9, -, _, ., :).
193194
*
194195
* @return id
195196
*/

src/main/java/com/datadog/api/client/v2/model/DORAFailureRequestAttributes.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,8 @@ public DORAFailureRequestAttributes id(String id) {
193193
}
194194

195195
/**
196-
* Failure ID. Must have at least 16 characters. Required to update a previously sent failure.
196+
* Failure ID. Must be 16-128 characters and contain only alphanumeric characters, hyphens,
197+
* underscores, periods, and colons (a-z, A-Z, 0-9, -, _, ., :).
197198
*
198199
* @return id
199200
*/

0 commit comments

Comments
 (0)