88from datadog_api_client .api_client import ApiClient , Endpoint as _Endpoint
99from datadog_api_client .configuration import Configuration
1010from datadog_api_client .v2 .model .dashboard_list_delete_items_response import DashboardListDeleteItemsResponse
11- from datadog_api_client .v2 .model .dashboard_list_delete_items_request import DashboardListDeleteItemsRequest
11+ from datadog_api_client .v2 .model .dashboard_list_remove_items_request import DashboardListRemoveItemsRequest
1212from datadog_api_client .v2 .model .dashboard_list_items import DashboardListItems
1313from datadog_api_client .v2 .model .dashboard_list_add_items_response import DashboardListAddItemsResponse
1414from datadog_api_client .v2 .model .dashboard_list_add_items_request import DashboardListAddItemsRequest
@@ -72,7 +72,7 @@ def __init__(self, api_client=None):
7272 },
7373 "body" : {
7474 "required" : True ,
75- "openapi_types" : (DashboardListDeleteItemsRequest ,),
75+ "openapi_types" : (DashboardListRemoveItemsRequest ,),
7676 "location" : "body" ,
7777 },
7878 },
@@ -154,7 +154,7 @@ def create_dashboard_list_items(
154154 def delete_dashboard_list_items (
155155 self ,
156156 dashboard_list_id : int ,
157- body : DashboardListDeleteItemsRequest ,
157+ body : DashboardListRemoveItemsRequest ,
158158 ) -> DashboardListDeleteItemsResponse :
159159 """Delete items from a dashboard list.
160160
@@ -163,7 +163,7 @@ def delete_dashboard_list_items(
163163 :param dashboard_list_id: ID of the dashboard list to delete items from.
164164 :type dashboard_list_id: int
165165 :param body: Dashboards to delete from the dashboard list.
166- :type body: DashboardListDeleteItemsRequest
166+ :type body: DashboardListRemoveItemsRequest
167167 :rtype: DashboardListDeleteItemsResponse
168168 """
169169 kwargs : Dict [str , Any ] = {}
0 commit comments