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 lib/datadog_api_client/v2/api/error_tracking_api.rb
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def get_issue(issue_id, opts = {})
#
# @param issue_id [String] The identifier of the issue.
# @param opts [Hash] the optional parameters
# @option opts [Array<GetIssueIncludeQueryParameterItem>] :include Comma-separated list of relationship objects that should be included in the response.
# @option opts [Array<GetIssueIncludeQueryParameterItem>] :include Comma-separated list of relationship objects that should be included in the response. Possible values are `assignee`, `case`, and `team_owners`.
# @return [Array<(IssueResponse, Integer, Hash)>] IssueResponse data, response status code and response headers
def get_issue_with_http_info(issue_id, opts = {})

Expand Down Expand Up @@ -169,7 +169,7 @@ def search_issues(body, opts = {})
#
# @param body [IssuesSearchRequest] Search issues request payload.
# @param opts [Hash] the optional parameters
# @option opts [Array<SearchIssuesIncludeQueryParameterItem>] :include Comma-separated list of relationship objects that should be included in the response.
# @option opts [Array<SearchIssuesIncludeQueryParameterItem>] :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`.
# @return [Array<(IssuesSearchResponse, Integer, Hash)>] IssuesSearchResponse data, response status code and response headers
def search_issues_with_http_info(body, opts = {})

Expand Down
Loading