- What's New
- Function Overview
- Product Bulletin
- Service Overview
- Getting Started
-
User Guide
- Process of Using RocketMQ
- Creating a User and Granting DMS for RocketMQ Permissions
- Buying a RocketMQ Instance
- Configuring a Topic
- Accessing an Instance
- Managing Messages
- Managing Consumer Groups
-
Managing Instances
- Viewing and Modifying Basic Information of a RocketMQ Instance
- Viewing Background Tasks of a RocketMQ Instance
- Configuring Tags for a RocketMQ Instance
- Exporting RocketMQ Instances
- Diagnosing a RocketMQ Instance
- Restarting Brokers of a RocketMQ Instance
- Deleting a RocketMQ Instance
- Configuring SSL of a RocketMQ Instance
- Modifying RocketMQ Specifications
- Migrating Metadata
- Viewing Monitoring Metrics and Configuring Alarms
- Viewing RocketMQ Audit Logs
- Best Practices
- Developer Guide
- API Reference
- SDK Reference
- FAQs
- Videos
Batch Deleting Instances
Function
This API is used to delete instances in batches. Data in the instance will be deleted without any backup. Exercise caution when performing this operation.
URI
POST /v2/{project_id}/instances/action
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
project_id |
Yes |
String |
Project ID. |
Request Parameters
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
instances |
No |
Array of strings |
List of instance IDs. |
action |
Yes |
String |
Operation to be performed on instances. Value: delete. |
all_failure |
No |
String |
When set to RocketMQ, this parameter indicates all RocketMQ instances that fail to be created are to be deleted. |
Response Parameters
Status code: 200
Parameter |
Type |
Description |
---|---|---|
results |
Array of results objects |
Result of instance modification. |
Example Requests
-
Deleting instances in batches
POST https://{endpoint}/v2/{project_id}/instances/action { "action" : "delete", "instances" : [ "54602a9d-5e22-4239-9123-77e350df4a34", "7166cdea-dbad-4d79-9610-7163e6f8b640" ] }
-
Deleting all instances that fail to be created
POST https://{endpoint}/v2/{project_id}/instances/action { "action" : "delete", "allFailure" : "rocketmq" }
Example Responses
Status code: 200
Instances deleted.
{ "results" : [ { "result" : "success", "instance" : "019cacb7-4ff0-4d3c-9f33-f5f7b7fdc0e6" } ] }
Status Codes
Status Code |
Description |
---|---|
200 |
Instances deleted. |
Error Codes
See Error Codes.
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.