Skip to content

DakHarry/vSphere-operation-API

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

vSphere operation API

A simple POC to manage vSphere resources by FastAPI

This project demos how to upload a script file into the specific VM created by vShpere. Then execute the program and get/send the result to the computer.

Getting Started

To get started, you will need Python, pip, uvicorn and pyvmomi

Installation

You can install requirements with pip

$ pip install -r requirements.txt

Run server

uvicorn app.main:app --reload

Endpoint

POST /vm/upload-file upload file to the specific VM.

body parameters
{
    "host": {
        "host": "vCenter Host",  
        "username": "[email protected]",
        "userpassword": "vCenter password"
    },
    "params": {
        "vm_name": "VM name",
        "vm_user": "VM computer username",
        "vm_pwd": "VM computer password",
        "path_inside_vm": "C:\\Users\\Administrator\\Desktop\\hello.bat", // path you want to store inside the VM
        "path_from_local": "/Users/harry_jhan/Desktop/sample/hello.bat" // file path from your computer
    }
}

POST /vm/run-program Run a script inside the VM, then download the result as out.txt on your machine.

body parameters

{
    "host": {
        "host": "vCenter Host",  
        "username": "[email protected]",
        "userpassword": "vCenter password"
    },
    "params": {
        "vm_name": "VM name",
        "vm_user": "VM computer username",
        "vm_pwd": "VM computer password",
        "path_to_program": "C:\\Users\\Administrator\\Desktop\\hello.bat" // script you want to run
    }
}

Folder structure

/src
  /classes - data structure
  /helper - shared function
    filter_helper.py - filter the objects return from vSphere
  /models - main logic of the api
  /router

About

A simple POC to manage vSphere resources by FastAPI

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages