'{username}', 'password' => '{password}', )); // 2. Obtain an Orchestration service object from the client. $orchestrationService = $client->orchestrationService(null, '{region}'); // 3. Create a stack. /** @var $stack OpenCloud\Orchestration\Resource\Stack **/ $stack = $orchestrationService->createStack(array( 'name' => '{name}', 'templateUrl' => '{templateUrl}', 'parameters' => array( 'server_hostname' => '{serverHost}', 'image' => '{image}' ), 'timeoutMins' => 5 ));