Yandex Cloud
Search
Discuss with expertTry it for free
  • Customer Stories
  • Documentation
  • Blog
  • All Services
    • Cloud Interconnect
    • Cloud Backup
    • Cloud Registry
    • Yandex AI Studio
    • Compute Cloud
    • Object Storage
    • Managed Service for Kubernetes®
    • Yandex BareMetal
    • Smart Web Security
    • Security Deck
    • Managed Service for PostgreSQL
    • Managed Service for ClickHouse®
    • Monium
    • Cloud CDN
    • Network Load Balancer
    • Virtual Private Cloud
    • Cloud DNS
    • Application Load Balancer
    • Yandex Cloud Video
    • Stackland
    • Yandex Cloud Router
    • Yandex Managed Service for Trino
    • Managed Service for MySQL®
    • Managed Service for Valkey™
    • Managed Service for Apache Spark™
    • Yandex StoreDoc
    • Managed Service for OpenSearch
    • Managed Service for Apache Kafka®
    • Data Transfer
    • Yandex MPP Analytics Engine for PostgreSQL
    • Yandex Managed Service for Apache Airflow®
    • Data Processing
    • Yandex MetaData Hub
    • Managed Service for YDB
    • Managed Service for Sharded PostgreSQL
    • Managed Service for YTsaurus
    • Yandex WebSQL
    • DataLens
    • Yandex Search API
    • SpeechSense
    • SpeechKit
    • DataSphere
    • Vision OCR
    • Translate
    • Yandex Identity Hub
    • Key Management Service
    • Certificate Manager
    • Yandex Lockbox
    • Audit Trails
    • SmartCaptcha
    • Cloud Desktop
    • Yandex SIEM
    • SourceCraft Code Assistant
    • Container Registry
    • Managed Service for GitLab
    • Managed Service for Prometheus®
    • Cloud Functions
    • API Gateway
    • Yandex Cloud Postbox
    • Message Queue
    • Serverless Integrations
    • IoT Core
    • Data Streams
    • Serverless Containers
    • Cloud Notification Service
    • Yandex Query
    • Identity and Access Management
    • Yandex Cloud Console
    • Resource Manager
    • Yandex Cloud Billing
    • Yandex Cloud Quota Manager
    • Cloud Apps
  • System Status
  • Marketplace
    • Featured
    • Infrastructure & Network
    • Data Platform
    • AI for business
    • Security
    • DevOps tools
    • Serverless
    • Monitoring & Resources
  • All Solutions
    • By industry
    • By use case
    • Economics and Pricing
    • Security
    • Technical Support
    • Start testing with double trial credits
    • Cloud credits to scale your IT product
    • Gateway to Russia
    • Cloud for Startups
    • Center for Technologies and Society
    • Yandex Cloud Partner program
    • Price calculator
    • Pricing plans
  • Customer Stories
  • Documentation
  • Blog
© 2026 Direct Cursus Technology L.L.C.
Yandex BareMetal
    • All guides
    • Overview
    • Integrations with other Yandex Cloud services
      • Overview
      • Stock server configurations
      • Custom server configuration
      • On-request server configuration
      • Overview
      • Public network
      • Private network
      • DHCP
      • MC-LAG
      • Restrictions in BareMetal networks
      • Overview
      • Images
      • Access management
      • Additional server settings
      • Management console
        • API authentication
            • Overview
              • Overview
              • ListConfigurationRentalPeriods
              • ResolveConfigurationDefaultStorage
              • ResolveConfigurationsDefaultStorages
      • Monitoring metrics
    • Quotas and limits
  • Pricing policy
  • Release notes
  • FAQ

In this article:

  • gRPC request
  • ResolveConfigurationDefaultStorageRequest
  • DefaultStorage
  • Storage
  • StoragePartition
  • Disk
  • Raid
  1. Concepts
  2. Setup and management
  3. API reference
  4. API v2
  5. gRPC
  6. Configuration
  7. ResolveConfigurationDefaultStorage

BareMetal API, gRPC: ConfigurationService.ResolveConfigurationDefaultStorage

Written by
Yandex Cloud
Updated at September 1, 2026
View in Markdown
  • gRPC request
  • ResolveConfigurationDefaultStorageRequest
  • DefaultStorage
  • Storage
  • StoragePartition
  • Disk
  • Raid

Returns the default storage for the specified configuration.

gRPC requestgRPC request

rpc ResolveConfigurationDefaultStorage (ResolveConfigurationDefaultStorageRequest) returns (DefaultStorage)

ResolveConfigurationDefaultStorageRequestResolveConfigurationDefaultStorageRequest

{
  "configuration_id": "string"
}

Field

Description

configuration_id

string

ID of the configuration.

Value must match the regular expression [a-z][a-z0-9]*.

DefaultStorageDefaultStorage

{
  "configuration_id": "string",
  "storages": [
    {
      "partitions": [
        {
          "type": "StoragePartitionType",
          "size_bytes": "int64",
          "mount_point": "string"
        }
      ],
      // Includes only one of the fields `disk`, `raid`
      "disk": {
        "id": "string",
        "type": "DiskDriveType",
        "size_bytes": "int64"
      },
      "raid": {
        "type": "RaidType",
        "disks": [
          {
            "id": "string",
            "type": "DiskDriveType",
            "size_bytes": "int64"
          }
        ]
      }
      // end of the list of possible fields
    }
  ]
}

Field

Description

configuration_id

string

ID of the configuration.
To get the configuration ID, use a [ConfigurationService.List] request.

storages[]

Storage

List of default storages.

StorageStorage

Storage, a OS-level storage entity used for creating partitions. For example, this could
represent a plain disk or a software RAID of disks.

Field

Description

partitions[]

StoragePartition

Array of partitions created on the storage.

disk

Disk

Disk storage.

Includes only one of the fields disk, raid.

Storage type.

raid

Raid

RAID storage.

Includes only one of the fields disk, raid.

Storage type.

StoragePartitionStoragePartition

Field

Description

type

enum StoragePartitionType

Partition type.

  • EXT4: ext4 file system partition type.
  • SWAP: Swap partition type.
  • EXT3: ext3 file system partition type.
  • XFS: XFS file system partition type.

size_bytes

int64

Size of the storage partition.

mount_point

string

Storage mount point.

DiskDisk

Disk.

Field

Description

id

string

ID of the disk.

type

enum DiskDriveType

Type of the disk drive.

  • HDD: Hard disk drive.
  • SSD: Solid state drive.
  • NVME: NVMe Solid state drive.

size_bytes

int64

Size of the disk.

RaidRaid

RAID storage.

Field

Description

type

enum RaidType

RAID type.

  • RAID0: RAID0 configuration.
  • RAID1: RAID1 configuration.
  • RAID10: RAID10 configuration.

disks[]

Disk

Array of disks in the RAID configuration.

Was the article helpful?

Previous
ListConfigurationRentalPeriods
Next
ResolveConfigurationsDefaultStorages
© 2026 Direct Cursus Technology L.L.C.