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
8 changes: 4 additions & 4 deletions .apigentools-info
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"spec_versions": {
"v1": {
"apigentools_version": "1.6.2",
"regenerated": "2022-08-15 14:37:08.124598",
"spec_repo_commit": "51cbf00f"
"regenerated": "2022-08-16 17:55:53.781831",
"spec_repo_commit": "56625080"
},
"v2": {
"apigentools_version": "1.6.2",
"regenerated": "2022-08-15 14:37:08.140615",
"spec_repo_commit": "51cbf00f"
"regenerated": "2022-08-16 17:55:53.794942",
"spec_repo_commit": "56625080"
}
}
}
2 changes: 2 additions & 0 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4011,13 +4011,15 @@ components:
- audit_stream
- rum_issue_stream
- apm_issue_stream
- logs_pattern_stream
example: apm_issue_stream
type: string
x-enum-varnames:
- LOGS_STREAM
- AUDIT_STREAM
- RUM_ISSUE_STREAM
- APM_ISSUE_STREAM
- LOGS_PATTERN_STREAM
ListStreamWidgetDefinition:
description: 'The list stream visualization displays a table of recent events
in your application that
Expand Down
10 changes: 6 additions & 4 deletions api/datadogV1/model_list_stream_source.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,19 @@ type ListStreamSource string

// List of ListStreamSource.
const (
LISTSTREAMSOURCE_LOGS_STREAM ListStreamSource = "logs_stream"
LISTSTREAMSOURCE_AUDIT_STREAM ListStreamSource = "audit_stream"
LISTSTREAMSOURCE_RUM_ISSUE_STREAM ListStreamSource = "rum_issue_stream"
LISTSTREAMSOURCE_APM_ISSUE_STREAM ListStreamSource = "apm_issue_stream"
LISTSTREAMSOURCE_LOGS_STREAM ListStreamSource = "logs_stream"
LISTSTREAMSOURCE_AUDIT_STREAM ListStreamSource = "audit_stream"
LISTSTREAMSOURCE_RUM_ISSUE_STREAM ListStreamSource = "rum_issue_stream"
LISTSTREAMSOURCE_APM_ISSUE_STREAM ListStreamSource = "apm_issue_stream"
LISTSTREAMSOURCE_LOGS_PATTERN_STREAM ListStreamSource = "logs_pattern_stream"
)

var allowedListStreamSourceEnumValues = []ListStreamSource{
LISTSTREAMSOURCE_LOGS_STREAM,
LISTSTREAMSOURCE_AUDIT_STREAM,
LISTSTREAMSOURCE_RUM_ISSUE_STREAM,
LISTSTREAMSOURCE_APM_ISSUE_STREAM,
LISTSTREAMSOURCE_LOGS_PATTERN_STREAM,
}

// GetAllowedValues reeturns the list of possible values.
Expand Down