diff --git a/.generator/schemas/v2/openapi.yaml b/.generator/schemas/v2/openapi.yaml index 3bd4dc4902..8c800f2512 100644 --- a/.generator/schemas/v2/openapi.yaml +++ b/.generator/schemas/v2/openapi.yaml @@ -65120,9 +65120,6 @@ components: filter: description: Filter expression applied to the recommendations. type: string - scope: - description: Recommendations scope. Defaults to `ccm`; use `experiment` for experimental recommendations or `*` for both. - type: string sort: description: Ordered list of sort clauses applied to the result set. items: diff --git a/src/datadog_api_client/v2/model/recommendations_filter_request.py b/src/datadog_api_client/v2/model/recommendations_filter_request.py index ec7d1545f0..e31c6d8494 100644 --- a/src/datadog_api_client/v2/model/recommendations_filter_request.py +++ b/src/datadog_api_client/v2/model/recommendations_filter_request.py @@ -28,14 +28,12 @@ def openapi_types(_): return { "filter": (str,), - "scope": (str,), "sort": ([RecommendationsFilterRequestSortItems],), "view": (str,), } attribute_map = { "filter": "filter", - "scope": "scope", "sort": "sort", "view": "view", } @@ -43,7 +41,6 @@ def openapi_types(_): def __init__( self_, filter: Union[str, UnsetType] = unset, - scope: Union[str, UnsetType] = unset, sort: Union[List[RecommendationsFilterRequestSortItems], UnsetType] = unset, view: Union[str, UnsetType] = unset, **kwargs, @@ -54,9 +51,6 @@ def __init__( :param filter: Filter expression applied to the recommendations. :type filter: str, optional - :param scope: Recommendations scope. Defaults to ``ccm`` ; use ``experiment`` for experimental recommendations or ``*`` for both. - :type scope: str, optional - :param sort: Ordered list of sort clauses applied to the result set. :type sort: [RecommendationsFilterRequestSortItems], optional @@ -65,8 +59,6 @@ def __init__( """ if filter is not unset: kwargs["filter"] = filter - if scope is not unset: - kwargs["scope"] = scope if sort is not unset: kwargs["sort"] = sort if view is not unset: