You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .generator/schemas/v2/openapi.yaml
+17-3Lines changed: 17 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -36996,7 +36996,11 @@ components:
36996
36996
attributes:
36997
36997
$ref: "#/components/schemas/FlakyTestAttributes"
36998
36998
id:
36999
-
description: Test's ID. This ID is the hash of the test's Fully Qualified Name and Git repository ID. On the Test Runs UI it is the same as the `test_fingerprint_fqn` tag.
36999
+
description: |-
37000
+
Test's ID. This ID is the hash of the test's Fully Qualified Name and Git repository ID. It is the
37001
+
value of the `@test.fingerprint_fqn` facet on test events, which you can search on in the Test
37002
+
Optimization Explorer to locate a specific test. To filter search results by this ID, use the
37003
+
`fingerprint_fqn` search key.
37000
37004
type: string
37001
37005
type:
37002
37006
$ref: "#/components/schemas/FlakyTestType"
@@ -37378,6 +37382,9 @@ components:
37378
37382
- `@git.branch`
37379
37383
- `@test.codeowners`
37380
37384
- `env`
37385
+
- `fingerprint_fqn`
37386
+
37387
+
Use `fingerprint_fqn` to filter by a test's stable Fingerprint FQN (the same value as the test's `id`).
description: Details of what tests to update and their new attributes.
106708
106715
properties:
106709
106716
id:
106710
-
description: The ID of the flaky test. This is the same ID returned by the Search flaky tests endpoint and corresponds to the test_fingerprint_fqn field in test run events.
106717
+
description: |-
106718
+
The ID of the flaky test. This is the same ID returned by the Search flaky tests endpoint and is the
106719
+
value of the `@test.fingerprint_fqn` facet on test events. You can find it by searching on
106720
+
`@test.fingerprint_fqn` in the Test Optimization Explorer, or by filtering the Search flaky tests
106721
+
endpoint with the `fingerprint_fqn` key.
106711
106722
example: 4eb1887a8adb1847
106712
106723
type: string
106713
106724
new_state:
@@ -106777,7 +106788,10 @@ components:
106777
106788
description: Error message if the update failed.
106778
106789
type: string
106779
106790
id:
106780
-
description: The ID of the flaky test from the request. This is the same ID returned by the Search flaky tests endpoint and corresponds to the test_fingerprint_fqn field in test run events.
106791
+
description: |-
106792
+
The ID of the flaky test from the request. This is the value of the `@test.fingerprint_fqn` facet
106793
+
on test events, the same ID accepted by the update request and returned by the Search flaky tests
Copy file name to clipboardExpand all lines: src/datadog_api_client/v2/model/flaky_test.py
+4-1Lines changed: 4 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -49,7 +49,10 @@ def __init__(
49
49
:param attributes: Attributes of a flaky test.
50
50
:type attributes: FlakyTestAttributes, optional
51
51
52
-
:param id: Test's ID. This ID is the hash of the test's Fully Qualified Name and Git repository ID. On the Test Runs UI it is the same as the ``test_fingerprint_fqn`` tag.
52
+
:param id: Test's ID. This ID is the hash of the test's Fully Qualified Name and Git repository ID. It is the
53
+
value of the ``@test.fingerprint_fqn`` facet on test events, which you can search on in the Test
54
+
Optimization Explorer to locate a specific test. To filter search results by this ID, use the
55
+
``fingerprint_fqn`` search key.
53
56
:type id: str, optional
54
57
55
58
:param type: The type of the flaky test from Flaky Test Management.
Details of what tests to update and their new attributes.
40
40
41
-
:param id: The ID of the flaky test. This is the same ID returned by the Search flaky tests endpoint and corresponds to the test_fingerprint_fqn field in test run events.
41
+
:param id: The ID of the flaky test. This is the same ID returned by the Search flaky tests endpoint and is the
42
+
value of the ``@test.fingerprint_fqn`` facet on test events. You can find it by searching on
43
+
``@test.fingerprint_fqn`` in the Test Optimization Explorer, or by filtering the Search flaky tests
44
+
endpoint with the ``fingerprint_fqn`` key.
42
45
:type id: str
43
46
44
47
:param new_state: The new state to set for the flaky test.
:param id: The ID of the flaky test from the request. This is the same ID returned by the Search flaky tests endpoint and corresponds to the test_fingerprint_fqn field in test run events.
38
+
:param id: The ID of the flaky test from the request. This is the value of the ``@test.fingerprint_fqn`` facet
39
+
on test events, the same ID accepted by the update request and returned by the Search flaky tests
40
+
endpoint.
39
41
:type id: str
40
42
41
43
:param success: ``True`` if the update was successful, ``False`` if there were any errors.
0 commit comments