Create users
Create users and passwords.
Request
Method | Request URI |
---|---|
PUT | https://management.chinacloudapi.cn/subscriptions/{subscription-id}/resourceGroups/{resource-group-name}/providers/Microsoft.MySql/servers/{server-name}/users/{user-name}?api-version=2015-09-01 |
URI parameter
None
Request header
Request package header | Describe URI |
---|---|
x-ms-client-request-id | Optional An opaque value generated by the client, not to exceed 1KB of characters. We strongly recommend setting this value so that the server can use it to obtain the client’s activity information. |
Request body
You must specify parameters when you create or update the MySQL Database on Azure server. A JSON example is provided here:
{
"properties": { "password": "password" }
}
Parameter name | Description |
---|---|
password | User sign-in passwords |
Response
An HTTPS response comprises a status code, a response header, and a response body.
Status code
200 OK: Indicates that the server has returned successfully.
Response header
Request package header | Describe URI |
---|---|
x-ms-client-request-id | Can uniquely identify the database request value The request ID is used to track the request information. |
Response body
A JSON example is provided here:
{
"id": "/subscriptions/{subscription-id}8/resourceGroups/{resourcegroup-name}/providers/Microsoft.MySql/servers/{server-name}/users/{user-name}",
"name": "{server-name}/{user-name}",
"type": "Microsoft.MySql/servers/users",
"properties": { }
}