A collection of vRealize Orchestrator Polyglot example scripts in Node.js, Python and PowerShell to bootstrap your multi language vRO development
This repository provides simple template-like scripts to get you up to speed with the multi language development introduced in vRO 8.1. The functions are intended to be as simple and informative as possible to let you know the basics and extend further for your specific use cases.
You if are used to vRO you will notice that the new format and structure is different that the classical vRO JavaScript, on the other hand if you are familiar with AWS Lambda, Azure Functions and vRA ABX you will find it very similar. vRO multi-language scripts closely follows the format of those function execution engines.
Simple Action - Get to know how your Node.js script can accept inputs and return output of different types
Sync-Async - See how you can write your function and return an output using different flavours of synchronous and asynchronous handling (applicable only for Node.js)
List EC2 instances using AWS SDK - Import 3rd party NPM modules, specifically the AWS SDK, and integrate with AWS services
Simple Action - Get to know how your Python script can accept inputs and return output of different types
List EC2 instances using AWS SDK - Import 3rd party PIP modules, specifically the AWS SDK, and integrate with AWS services
Simple Action - Get to know how your PowerShell script can accept inputs and return output of different types
Integrate 3rd party modules - Import 3rd party PSGallery modules in your script
List vSphere machines using PowerCLI - Now we're talking
If you find any issue with the current scripts you can create a issue
If you have any other Polyglot scripts that you want to share with the vRO community you can create a pull request