Uses of Class
ppe.ParamMissingException

Packages that use ParamMissingException
ppe.ec2 This package implements all operations that send commands or queries to AWS. 
ppe.ompi Classes for configuring Open MPI on a network of EC2 instances. 
 

Uses of ParamMissingException in ppe.ec2
 

Methods in ppe.ec2 that throw ParamMissingException
 com.amazonaws.auth.AWSCredentials ParamsEc2.buildAWSCredentials()
           
 void ParamsEc2.checkForConnectToAWSParams()
           
 void ParamsEc2.checkForCreateNetworkParams()
          Checks for required params, not for params that may be supplied though a gui.
 void ParamsEc2.checkForNetworkInfoParams()
           
 void ParamsEc2.checkForTerminateInstancesParams()
           
 java.lang.String Ec2Wrangler.createNetwork(NetworkSpec spec)
          Blocks until all requested ec2 instances are up and running.
 java.lang.String SecurityGroupFactory.createOneTimeSecurityGroup()
          Creates an ec2 security group that works for mpi.
 java.lang.String SecurityGroupFactory.createStandardSecurityGroup(java.lang.String groupName, java.lang.String description)
          Creates a group with ssh (tcp port 22) open to the world and everything else open to group members only.
 int SecurityGroupFactory.deleteOneTimeSecurityGroups()
          This method deletes all security groups owned by the user that have names starting with "<User name>_mpi_ec2_", where <User name> is the value of the system property user.name.
 java.lang.String SecurityGroupFactory.getOneTimeSecurityGroupName()
          Gets the name of a security group that has prefix "<User name>_mpi_ec2_", (where <User name> is the value of the system property user.name), if one exists.
 java.lang.String Ec2Wrangler.launchInstances(com.amazonaws.services.ec2.model.InstanceType instanceType, java.lang.String imageID, java.lang.String availabilityZone, int minInstances, int maxInstances, java.lang.String keyName, java.lang.String securityGroupName, java.lang.String networkName)
          This version of launchInstances() gets all parameters from method arguments.
 java.lang.String Ec2Wrangler.launchInstances(NetworkSpec spec)
          If NetworkSpec.securityGroupName is null, a one time default security group is created.
 java.lang.String Ec2Wrangler.launchSpotInstances(com.amazonaws.services.ec2.model.InstanceType instanceType, java.lang.String imageID, java.lang.String availabilityZone, int nInstances, java.lang.String keyName, java.lang.String securityGroupName, java.lang.String networkName, double spotPrice)
          Note that spot price instances are not available for cluster instances.
 java.lang.String Ec2Wrangler.launchSpotInstances(NetworkSpec spec)
          If NetworkSpec.securityGroupName is null, a one time default security group is created.
 

Constructors in ppe.ec2 that throw ParamMissingException
Ec2Wrangler(ParamsEc2 params)
           
 

Uses of ParamMissingException in ppe.ompi
 

Methods in ppe.ompi that throw ParamMissingException
 void ParamsOmpi.checkForAccessInstanceParams()
           
 

Constructors in ppe.ompi that throw ParamMissingException
ParamsOmpi(ParamHt ht, ParamsEc2 paramsEc2)