Modifying Instance Information
Function
This API is used to modify the name and description of an instance.
Calling Method
For details, see Calling APIs.
URI
PUT /v2/{project_id}/instances/{instance_id}
|
Parameter |
Mandatory |
Type |
Description |
|---|---|---|---|
|
project_id |
Yes |
String |
Project ID. For details, see Obtaining a Project ID. |
|
instance_id |
Yes |
String |
Instance ID. |
Request Parameters
|
Parameter |
Mandatory |
Type |
Description |
|---|---|---|---|
|
name |
No |
String |
Instance name. An instance name consists of 4 to 64 characters including letters, digits, and hyphens (-) and must start with a letter. |
|
description |
No |
String |
Description of an instance. 0–1,024 characters
NOTE:
The backslash () and quotation mark (") are special characters for JSON messages. When using these characters in a parameter value, add the escape character () before the characters, for example, \\ and \".
|
|
maintain_begin |
No |
String |
Time at which the maintenance window starts. The format is HH:mm:ss.
|
|
maintain_end |
No |
String |
Time at which the maintenance window ends. The format is HH:mm:ss.
|
|
security_group_id |
No |
String |
Security group ID. To obtain the security group ID, call the API for querying the security group list by referring to Virtual Private Cloud API Reference. |
|
enable_publicip |
No |
Boolean |
Whether to enable public access for the RabbitMQ instance.
|
|
publicip_id |
No |
String |
ID of the EIP bound to a RabbitMQ instance. This parameter is mandatory if public access is enabled (that is, enable_publicip is set to true). To obtain the EIP ID, call the API for querying the EIP list by referring to Elastic IP API Reference. |
|
enterprise_project_id |
No |
String |
Enterprise project. |
|
enable_acl |
No |
Boolean |
ACL (only for the AMQP version). |
Response Parameters
Status code: 204
The instance is modified successfully.
None
Example Requests
-
Modifying the name and description of an instance.
PUT https://{endpoint}/v2/{project_id}/instances/{instance_id} { "name" : "rabbitmq-01", "description" : "instance description" } -
Modifying the name, description, and maintenance time window of an instance.
PUT https://{endpoint}/v2/{project_id}/instances/{instance_id} { "name" : "rabbitmq-01", "description" : "instance description", "maintain_begin" : "02:00:00", "maintain_end" : "06:00:00" } -
Enabling public network access
PUT https://{endpoint}/v2/{project_id}/instances/{instance_id} { "enable_publicip" : true, "publicip_id" : "32685c2b-xxxx-xxxx-86c6-a1902359xxxx" }
Example Responses
None
Status Codes
|
Status Code |
Description |
|---|---|
|
204 |
The instance is modified successfully. |
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.