File tree Expand file tree Collapse file tree
src/datadog_api_client/v2/model Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -66681,9 +66681,6 @@ components:
6668166681 filter:
6668266682 description: Filter expression applied to the recommendations.
6668366683 type: string
66684- scope:
66685- description: Recommendations scope. Defaults to `ccm`; use `experiment` for experimental recommendations or `*` for both.
66686- type: string
6668766684 sort:
6668866685 description: Ordered list of sort clauses applied to the result set.
6668966686 items:
Original file line number Diff line number Diff 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 :
You can’t perform that action at this time.
0 commit comments