Method list
Retrieves the list of available resource presets.
HTTP request
GET https://mdb.api.cloud.yandex.net/mdb/sqlserver/v1alpha/resourcePresets
Query parameters
Parameter | Description |
---|---|
pageSize | The maximum number of results per page to return. If the number of available results is larger than page_size , the service returns a nextPageToken that can be used to get the next page of results in subsequent list requests. Acceptable values are 0 to 1000, inclusive. |
pageToken | Page token. To get the next page of results, set page_token to the nextPageToken returned by a previous list request. The maximum string length in characters is 100. |
Response
HTTP Code: 200 - OK
{
"resourcePresets": [
{
"id": "string",
"zoneIds": [
"string"
],
"cores": "string",
"memory": "string"
}
],
"nextPageToken": "string"
}
Field | Description |
---|---|
resourcePresets[] | object A preset of resources for hardware configuration of SQL Server hosts. |
resourcePresets[]. id |
string ID of the resource preset. |
resourcePresets[]. zoneIds[] |
string IDs of availability zones where the resource preset is available. |
resourcePresets[]. cores |
string (int64) Number of CPU cores for an SQL Server host created with the preset. |
resourcePresets[]. memory |
string (int64) RAM volume for an SQL Server host created with the preset, in bytes. |
nextPageToken | string Token that allows you to get the next page of results for list requests. If the number of results is larger than pageSize, use the The maximum string length in characters is 100. |