In this section we’ll provide a few handy examples of common driver operations.
The intention is to grow this into a good source to copy paste common code from.
All of the examples will be available in the
DevGuide Examples repository
under the common_driver_recipes folder.
Decrypting a password attribute
The password for logging into the device/app will be passed as an encrypted value to the driver
as a part of the context object. In order to be able to use it to log in you’ll most likely
need to decrypt it. To do that, you can use the CloudShellAPI function DecryptPassword.
The resource live status can be used to indicate the current state of the resource on the diagram.
CloudShell comes with a pre-built collection of statuses you can use, and this collection of icons can also
be extended if needed.
The following code will update the resource live status from offline to online:
The full list of statuses can be found in the ServerUniversalSettings.xml file which you can find on the Quali Server
machine under the %programdata%\QualiSystems\Settings\Global directory:
Sending a message to the sandbox console
Another way to update the sandbox regarding an operation progress is to use the WriteMessageToReservationOutput
function to display a message in the Sandbox console pane.
We can easily modify the previous code to do that instead: