Skip to main content

REST lib for VMWARE vRO

Project description

Project description

A REST API library to execute 'Worflows' on VMware vRealize Orchestrator (vRO).

Features

What you can do with vmwvro:

  • Support for a list of vRO endpoints
  • Concurrent executions
  • Support of input and output paramenters
  • Supported socks proxy
  • Download of Workflow log

Basic usage

#!/usr/bin/env python
from vmwvro2.workflow import Workflow, MultiRun
from vmwvro2.sessions import SessionList


sl = SessionList()
sl.load()



##########################################################
wf = Workflow()
wf.id = "338beefa-9fff-469b-89d4-914031ffbfb6"
wf.name = "IP update"

wf.param(name="ipAddress",value="10.10.10.10")
wf.param(name="newStatus",value="In Service")


mt = MultiRun()
mt.add(wf,sl,"dev")
mt.run()
mt.wait()
mt.getLogs()

for alias in mt.list:
    print("****************")
    print(alias)
    print(mt.list[alias].name)
    mt.list[alias].print_parameters())
    print(mt.list[alias].log)

Licence

MIT

NOTE: Based and some parts copied from "vmwvro" (c) Lior P. Abitbol

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

vmwvro2-0.1.7.tar.gz (12.5 kB view hashes)

Uploaded Source

Built Distribution

vmwvro2-0.1.7-py3-none-any.whl (22.9 kB view hashes)

Uploaded Python 3

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