Yandex Cloud
  • Services
  • Solutions
  • Why Yandex Cloud
  • Blog
  • Pricing
  • Documentation
  • Contact us
Get started
Language / Region
Yandex project
© 2023 Intertech Services AG
Yandex Managed Service for Redis
  • Getting started
  • Step-by-step guides
  • Tutorials
  • Concepts
  • Access management
  • Pricing policy
  • API reference
    • Authentication in the API
    • gRPC
    • REST
      • Overview
      • Backup
      • Cluster
      • ResourcePreset
        • Overview
        • get
        • list
      • Operation
  • Revision history
  • Questions and answers
  1. API reference
  2. REST
  3. ResourcePreset
  4. list

Managed Service for Redis API, REST: ResourcePreset.list

Written by
Yandex Cloud
,
improved by
amatol
  • HTTP request
  • Query parameters
  • Response

Retrieves the list of available resource presets.

HTTP request

GET https://mdb.api.cloud.yandex.net/managed-redis/v1/resourcePresets

Query parameters

Parameter Description
pageSize

The maximum number of results per page to return. If the number of available results is larger than pageSize, the service returns a nextPageToken that can be used to get the next page of results in subsequent list requests.

pageToken

Page token. To get the next page of results, set pageToken to the nextPageToken returned by the previous list request.

Response

HTTP Code: 200 - OK

{
  "resourcePresets": [
    {
      "id": "string",
      "zoneIds": [
        "string"
      ],
      "memory": "string",
      "cores": "string"
    }
  ],
  "nextPageToken": "string"
}
Field Description
resourcePresets[] object

List of resource presets.

resourcePresets[].
id
string

ID of the resource preset.

resourcePresets[].
zoneIds[]
string

IDs of availability zones where the resource preset is available.

resourcePresets[].
memory
string (int64)

RAM volume for a Redis host created with the preset, in bytes.

resourcePresets[].
cores
string (int64)

Number of CPU cores for a Redis host created with the preset.

nextPageToken string

This token allows you to get the next page of results for list requests. If the number of results is larger than pageSize, use the nextPageToken as the value for the pageToken parameter in the next list request. Each subsequent list request will have its own nextPageToken to continue paging through the results.

Was the article helpful?

Language / Region
Yandex project
© 2023 Intertech Services AG
In this article:
  • HTTP request
  • Query parameters
  • Response