diff --git a/.generator/schemas/v2/openapi.yaml b/.generator/schemas/v2/openapi.yaml index 8a53c755c88..94139a1eafb 100644 --- a/.generator/schemas/v2/openapi.yaml +++ b/.generator/schemas/v2/openapi.yaml @@ -15983,7 +15983,9 @@ components: git: $ref: '#/components/schemas/DORAGitInfo' id: - description: Deployment ID. + description: Deployment ID. Must be 16-128 characters and contain only alphanumeric + characters, hyphens, underscores, periods, and colons (a-z, A-Z, 0-9, + -, _, ., :). type: string service: description: Service name. @@ -16121,8 +16123,9 @@ components: git: $ref: '#/components/schemas/DORAGitInfo' id: - description: Failure ID. Must have at least 16 characters. Required to update - a previously sent failure. + description: Failure ID. Must be 16-128 characters and contain only alphanumeric + characters, hyphens, underscores, periods, and colons (a-z, A-Z, 0-9, + -, _, ., :). type: string name: description: Failure name. diff --git a/src/main/java/com/datadog/api/client/v2/model/DORADeploymentRequestAttributes.java b/src/main/java/com/datadog/api/client/v2/model/DORADeploymentRequestAttributes.java index 3a837ad197e..81c4e6d8d1a 100644 --- a/src/main/java/com/datadog/api/client/v2/model/DORADeploymentRequestAttributes.java +++ b/src/main/java/com/datadog/api/client/v2/model/DORADeploymentRequestAttributes.java @@ -189,7 +189,8 @@ public DORADeploymentRequestAttributes id(String id) { } /** - * Deployment ID. + * Deployment ID. Must be 16-128 characters and contain only alphanumeric characters, hyphens, + * underscores, periods, and colons (a-z, A-Z, 0-9, -, _, ., :). * * @return id */ diff --git a/src/main/java/com/datadog/api/client/v2/model/DORAFailureRequestAttributes.java b/src/main/java/com/datadog/api/client/v2/model/DORAFailureRequestAttributes.java index bfd20632f7b..498ac25a718 100644 --- a/src/main/java/com/datadog/api/client/v2/model/DORAFailureRequestAttributes.java +++ b/src/main/java/com/datadog/api/client/v2/model/DORAFailureRequestAttributes.java @@ -193,7 +193,8 @@ public DORAFailureRequestAttributes id(String id) { } /** - * Failure ID. Must have at least 16 characters. Required to update a previously sent failure. + * Failure ID. Must be 16-128 characters and contain only alphanumeric characters, hyphens, + * underscores, periods, and colons (a-z, A-Z, 0-9, -, _, ., :). * * @return id */