Deletes a diagnostic bundle by its ID for the specified project.
HTML
DELETE https://hostname/v1/integration/continuous/monitoring/projects/{projectId}/diagnostic-bundles/{bundleId}Process Overview
- Validate caller has `replication-pipeline::manage` permission.
- Locate and delete the specified diagnostic bundle from on-prem components.
- Delete associated metadata from monitoring service.
Key Features
- Permanent deletion of diagnostic bundle and associated data.
- Returns 204 No Content on successful deletion.
Required Permissions
replication-pipeline::manage
Request
Path parameters
| Key | Required | Type | Description |
|---|---|---|---|
| projectId | Yes | string |
Unique identifier of the project. |
| bundleId | Yes | string |
Unique identifier of the diagnostic bundle to delete. |
Response
Response examples
Example status code responses for this method are shown here.
"type": "https://datatracker.ietf.org/doc/html/rfc9110#section-15.5.1",
"title": "Bad Request",
"status": "400",
"detail": "Invalid bundle ID",
"instance": "/v1/integration/continuous/monitoring/projects/{projectId}/diagnostic-bundles/{bundleId}",
"properties": {
"errorCode": "DI-ADAPTER-VAL-0000"
}
"type": "https://datatracker.ietf.org/doc/html/rfc9110#section-15.5.2",
"title": "Unauthorized",
"status": "401",
"detail": "Authorization failed - missing or invalid credentials",
"instance": "/v1/integration/continuous/monitoring/projects/{projectId}/diagnostic-bundles/{bundleId}",
"properties": {
"errorCode": "DI-ADAPTER-AUT-0001"
}
"type": "https://datatracker.ietf.org/doc/html/rfc9110#section-15.5.4",
"title": "Forbidden",
"status": "403",
"detail": "Authorization failed - insufficient permissions",
"instance": "/v1/integration/continuous/monitoring/projects/{projectId}/diagnostic-bundles/{bundleId}",
"properties": {
"errorCode": "DI-ADAPTER-AUT-0002"
}
"type": "https://datatracker.ietf.org/doc/html/rfc9110#section-15.5.5",
"title": "Not Found",
"status": "404",
"detail": "Not Found - Resource does not exist",
"instance": "/v1/integration/continuous/monitoring/projects/{projectId}/diagnostic-bundles/{bundleId}",
"properties": {
"errorCode": "DI-ADAPTER-DBL-0004"
}
"type": "https://datatracker.ietf.org/doc/html/rfc9110#section-15.6",
"title": "Internal Server Error",
"status": "500",
"detail": "An unexpected error occurred",
"instance": "/v1/integration/continuous/monitoring/projects/{projectId}/diagnostic-bundles/{bundleId}",
"properties": {
"errorCode": "DI-ADAPTER-DBL-0007"
}