Skip to content

Commit

Permalink
Regenerate client from commit 30d313fd of spec repo
Browse files Browse the repository at this point in the history
  • Loading branch information
ci.datadog-api-spec committed Feb 23, 2024
1 parent f2e6500 commit 7d536d1
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
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.6",
"regenerated": "2024-02-23 10:58:45.142232",
"spec_repo_commit": "86101285"
"regenerated": "2024-02-23 12:49:42.757373",
"spec_repo_commit": "30d313fd"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2024-02-23 10:58:45.157136",
"spec_repo_commit": "86101285"
"regenerated": "2024-02-23 12:49:42.771561",
"spec_repo_commit": "30d313fd"
}
}
}
2 changes: 2 additions & 0 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6764,6 +6764,7 @@ components:
- events
- logs
- spans
- database_queries
example: rum
type: string
x-enum-varnames:
Expand All @@ -6774,6 +6775,7 @@ components:
- EVENTS
- LOGS
- SPANS
- DATABASE_QUERIES
MonitorFormulaAndFunctionQueryDefinition:
description: A formula and function query.
oneOf:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class MonitorFormulaAndFunctionEventsDataSource(ModelSimple):
"""
Data source for event platform-based queries.
:param value: Must be one of ["rum", "ci_pipelines", "ci_tests", "audit", "events", "logs", "spans"].
:param value: Must be one of ["rum", "ci_pipelines", "ci_tests", "audit", "events", "logs", "spans", "database_queries"].
:type value: str
"""

Expand All @@ -28,6 +28,7 @@ class MonitorFormulaAndFunctionEventsDataSource(ModelSimple):
"events",
"logs",
"spans",
"database_queries",
}
RUM: ClassVar["MonitorFormulaAndFunctionEventsDataSource"]
CI_PIPELINES: ClassVar["MonitorFormulaAndFunctionEventsDataSource"]
Expand All @@ -36,6 +37,7 @@ class MonitorFormulaAndFunctionEventsDataSource(ModelSimple):
EVENTS: ClassVar["MonitorFormulaAndFunctionEventsDataSource"]
LOGS: ClassVar["MonitorFormulaAndFunctionEventsDataSource"]
SPANS: ClassVar["MonitorFormulaAndFunctionEventsDataSource"]
DATABASE_QUERIES: ClassVar["MonitorFormulaAndFunctionEventsDataSource"]

@cached_property
def openapi_types(_):
Expand All @@ -51,3 +53,6 @@ def openapi_types(_):
MonitorFormulaAndFunctionEventsDataSource.EVENTS = MonitorFormulaAndFunctionEventsDataSource("events")
MonitorFormulaAndFunctionEventsDataSource.LOGS = MonitorFormulaAndFunctionEventsDataSource("logs")
MonitorFormulaAndFunctionEventsDataSource.SPANS = MonitorFormulaAndFunctionEventsDataSource("spans")
MonitorFormulaAndFunctionEventsDataSource.DATABASE_QUERIES = MonitorFormulaAndFunctionEventsDataSource(
"database_queries"
)

0 comments on commit 7d536d1

Please sign in to comment.