Skip to main content

RUSTACK-ESU Cloud API Wrapper

Project description

PyPI Version Build Status Codecov Badge

rustack-esu

rustack-esu является Python библиотекой для работы с публичным облаком СБКлауд.

Установка

Минимальная версия Python для установки пакета: 3.5.

$ pip install rustack-esu

Примеры использования

Создание ВЦОД

from esu import Manager, Project, Vdc

token = '72321013a102d2d3da2eaa79f0a613d40cf642fb'

manager = Manager(token=token)
client = manager.get_all_clients()[0]
project = Project(name='Новый проект', client=client, token=token)
project.create()

hypervisor = next(h for h in project.get_available_hypervisors() \
    if h.type == 'kvm')

vdc = Vdc(name='Новый ВЦОД', hypervisor=hypervisor, project=project,
          token=token)
vdc.create()

print(f'ID нового ВЦОД: {vdc.id}')

Напечатает:

ID нового ВЦОД: 62a2df46-5412-4ca2-9d60-f6fcbe5f4b5f

Создание сервера

from esu import Manager, Project, Vdc

vdc = Vdc.get_object('62a2df46-5412-4ca2-9d60-f6fcbe5f4b5f', token=token)
vm = vdc.create_vm('Новый сервер', 'KVM Ubuntu 18', 'xj3$mNW11')

print(f'ID нового сервера: {vm.id}')
print(f'URL VNC консоли: {vm.get_vnc_url()}')  # login: ubuntu

Напечатает:

ID нового сервера: 6c53c690-bd65-4fa5-888a-c9f8054a8ddc
URL VNC консоли: https://...

Документация

Более подробную информация можно получить в документации.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

rustack-esu-0.1.13.tar.gz (22.5 kB view details)

Uploaded Source

Built Distribution

rustack_esu-0.1.13-py3-none-any.whl (42.5 kB view details)

Uploaded Python 3

File details

Details for the file rustack-esu-0.1.13.tar.gz.

File metadata

  • Download URL: rustack-esu-0.1.13.tar.gz
  • Upload date:
  • Size: 22.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.8.16

File hashes

Hashes for rustack-esu-0.1.13.tar.gz
Algorithm Hash digest
SHA256 caff9138683528751b19c187950690c9d3ee753d6dc623a3554d239bd4a7024b
MD5 975a75f8990cdb0e96859e73a2a2b372
BLAKE2b-256 c2c913004b302f4af2f1a2adee1c031a06e5e051e5c465364d1f77c095a070a5

See more details on using hashes here.

File details

Details for the file rustack_esu-0.1.13-py3-none-any.whl.

File metadata

  • Download URL: rustack_esu-0.1.13-py3-none-any.whl
  • Upload date:
  • Size: 42.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.8.16

File hashes

Hashes for rustack_esu-0.1.13-py3-none-any.whl
Algorithm Hash digest
SHA256 a2b234acbe619e569ebbd1d6f0850eeb82a666cb9a75c6b532fcaa06200b7eca
MD5 f49253b6e3319d716c5e243e90981f83
BLAKE2b-256 11fcd674530a07149f53e1666d79693378432f57c04dad84e05548cb03a93bd2

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page