Skip to content

Commit 1def3ac

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
[error-tracking] List possible includes in API doc (#3247)
Co-authored-by: ci.datadog-api-spec <[email protected]>
1 parent e52f93c commit 1def3ac

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.generator/schemas/v2/openapi.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -449,7 +449,7 @@ components:
449449
type: string
450450
GetIssueIncludeQueryParameter:
451451
description: Comma-separated list of relationship objects that should be included
452-
in the response.
452+
in the response. Possible values are `assignee`, `case`, and `team_owners`.
453453
explode: false
454454
in: query
455455
name: include
@@ -996,7 +996,8 @@ components:
996996
$ref: '#/components/schemas/ServiceDefinitionSchemaVersions'
997997
SearchIssuesIncludeQueryParameter:
998998
description: Comma-separated list of relationship objects that should be included
999-
in the response.
999+
in the response. Possible values are `issue`, `issue.assignee`, `issue.case`,
1000+
and `issue.team_owners`.
10001001
explode: false
10011002
in: query
10021003
name: include

src/main/java/com/datadog/api/client/v2/api/ErrorTrackingApi.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,8 @@ public static class GetIssueOptionalParameters {
192192
* Set include.
193193
*
194194
* @param include Comma-separated list of relationship objects that should be included in the
195-
* response. (optional)
195+
* response. Possible values are <code>assignee</code>, <code>case</code>, and <code>
196+
* team_owners</code>. (optional)
196197
* @return GetIssueOptionalParameters
197198
*/
198199
public GetIssueOptionalParameters include(List<GetIssueIncludeQueryParameterItem> include) {
@@ -388,7 +389,8 @@ public static class SearchIssuesOptionalParameters {
388389
* Set include.
389390
*
390391
* @param include Comma-separated list of relationship objects that should be included in the
391-
* response. (optional)
392+
* response. Possible values are <code>issue</code>, <code>issue.assignee</code>, <code>
393+
* issue.case</code>, and <code>issue.team_owners</code>. (optional)
392394
* @return SearchIssuesOptionalParameters
393395
*/
394396
public SearchIssuesOptionalParameters include(

0 commit comments

Comments
 (0)