Yandex Cloud
  • Сервисы
  • Решения
  • Почему Yandex Cloud
  • Сообщество
  • Тарифы
  • Документация
  • Связаться с нами
Подключиться
Language / Region
© 2022 ООО «Яндекс.Облако»
Yandex DataSphere
  • Начало работы
  • Пошаговые инструкции
    • Все инструкции
    • Управление проектом
      • Создание проекта
      • Выбор версии Python
      • Установка зависимостей
      • Управление вычислительными ресурсами
      • Настроить ограничения вычислений для проекта
      • Настроить ограничения вычислений для каталога
      • Изменение размера хранилища проекта
      • Изменение имени или описания
      • Удаление ноутбука или проекта
    • Поделиться ноутбуком
      • Публикация ноутбука
      • Экспорт проекта
    • Работа с ноутбуком
      • Запуск примеров кода в ноутбуке
      • Версионирование. Работа с контрольными точками
      • Очистка состояния интерпретатора
      • Работа с Git
    • Управление Docker‑образами
      • Docker-образ для проекта
      • Docker-образ в ячейке
    • Подключение к источникам данных
      • Подключение к базе данных ClickHouse
      • Подключение к базе данных PostgreSQL
      • Подключение к хранилищу S3
    • Настройка интеграции с Data Proc
    • Работа с приватными данными
      • Создание секрета
      • Вызов секрета
      • Изменение секрета
      • Копирование секрета
      • Удаление секрета
    • Запуск распределенного обучения
    • Развертывание эксплуатации моделей
      • Создание ноды из ячейки с кодом на Python
      • Настройка окружения ноды
      • Запросы в ноды
  • Концепции
    • Обзор
    • Проект
    • Список предустановленного ПО
    • Доступные команды
    • Служебные команды #pragma
    • Конфигурации вычислительных ресурсов
    • Интеграция с системами контроля версий и данных
    • Сохранение состояния
    • Интеграция с Data Proc
    • Фоновые операции
    • Датасеты
    • Хранение приватных данных
    • Развертывание эксплуатации моделей
    • Использование TensorBoard в DataSphere
    • Распределенное обучение
    • Управление расходами
    • Квоты и лимиты
  • Ранний доступ
    • Обзор
    • Специальные фоновые операции
  • Практические руководства
    • Все руководства
    • Знакомство с DataSphere
    • Голосовая биометрия
    • Оценка качества STT моделей
    • Разметка аудио
    • Классификация изображений на видеокадрах
  • Справочник API
    • Аутентификация в API
    • gRPC (англ.)
      • Overview
      • AppTokenService
      • FolderBudgetService
      • NodeService
      • ProjectDataService
      • ProjectService
      • OperationService
    • REST (англ.)
      • Overview
      • AppToken
        • Overview
        • validate
      • FolderBudget
        • Overview
        • get
        • set
      • Node
        • Overview
        • execute
      • Project
        • Overview
        • create
        • delete
        • execute
        • get
        • getCellOutputs
        • getNotebookMetadata
        • getStateVariables
        • getUnitBalance
        • list
        • open
        • setUnitBalance
        • update
  • Управление доступом
  • Правила тарификации
  • Публичные материалы
  • Релизы
  • Вопросы и ответы
  1. Справочник API
  2. REST (англ.)
  3. Project
  4. Overview

Project

Статья создана
Yandex.Cloud
  • JSON Representation
  • Methods

A set of methods for managing Project resources.

JSON Representation

{
  "id": "string",
  "folderId": "string",
  "createdAt": "string",
  "name": "string",
  "description": "string",
  "settings": {
    "serviceAccountId": "string",
    "subnetId": "string",
    "dataProcClusterId": "string",
    "commitMode": "string",
    "securityGroupIds": [
      "string"
    ]
  },
  "limits": {
    "maxUnitsPerHour": "integer",
    "maxUnitsPerExecution": "integer"
  }
}
Field Description
id string

ID of the project.

folderId string

ID of the folder that the project belongs to.

createdAt string (date-time)

String in RFC3339 text format.

name string

Name of the project. 1-63 characters long.

description string

Description of the project. 0-256 characters long.

settings object

Settings of the project.

settings.
serviceAccountId
string

ID of the service account, on whose behalf all operations with clusters will be performed.

settings.
subnetId
string

ID of the subnet where the DataProc cluster resides. Currently only subnets created in the availability zone ru-central1-a are supported.

settings.
dataProcClusterId
string

ID of the DataProc cluster.

settings.
commitMode
string

Commit mode that is assigned to the project.

  • STANDARD: Commit happens after the execution of a cell or group of cells or after completion with an error.
  • AUTO: Commit happens periodically. Also, automatic saving of state occurs when switching to another type of computing resource.
settings.
securityGroupIds[]
string

Network interfaces security groups.

limits object

Limits of the project.

limits.
maxUnitsPerHour
integer (int64)

The number of units that can be spent per hour.

limits.
maxUnitsPerExecution
integer (int64)

The number of units that can be spent on the one execution.

Methods

Method Description
create Creates a project in the specified folder.
delete Deletes the specified project.
execute Executes code in the specified cell or notebook.
get Returns the specified project.
getCellOutputs Returns outputs of the specified cell.
getNotebookMetadata Returns metadata of the specified notebook.
getStateVariables Returns state variables of the specified notebook.
getUnitBalance Returns the unit balance of the specified project.
list Lists projects for the specified folder.
open Opens the specified project.
setUnitBalance Sets the unit balance of the specified project.
update Updates the specified project.

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

Language / Region
© 2022 ООО «Яндекс.Облако»
В этой статье:
  • JSON Representation
  • Methods