Orchestrator Workflow Action to Change the Access Control Parameters of a vCloud vApp

by Simon Sparks · 5 August 2013

The following script enables the changing of the access control parameters of a vCloud vApp.

var objVclControlAccessParams = new VclControlAccessParams();
	objVclControlAccessParams.isSharedToEveryone = true;
	objVclControlAccessParams.everyoneAccessLevel = "FullControl";

objVclVApp.updateControlAccess(objVclControlAccessParams);

objVclVApp.updateInternalState();

Discover more from Cloud Build Tools

Subscribe to get the latest posts sent to your email.

You may also like