Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. To add new application module use the script; registerApplicationModule.php
  2. Parameters appModuleName, appModuleVersion and appModuleDescription are passed as command line arguments to the script.
    1. Format;
      php registerApplicationModule.php<space><appModuleName><space><appModuleVersion><space><appModuleDescription>
  3. Successful execution of the script will display the created application module object along with the confirmation message

  4. Confirmation message contains the application module ID generated at module creation.
    Application Module <appModuleId><space>is<space>registered!
View Application Module 
  1. Gateway user can view a particular application module details using script; getAppModule.php
    1. Format;
      php getAppModule.php<space><appModuleID>
  2. Executing the script will display application module object with Application module ID, Application Module name, Description and version.
    Image Added

Tutorial X - Application Interfaces

...

  1. When an application module is registered in the system AIravat need to register the deployment of the application module in one or many computational resources. In order to do so user can execute the script;
    registerApplicationDeployment.php
    1. Format;
      php registerApplicationDeployment.php<space><appModuleId><space><computeHostId><space><executablePath>
  2. In order to do deploy user has to give application module ID, computational Host ID and also the executable path of the application deployment.
Search Application Deployments
  1. To view all application deployments of a particle application module use the script; getApplicationDeployedResources.php
  2. By providing the application module ID can view all available application deployments of the application.
    1. Format;
      php getApplicationDeployedResources.php<space><appModuleID>
  3. Output will look like;
    Image Added

Tutorial X - Airavata API tester

...