Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Nebius AI Cloud API

This repository contains the .proto files defining the gRPC API for Nebius AI Cloud services. It also provides a pre-generated Rust crate for interacting with this API.
Rust Crate Usage
This crate provides native Rust types and tonic clients for all Nebius AI Cloud services.
Setup
Add the crate to your Cargo.toml dependencies. You will also need tokio and tonic.
[]
= "0.1" # Replace with the latest version from crates.io
= { = "1", = ["full"] }
= { = "0.13", = ["transport"] }
Example: Creating a Virtual Machine
The following example demonstrates how to create a simple virtual machine.
First, ensure you have an IAM token for authentication. You can get one using the Nebius CLI: nebius iam get-access-token. It is recommended to set this token as an environment variable. You will also need to provide IDs for your project, a subnet, and the boot image.
use ;
use ;
async
### Development
If you are working on this crate directly, you will need the `buf` CLI to be installed. The Rust code is generated automatically from the `.proto` files when you run `cargo build`.
---
## API Documentation
The following sections describe the Nebius gRPC API in detail, including authentication, endpoints, and usage patterns.
## Tools
While you can interact directly with the Nebius AI Cloud API, we recommend leveraging the following tools to simplify your development and operations:
-
Service Account Authentication
Prerequisites: You must have created a service account with the necessary credentials as outlined in the documentation.
Service account credentials cannot be directly used for authentication. Your service needs to obtain an IAM token using OAuth 2.0 with a compatible client library that implements RFC-8693 and JWT to generate a claim.
Steps:
- Generate a JWT:
- Use the RS256 signing algorithm.
- Include the following claims:
kid: Public Key ID of your service account.iss: Your service account ID.sub: Your service account ID.exp: Set a short expiration time (e.g., 5 minutes) as the token is only used for exchanging another token.
- Sign the JWT with the service account's private key.
- Exchange JWT for an IAM Token:
- Using gRPC: Call
nebius.iam.v1.TokenExchangeService/Exchangeontokens.iam.api.nebius.cloud:443. - Using HTTP: Send a POST request to
https://auth.eu.nebius.com:443/oauth2/token/exchange.
- Using gRPC: Call
- Use the IAM Token from
access_tokenfrom the response - Repeat the process before the IAM token expires (indicated by
expires_infrom the response).
SA_ID="serviceaccount-e00..."
KEY_ID="publickey-e00..."
PRIVATE_KEY_PATH="private_key.pem"
# https://github.com/mike-engel/jwt-cli
JWT=
RESPONSE=
TOKEN=
SA_ID="serviceaccount-e00..."
KEY_ID="publickey-e00..."
PRIVATE_KEY_PATH="private_key.pem"
# https://github.com/mike-engel/jwt-cli
JWT=
RESPONSE=
TOKEN=
Method Update and X-ResetMask Header
In Nebius AI Cloud API, the Update method is designed to perform a "full-replace" of resource fields rather than a "patch" operation.
However, to maintain compatibility with clients of different versions, the server ensures that fields unknown to the client are not unintentionally modified.
To achieve this, Nebius employs a mechanism called the Reset Mask.
Note: Nebius' Reset Mask is distinct from Google's Field Mask.
Behavior
A field in a protobuf message is not transmitted over the wire if it has a default value (empty string, 0, false, or NULL).
The server updates a resource field only if:
- The request contains a non-default value for that field, or
- The field is explicitly included in the mask provided in the
X-ResetMaskheader.
For example, to detach (remove) secondary disks from a compute instance, you can use the following X-ResetMask:
The Nebius SDK for all supported languages manages the X-ResetMask header automatically.
Reset Mask Syntax
A reset mask is a comma-separated list of elements, where each element specifies one or more fields in a protobuf message.
Example:
a, b.c, d.e.12, f.(j.h,i.j).k, l.*.m
The fields matched by the mask above are:
acwithin the structureb- The 12th element in the list
ewithin the structured - The field
kwithin mapshandj(found in objectsjandi, respectively, under the common ancestorf) - All
mfields from any direct child ofl(e.g.,l.q.m)
Lists and Maps
When modifying lists or maps, all elements of the container are included in the operation since the client can fully read and understand these structures, regardless of version differences.
- Lists:
- Elements within the range
0...min(incoming.length, previous.length)-1are updated individually, with each treated as part of the field mask. - Elements beyond this range are either removed or added.
- Elements within the range
- Maps:
- Elements present in the incoming message are updated.
- Missing elements are removed, while new elements are added.
Special Cases:
- To clear a list or map, add its name as a key in the reset mask.
- To modify or fully replace a list/map, include it in the request without specifying it in the reset mask.
- To remove specific values from objects in a list or map, include the object's index in the reset mask.
Nested Structures
If a reset mask targets a structure (e.g., a), it does not clear the contents of its fields unless those fields are explicitly included in the mask.
However, if a field inside a structure is listed in the mask (e.g., a.b), the structure itself is reset if it is not present in the request payload.
Example:
- Resource:
{a: {b:1, c:2}} - Request:
{}+X-ResetMask: a.b - Result:
{a: null}(the entireastructure is reset)
To preserve other fields in the structure, ensure the structure is explicitly included in the request:
- Resource:
{a: {b:1, c:2}} - Request:
{a: {}}+X-ResetMask: a.b - Result:
{a: {c: 2}}
Operations
Most methods that modify data return a nebius.common.v1.Operation (operation.proto).
This message can represent both synchronous and asynchronous operations.
A synchronous operation is returned in a completed state, while an asynchronous one will update over time.
Status
An operation is considered complete when its status field is set.
If the status field is null, the operation is still in progress.
Completed operations also include a finished_at timestamp.
If an error occurs, details will be provided in the status.details field, as explained in the Error Details section.
Parallel Operations
Nebius AI Cloud does not support concurrent operations on the same resource. Attempting multiple operations simultaneously on the same resource may result in an error, or the initial operation could be aborted in favor of the newer request.
Retention Policy
Ongoing operations are never deleted. Completed operations, however, may be deleted according to the retention policy of the service.
Error Details
Errors can occur either when an RPC method is called or when an asynchronous Operation completes unsuccessfully.
In both cases, the google.rpc.Status message is used to describe the error.
It may include additional details in the form of nebius.common.v1.ServiceError messages, providing more context about the issue.
A variety of ServiceError types can be returned (e.g. BadRequest, QuotaFailure, TooManyRequests).
Refer to the complete list of possible error types in error.proto.
The ServiceError may also include a retry_type field, offering guidance on how to handle retries for the failed operation.
Idempotency
To ensure the idempotency of modifying operations in the Nebius AI Cloud API, you can use the X-Idempotency-Key header.
Idempotency guarantees that the same operation will not be executed multiple times, even if the client retries the request due to network failures or timeouts.
For read-only methods such as Get and List, the X-Idempotency-Key header is ignored.
The value of X-Idempotency-Key must be a sufficiently long string of random alphanumeric characters ([A-Za-z0-9-]), preferably a random-based UUID (e.g., 7f95c54a-ee0e-4f8c-a64c-c9e0aac605a0).
Example:
A real-world program would:
- Poll
nebius.common.v1.OperationService/Getuntil the operationstatusis set. - Handle retries & errors based on
ServiceError.retry_type.
Tip: The nebius crate exposes all services, so you can script the whole workflow –
creating disks, subnets, firewalls, and so on – entirely in Rust.
License
This project is licensed under the MIT License. See the LICENSE file for details.
Copyright (c) 2024 Nebius B.V.