allocate_instance_public_connection
Assign a public connection to an Alibaba Cloud RDS instance by specifying the region, instance ID, and connection string prefix. Returns the configured connection details.
Instructions
allocate db instance public connection.
Args:
region_id: The region ID of the RDS instance.
db_instance_id: The ID of the RDS instance.
connection_string_prefix: The prefix of connection string.
Returns:
dict[str, Any]: The response.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
connection_string_prefix | No | ||
db_instance_id | Yes | ||
port | No | 3306 | |
region_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"connection_string_prefix": {
"default": null,
"title": "Connection String Prefix",
"type": "string"
},
"db_instance_id": {
"title": "Db Instance Id",
"type": "string"
},
"port": {
"default": "3306",
"title": "Port",
"type": "string"
},
"region_id": {
"title": "Region Id",
"type": "string"
}
},
"required": [
"region_id",
"db_instance_id"
],
"title": "allocate_instance_public_connectionArguments",
"type": "object"
}