@@ -91,6 +91,29 @@ def __init__(self, api_client=None):
9191 api_client = api_client ,
9292 )
9393
94+ self ._delete_ms_teams_user_binding_endpoint = _Endpoint (
95+ settings = {
96+ "response_type" : None ,
97+ "auth" : ["apiKeyAuth" , "appKeyAuth" ],
98+ "endpoint_path" : "/api/v2/integration/ms-teams/configuration/user-binding/{tenant_id}" ,
99+ "operation_id" : "delete_ms_teams_user_binding" ,
100+ "http_method" : "DELETE" ,
101+ "version" : "v2" ,
102+ },
103+ params_map = {
104+ "tenant_id" : {
105+ "required" : True ,
106+ "openapi_types" : (str ,),
107+ "attribute" : "tenant_id" ,
108+ "location" : "path" ,
109+ },
110+ },
111+ headers_map = {
112+ "accept" : ["*/*" ],
113+ },
114+ api_client = api_client ,
115+ )
116+
94117 self ._delete_tenant_based_handle_endpoint = _Endpoint (
95118 settings = {
96119 "response_type" : None ,
@@ -353,6 +376,23 @@ def create_workflows_webhook_handle(
353376
354377 return self ._create_workflows_webhook_handle_endpoint .call_with_http_info (** kwargs )
355378
379+ def delete_ms_teams_user_binding (
380+ self ,
381+ tenant_id : str ,
382+ ) -> None :
383+ """Delete user binding.
384+
385+ Delete the user binding for a given tenant from the Datadog Microsoft Teams integration.
386+
387+ :param tenant_id: Your tenant id.
388+ :type tenant_id: str
389+ :rtype: None
390+ """
391+ kwargs : Dict [str , Any ] = {}
392+ kwargs ["tenant_id" ] = tenant_id
393+
394+ return self ._delete_ms_teams_user_binding_endpoint .call_with_http_info (** kwargs )
395+
356396 def delete_tenant_based_handle (
357397 self ,
358398 handle_id : str ,
0 commit comments