Skip to content

Commit 78e2ca8

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 66ea316 of spec repo
1 parent 8ac0aff commit 78e2ca8

2 files changed

Lines changed: 0 additions & 11 deletions

File tree

.generator/schemas/v2/openapi.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66346,9 +66346,6 @@ components:
6634666346
filter:
6634766347
description: Filter expression applied to the recommendations.
6634866348
type: string
66349-
scope:
66350-
description: Recommendations scope. Defaults to `ccm`; use `experiment` for experimental recommendations or `*` for both.
66351-
type: string
6635266349
sort:
6635366350
description: Ordered list of sort clauses applied to the result set.
6635466351
items:

src/datadog_api_client/v2/model/recommendations_filter_request.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -28,22 +28,19 @@ def openapi_types(_):
2828

2929
return {
3030
"filter": (str,),
31-
"scope": (str,),
3231
"sort": ([RecommendationsFilterRequestSortItems],),
3332
"view": (str,),
3433
}
3534

3635
attribute_map = {
3736
"filter": "filter",
38-
"scope": "scope",
3937
"sort": "sort",
4038
"view": "view",
4139
}
4240

4341
def __init__(
4442
self_,
4543
filter: Union[str, UnsetType] = unset,
46-
scope: Union[str, UnsetType] = unset,
4744
sort: Union[List[RecommendationsFilterRequestSortItems], UnsetType] = unset,
4845
view: Union[str, UnsetType] = unset,
4946
**kwargs,
@@ -54,9 +51,6 @@ def __init__(
5451
:param filter: Filter expression applied to the recommendations.
5552
:type filter: str, optional
5653
57-
:param scope: Recommendations scope. Defaults to ``ccm`` ; use ``experiment`` for experimental recommendations or ``*`` for both.
58-
:type scope: str, optional
59-
6054
:param sort: Ordered list of sort clauses applied to the result set.
6155
:type sort: [RecommendationsFilterRequestSortItems], optional
6256
@@ -65,8 +59,6 @@ def __init__(
6559
"""
6660
if filter is not unset:
6761
kwargs["filter"] = filter
68-
if scope is not unset:
69-
kwargs["scope"] = scope
7062
if sort is not unset:
7163
kwargs["sort"] = sort
7264
if view is not unset:

0 commit comments

Comments
 (0)