modify_db_instance_description
Update the description of an Alibaba Cloud RDS instance by specifying the region ID, instance ID, and new description. Streamline database instance management.
Instructions
modify db instance description.
Args:
region_id: The region ID of the RDS instance.
db_instance_id: The ID of the RDS instance.
description: The RDS instance description.
Returns:
dict[str, Any]: The response.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
db_instance_id | Yes | ||
description | Yes | ||
region_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"db_instance_id": {
"title": "Db Instance Id",
"type": "string"
},
"description": {
"title": "Description",
"type": "string"
},
"region_id": {
"title": "Region Id",
"type": "string"
}
},
"required": [
"region_id",
"db_instance_id",
"description"
],
"title": "modify_db_instance_descriptionArguments",
"type": "object"
}