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
5 changes: 3 additions & 2 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -449,7 +449,7 @@ components:
type: string
GetIssueIncludeQueryParameter:
description: Comma-separated list of relationship objects that should be included
in the response.
in the response. Possible values are `assignee`, `case`, and `team_owners`.
explode: false
in: query
name: include
Expand Down Expand Up @@ -996,7 +996,8 @@ components:
$ref: '#/components/schemas/ServiceDefinitionSchemaVersions'
SearchIssuesIncludeQueryParameter:
description: Comma-separated list of relationship objects that should be included
in the response.
in the response. Possible values are `issue`, `issue.assignee`, `issue.case`,
and `issue.team_owners`.
explode: false
in: query
name: include
Expand Down
4 changes: 2 additions & 2 deletions src/datadog_api_client/v2/api/error_tracking_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ def get_issue(

:param issue_id: The identifier of the issue.
:type issue_id: str
:param include: Comma-separated list of relationship objects that should be included in the response.
:param include: Comma-separated list of relationship objects that should be included in the response. Possible values are ``assignee`` , ``case`` , and ``team_owners``.
:type include: [GetIssueIncludeQueryParameterItem], optional
:rtype: IssueResponse
"""
Expand All @@ -213,7 +213,7 @@ def search_issues(

:param body: Search issues request payload.
:type body: IssuesSearchRequest
:param include: Comma-separated list of relationship objects that should be included in the response.
:param include: Comma-separated list of relationship objects that should be included in the response. Possible values are ``issue`` , ``issue.assignee`` , ``issue.case`` , and ``issue.team_owners``.
:type include: [SearchIssuesIncludeQueryParameterItem], optional
:rtype: IssuesSearchResponse
"""
Expand Down
Loading