Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/
Expand Down
Loading