Skip to main content

virsh-sandbox API

Project description

Virsh Sandbox

API for managing virtual machine sandboxes using libvirt

This Python package is automatically generated by the OpenAPI Generator project:

  • API version: 0.0.1-beta
  • Package version: 0.0.1-beta
  • Generator version: 7.19.0-SNAPSHOT
  • Build package: org.openapitools.codegen.languages.PythonClientCodegen

Requirements.

Python 3.9+

Installation & Usage

pip install

If the python package is hosted on a repository, you can install directly using:

pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git

(you may need to run pip with root permission: sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git)

Then import the package:

import virsh_sandbox

Setuptools

Install via Setuptools.

python setup.py install --user

(or sudo python setup.py install to install the package for all users)

Then import the package:

import virsh_sandbox

Tests

Execute pytest to run the tests.

Getting Started

Please follow the installation procedure and then run the following:

import virsh_sandbox
from virsh_sandbox.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to http://localhost:8080
# See configuration.py for a list of all supported configuration parameters.
configuration = virsh_sandbox.Configuration(
    host = "http://localhost:8080"
)



# Enter a context with an instance of the API client
with virsh_sandbox.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = virsh_sandbox.AnsibleApi(api_client)
    request = virsh_sandbox.InternalAnsibleJobRequest() # InternalAnsibleJobRequest | Job creation parameters

    try:
        # Create Ansible job
        api_response = api_instance.create_ansible_job(request)
        print("The response of AnsibleApi->create_ansible_job:\n")
        pprint(api_response)
    except ApiException as e:
        print("Exception when calling AnsibleApi->create_ansible_job: %s\n" % e)

Documentation for API Endpoints

All URIs are relative to http://localhost:8080

Class Method HTTP request Description
AnsibleApi create_ansible_job POST /virsh-sandbox/v1/ansible/jobs Create Ansible job
AnsibleApi get_ansible_job GET /virsh-sandbox/v1/ansible/jobs/{job_id} Get Ansible job
AnsibleApi stream_ansible_job_output GET /virsh-sandbox/v1/ansible/jobs/{job_id}/stream Stream Ansible job output
AuditApi get_audit_stats GET /tmux-client/v1/audit/stats Get audit stats
AuditApi query_audit_log POST /tmux-client/v1/audit/query Query audit log
CommandApi get_allowed_commands GET /tmux-client/v1/command/allowed Get allowed commands
CommandApi run_command POST /tmux-client/v1/command/run Run command
FileApi check_file_exists POST /tmux-client/v1/file/exists Check if file exists
FileApi copy_file POST /tmux-client/v1/file/copy Copy file
FileApi delete_file POST /tmux-client/v1/file/delete Delete file
FileApi edit_file POST /tmux-client/v1/file/edit Edit file
FileApi get_file_hash POST /tmux-client/v1/file/hash Get file hash
FileApi list_directory POST /tmux-client/v1/file/list List directory contents
FileApi read_file POST /tmux-client/v1/file/read Read file
FileApi write_file POST /tmux-client/v1/file/write Write file
HealthApi get_health GET /virsh-sandbox/v1/health Health check
HealthApi get_health1 GET /tmux-client/v1/health Get health status
HumanApi ask_human POST /tmux-client/v1/human/ask Request human approval
HumanApi ask_human_async POST /tmux-client/v1/human/ask-async Request human approval asynchronously
HumanApi cancel_approval DELETE /tmux-client/v1/human/pending/{requestID} Cancel approval
HumanApi get_pending_approval GET /tmux-client/v1/human/pending/{requestID} Get pending approval
HumanApi list_pending_approvals GET /tmux-client/v1/human/pending List pending approvals
HumanApi respond_to_approval POST /tmux-client/v1/human/respond Respond to approval
PlanApi abort_plan POST /tmux-client/v1/plan/{planID}/abort Abort plan
PlanApi advance_plan_step POST /tmux-client/v1/plan/{planID}/advance Advance plan step
PlanApi create_plan POST /tmux-client/v1/plan/create Create plan
PlanApi delete_plan DELETE /tmux-client/v1/plan/{planID} Delete plan
PlanApi get_plan GET /tmux-client/v1/plan/{planID} Get plan
PlanApi list_plans GET /tmux-client/v1/plan/ List plans
PlanApi update_plan POST /tmux-client/v1/plan/update Update plan
SandboxApi create_sandbox POST /virsh-sandbox/v1/sandbox/create Create a new sandbox
SandboxApi create_snapshot POST /virsh-sandbox/v1/sandbox/{id}/snapshot Create snapshot
SandboxApi destroy_sandbox DELETE /virsh-sandbox/v1/sandbox/{id} Destroy sandbox
SandboxApi diff_snapshots POST /virsh-sandbox/v1/sandbox/{id}/diff Diff snapshots
SandboxApi generate_configuration POST /virsh-sandbox/v1/sandbox/{id}/generate/{tool} Generate configuration
SandboxApi inject_ssh_key POST /virsh-sandbox/v1/sandbox/{id}/sshkey Inject SSH key into sandbox
SandboxApi publish_changes POST /virsh-sandbox/v1/sandbox/{id}/publish Publish changes
SandboxApi run_sandbox_command POST /virsh-sandbox/v1/sandbox/{id}/run Run command in sandbox
SandboxApi start_sandbox POST /virsh-sandbox/v1/sandbox/{id}/start Start sandbox
TmuxApi create_tmux_pane POST /tmux-client/v1/tmux/panes/create Create tmux pane
TmuxApi create_tmux_session POST /tmux-client/v1/tmux/sessions/create Create tmux session
TmuxApi kill_tmux_pane DELETE /tmux-client/v1/tmux/panes/{paneID} Kill tmux pane
TmuxApi kill_tmux_session DELETE /tmux-client/v1/tmux/sessions/{sessionName} Kill tmux session
TmuxApi list_tmux_panes GET /tmux-client/v1/tmux/panes List tmux panes
TmuxApi list_tmux_sessions GET /tmux-client/v1/tmux/sessions List tmux sessions
TmuxApi list_tmux_windows GET /tmux-client/v1/tmux/windows List tmux windows
TmuxApi read_tmux_pane POST /tmux-client/v1/tmux/panes/read Read tmux pane
TmuxApi release_tmux_session POST /tmux-client/v1/tmux/sessions/{sessionId}/release Release tmux session
TmuxApi send_keys_to_pane POST /tmux-client/v1/tmux/panes/send-keys Send keys to tmux pane
TmuxApi switch_tmux_pane POST /tmux-client/v1/tmux/panes/switch Switch tmux pane
VMsApi list_virtual_machines GET /virsh-sandbox/v1/vms List all VMs

Documentation For Models

Documentation For Authorization

Endpoints do not require authorization.

Author

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

virsh_sandbox-0.0.1b0.tar.gz (78.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

virsh_sandbox-0.0.1b0-py3-none-any.whl (286.9 kB view details)

Uploaded Python 3

File details

Details for the file virsh_sandbox-0.0.1b0.tar.gz.

File metadata

  • Download URL: virsh_sandbox-0.0.1b0.tar.gz
  • Upload date:
  • Size: 78.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.11

File hashes

Hashes for virsh_sandbox-0.0.1b0.tar.gz
Algorithm Hash digest
SHA256 ae91f4e26c3c012b6517ec308e23a7e239a2eb4266194bc74e121f1512fc7fb1
MD5 a2f556ebbe8b26362272d24185ac648d
BLAKE2b-256 7c8b475da32e128e8b9d1a12567dbb2263ddec6cea5c91005dd5a89bb66ce848

See more details on using hashes here.

File details

Details for the file virsh_sandbox-0.0.1b0-py3-none-any.whl.

File metadata

  • Download URL: virsh_sandbox-0.0.1b0-py3-none-any.whl
  • Upload date:
  • Size: 286.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.11

File hashes

Hashes for virsh_sandbox-0.0.1b0-py3-none-any.whl
Algorithm Hash digest
SHA256 1bdf19e9a83c8d1d98cce1481c1bcca7d4648330d92d2a5954d04ced9d7eca0e
MD5 f8163433419dfc15b8b19a4c0850ae23
BLAKE2b-256 fb3682aed62791d98f6b3bc50d48eee261ada9604286d8efb85df2bcfcc905e0

See more details on using hashes here.

Supported by

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