Yandex Cloud
Поиск
Связаться с намиПодключиться
  • Документация
  • Блог
  • Все сервисы
  • Статус работы сервисов
    • Доступны в регионе
    • Инфраструктура и сеть
    • Платформа данных
    • Контейнеры
    • Инструменты разработчика
    • Бессерверные вычисления
    • Безопасность
    • Мониторинг и управление ресурсами
    • Машинное обучение
    • Бизнес-инструменты
  • Все решения
    • По отраслям
    • По типу задач
    • Экономика платформы
    • Безопасность
    • Техническая поддержка
    • Каталог партнёров
    • Обучение и сертификация
    • Облако для стартапов
    • Облако для крупного бизнеса
    • Центр технологий для общества
    • Партнёрская программа
    • Поддержка IT-бизнеса
    • Облако для фрилансеров
    • Обучение и сертификация
    • Блог
    • Документация
    • Мероприятия и вебинары
    • Контакты, чаты и сообщества
    • Идеи
    • Истории успеха
    • Тарифы Yandex Cloud
    • Промоакции и free tier
    • Правила тарификации
  • Документация
  • Блог
Проект Яндекса
© 2025 ТОО «Облачные Сервисы Казахстан»
Yandex Foundation Models
    • Обзор
    • Аутентификация в API
        • Overview
          • Overview
          • Create
          • Get
          • GetUrl
          • Update
          • Delete
          • List
  • Yandex Cloud ML SDK
  • Совместимость с OpenAI
  • Управление доступом
  • Правила тарификации
  • Публичные материалы
  • История изменений

В этой статье:

  • gRPC request
  • CreateFileRequest
  • ExpirationConfig
  • File
  • ExpirationConfig
  1. Справочники API
  2. Files API (англ.)
  3. gRPC
  4. File
  5. Create

Files API, gRPC: FileService.Create

Статья создана
Yandex Cloud
Обновлена 17 декабря 2024 г.
  • gRPC request
  • CreateFileRequest
  • ExpirationConfig
  • File
  • ExpirationConfig

Create a new file.

gRPC requestgRPC request

rpc Create (CreateFileRequest) returns (File)

CreateFileRequestCreateFileRequest

{
  "folder_id": "string",
  "name": "string",
  "description": "string",
  "mime_type": "string",
  "content": "bytes",
  "labels": "map<string, string>",
  "expiration_config": {
    "expiration_policy": "ExpirationPolicy",
    "ttl_days": "int64"
  }
}

Request message for creating a new file.

Field

Description

folder_id

string

Required field.

name

string

Name of the file.

description

string

Description of the file.

mime_type

string

MIME type of the file, indicating the file's format (e.g., "application/pdf").
If not specified, will be deduced automatically based on the file content.

content

bytes

Required field. Binary content of the file.

labels

object (map<string, string>)

Set of key-value pairs to label the file.

expiration_config

ExpirationConfig

Expiration configuration for the file.

ExpirationConfigExpirationConfig

Field

Description

expiration_policy

enum ExpirationPolicy

  • EXPIRATION_POLICY_UNSPECIFIED
  • STATIC
  • SINCE_LAST_ACTIVE

ttl_days

int64

FileFile

{
  "id": "string",
  "folder_id": "string",
  "name": "string",
  "description": "string",
  "mime_type": "string",
  "created_by": "string",
  "created_at": "google.protobuf.Timestamp",
  "updated_by": "string",
  "updated_at": "google.protobuf.Timestamp",
  "expiration_config": {
    "expiration_policy": "ExpirationPolicy",
    "ttl_days": "int64"
  },
  "expires_at": "google.protobuf.Timestamp",
  "labels": "map<string, string>"
}

Field

Description

id

string

Unique identifier of the file.

folder_id

string

ID of the folder that the file belongs to.

name

string

Name of the file.

description

string

Description of the file.

mime_type

string

MIME type of the file, indicating the file's format (e.g., "application/pdf")

created_by

string

Identifier of the subject who created this file.

created_at

google.protobuf.Timestamp

Timestamp representing when the file was created.

updated_by

string

Identifier of the subject who last updated this file.

updated_at

google.protobuf.Timestamp

Timestamp representing the last time this file was updated.

expiration_config

ExpirationConfig

Configuration for the expiration of the file, defining when and how the file will expire.

expires_at

google.protobuf.Timestamp

Timestamp representing when the file will expire.

labels

object (map<string, string>)

Set of key-value pairs that can be used to organize and categorize the file.

ExpirationConfigExpirationConfig

Field

Description

expiration_policy

enum ExpirationPolicy

  • EXPIRATION_POLICY_UNSPECIFIED
  • STATIC
  • SINCE_LAST_ACTIVE

ttl_days

int64

Была ли статья полезна?

Предыдущая
Overview
Следующая
Get
Проект Яндекса
© 2025 ТОО «Облачные Сервисы Казахстан»