Method restore
Creates a new MySQL cluster using the specified backup.
HTTP request
POST https://mdb.api.cloud.yandex.net/managed-mysql/v1alpha/clusters:restore
Body parameters
{
"backupId": "string",
"time": "string",
"name": "string",
"description": "string",
"labels": "object",
"environment": "string",
"configSpec": {
"version": "string",
"resources": {
"resourcePresetId": "string",
"diskSize": "string",
"diskTypeId": "string"
},
"backupWindowStart": {
"hours": "integer",
"minutes": "integer",
"seconds": "integer",
"nanos": "integer"
},
"mysqlConfig_5_7": {
"innodbBufferPoolSize": "integer",
"maxConnections": "integer",
"longQueryTime": "number"
}
},
"hostSpecs": [
{
"zoneId": "string",
"subnetId": "string",
"assignPublicIp": true
}
],
"networkId": "string"
}
Field | Description |
---|---|
backupId | string Required. ID of the backup to create a cluster from. To get the backup ID, use a listBackups request. |
time | string (date-time) Required. Timestamp of the moment to which the MySQL cluster should be restored. String in RFC3339 text format. |
name | string Required. Name of the new MySQL cluster. The name must be unique within the folder. Value must match the regular expression |
description | string Description of the new MySQL cluster. The maximum string length in characters is 256. |
labels | object Custom labels for the MySQL cluster as No more than 64 per resource. The string length in characters for each key must be 1-63. Each key must match the regular expression |
environment | string Deployment environment of the new MySQL cluster.
|
configSpec | object Configuration for the MySQL cluster to be created. |
configSpec. version |
string Version of MySQL used in the cluster. Possible values:
|
configSpec. resources |
object Resources allocated to MySQL hosts. |
configSpec. resources. resourcePresetId |
string ID of the preset for computational resources available to a host (CPU, memory etc.). All available presets are listed in the documentation. |
configSpec. resources. diskSize |
string (int64) Volume of the storage available to a host. |
configSpec. resources. diskTypeId |
string Type of the storage environment for the host. Possible values:
|
configSpec. backupWindowStart |
object Time to start the daily backup, in the UTC timezone. Represents a time of day. The date and time zone are either not significant or are specified elsewhere. An API may choose to allow leap seconds. Related types are google.type.Date and google.protobuf.Timestamp. |
configSpec. backupWindowStart. hours |
integer (int32) Hours of day in 24 hour format. Should be from 0 to 23. An API may choose to allow the value "24:00:00" for scenarios like business closing time. |
configSpec. backupWindowStart. minutes |
integer (int32) Minutes of hour of day. Must be from 0 to 59. |
configSpec. backupWindowStart. seconds |
integer (int32) Seconds of minutes of the time. Must normally be from 0 to 59. An API may allow the value 60 if it allows leap-seconds. |
configSpec. backupWindowStart. nanos |
integer (int32) Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999. |
configSpec. mysqlConfig_5_7 |
object Configuration for a MySQL 5.7 cluster. Options and structure of |
configSpec. mysqlConfig_5_7. innodbBufferPoolSize |
integer (int64) Size of the InnoDB buffer pool used for caching table and index data. For details, see MySQL documentation for the parameter. The minimum value is 5242880. |
configSpec. mysqlConfig_5_7. maxConnections |
integer (int64) The maximum permitted number of simultaneous client connections. For details, see MySQL documentation for the variable. Acceptable values are 10 to 10000, inclusive. |
configSpec. mysqlConfig_5_7. longQueryTime |
number (double) Time that it takes to process a query before it is considered slow. For details, see MySQL documentation for the variable. |
hostSpecs[] | object Configurations for MySQL hosts that should be added to the cluster that is being created from the backup. |
hostSpecs[]. zoneId |
string ID of the availability zone where the host resides. To get a list of available zones, use the list request. The maximum string length in characters is 50. |
hostSpecs[]. subnetId |
string ID of the subnet that the host should belong to. This subnet should be a part of the network that the cluster belongs to. The ID of the network is set in the field Cluster.networkId. The maximum string length in characters is 50. |
hostSpecs[]. assignPublicIp |
boolean (boolean) Whether the host should get a public IP address on creation. After a host has been created, this setting cannot be changed. To remove an assigned public IP, or to assign a public IP to a host without one, recreate the host with Possible values:
|
networkId | string ID of the network to create the MySQL cluster in. The maximum string length in characters is 50. |
Response
HTTP Code: 200 - OK
{
"id": "string",
"description": "string",
"createdAt": "string",
"createdBy": "string",
"modifiedAt": "string",
"done": true,
"metadata": "object",
// includes only one of the fields `error`, `response`
"error": {
"code": "integer",
"message": "string",
"details": [
"object"
]
},
"response": "object",
// end of the list of possible fields
}
An Operation resource. For more information, see Operation.
Field | Description |
---|---|
id | string ID of the operation. |
description | string Description of the operation. 0-256 characters long. |
createdAt | string (date-time) Creation timestamp. String in RFC3339 text format. |
createdBy | string ID of the user or service account who initiated the operation. |
modifiedAt | string (date-time) The time when the Operation resource was last modified. String in RFC3339 text format. |
done | boolean (boolean) If the value is |
metadata | object Service-specific metadata associated with the operation. It typically contains the ID of the target resource that the operation is performed on. Any method that returns a long-running operation should document the metadata type, if any. |
error | object The error result of the operation in case of failure or cancellation. includes only one of the fields error , response The error result of the operation in case of failure or cancellation. |
error. code |
integer (int32) Error code. An enum value of google.rpc.Code. |
error. message |
string An error message. |
error. details[] |
object A list of messages that carry the error details. |
response | object includes only one of the fields error , response The normal response of the operation in case of success. If the original method returns no data on success, such as Delete, the response is google.protobuf.Empty. If the original method is the standard Create/Update, the response should be the target resource of the operation. Any method that returns a long-running operation should document the response type, if any. |