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 @@ -75,7 +75,7 @@ def __init__(
:param git: Git info for DORA Metrics events.
:type git: DORAGitInfo, optional

:param id: Deployment ID.
:param id: Deployment ID. Must be 16-128 characters and contain only alphanumeric characters, hyphens, underscores, periods, and colons (a-z, A-Z, 0-9, -, _, ., :).
:type id: str, optional

:param service: Service name.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def __init__(
:param git: Git info for DORA Metrics events.
:type git: DORAGitInfo, optional

:param id: Failure ID. Must have at least 16 characters. Required to update a previously sent failure.
:param id: Failure ID. Must be 16-128 characters and contain only alphanumeric characters, hyphens, underscores, periods, and colons (a-z, A-Z, 0-9, -, _, ., :).
:type id: str, optional

:param name: Failure name.
Expand Down
Loading