We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 82c0931 + ba4080c commit a2b54d3Copy full SHA for a2b54d3
dynatrace/environment_v2/extensions.py
@@ -193,6 +193,11 @@ def put_monitoring_configuration(self,
193
response = self.__http_client.make_request(url, method="PUT", params=params)
194
return MonitoringConfigurationResponse(raw_element=response.json())
195
196
+ def delete_monitoring_configuration(self,
197
+ extension_name:str,
198
+ config_id: str):
199
+ url = f"{self.ENDPOINT}/{extension_name}/monitoringConfigurations/{config_id}"
200
+ return self.__http_client.make_request(url, method="DELETE")
201
202
class SchemaFiles(DynatraceObject):
203
def _create_from_raw_data(self, raw_element: Dict[str, Any]):
0 commit comments