congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
com.woorea.openstack.nova.api
Code IndexAdd Tabnine to your IDE (free)

How to use com.woorea.openstack.nova.api

Best Java code snippets using com.woorea.openstack.nova.api (Showing top 20 results out of 315)

origin: com.att.woorea/nova-client

/**
 * List the virtual interfaces for a specified server
 * 
 * @param serverId
 *            The server to list the virtual interfaces
 * @return The request object to list virtual interfaces
 */
public ListVirtualInterfaces listVirtualInterfaces(String serverId) {
  return new ListVirtualInterfaces(serverId);
}
origin: com.att.woorea/nova-client

/**
 * Evacuate the server
 * 
 * @param serverId
 *            The server to be evacuated
 * @return The evacuate action to be performed
 * @see #evacuate(String, String, String, Boolean)
 */
public EvacuateAction evacuate(String serverId) {
  return evacuate(serverId, null, null, null);
}
origin: com.att.woorea/nova-client

/**
 * Detaches a port (interface) from a server
 * 
 * @param serverId
 *            The server to which the port is attached
 * @param portId
 *            The port to be detached from the server
 * @return The object that performs the detach
 */
public DetachInterfaceAttachment detachInterfaceAttachment(String serverId, String portId) {
  return new DetachInterfaceAttachment(serverId, portId);
}
origin: com.att.woorea/nova-client

public List list() {
  return new List();
}
origin: com.att.woorea/nova-client

public Disable disable(String host, String binary) {
  return new Disable(host, binary);
}
origin: com.att.woorea/nova-client

public Boot boot(ServerForCreate server) {
  return new Boot(server);
}
origin: com.att.woorea/nova-client

public RevertResizeAction revertResize(String serverId) {
  return new RevertResizeAction(serverId);
}
origin: com.att.woorea/nova-client

public ShowVolumeAttachment showVolumeAttachment(String serverId, String volumeAttachmentId) {
  return new ShowVolumeAttachment(serverId, volumeAttachmentId);
}
origin: com.att.woorea/nova-client

public ShowMetadata showMetadata(String id) {
  return new ShowMetadata(id);
}
origin: com.att.woorea/nova-client

public Delete delete(String id) {
  return new Delete(id);
}
origin: woorea/openstack-java-sdk

public Create create(Flavor flavor) {
  return new Create(flavor);
}

origin: woorea/openstack-java-sdk

public ShowMetadata showMetadata(String id) {
  return new ShowMetadata(id);
}
origin: woorea/openstack-java-sdk

public Delete delete(String id) {
  return new Delete(id);
}
origin: com.att.woorea/nova-client

public CreateInterfaceAttachment createInterfaceAttachment(String serverId,
  InterfaceAttachmentForCreate interfaceAttachmentForCreate) {
  return new CreateInterfaceAttachment(serverId, interfaceAttachmentForCreate);
}
origin: com.att.woorea/nova-client

  public Show show(String id) {
    return new Show(id);
  }
}
origin: com.att.woorea/nova-client

public CreateBackupAction createBackup(String serverId, CreateBackup action) {
  return new CreateBackupAction(serverId, action);
}
origin: com.att.woorea/nova-client

public ResumeAction resume(String serverId) {
  return new ResumeAction(serverId);
}
origin: com.att.woorea/nova-client

public SuspendAction suspend(String serverId) {
  return new SuspendAction(serverId);
}
origin: woorea/openstack-java-sdk

public ResumeServer resume(String serverId) {
  return new ResumeServer(serverId);
}
origin: com.att.woorea/nova-client

/**
 * Evacuates the server to a new host. The caller can supply the host name or id.
 * 
 * @param serverId
 *            The server to be evacuated
 * @param host
 *            The host name or ID of the target host (where the server is to be moved to).
 * @return The action to be performed
 * @see #evacuate(String, String, String, Boolean)
 */
public EvacuateAction evacuate(String serverId, String host) {
  return evacuate(serverId, host, null, null);
}
com.woorea.openstack.nova.api

Most used classes

  • ServersResource
    This class is used to encapsulate all of the requests that can be made to the compute service to man
  • FlavorsResource$List
  • FlavorsResource
  • ServersResource$Boot
  • ServersResource$List
  • ImagesResource,
  • ServersResource$AttachVolume,
  • ServersResource$Delete,
  • ServersResource$Show,
  • FloatingIpsExtension$List,
  • FloatingIpsExtension,
  • KeyPairsExtension$List,
  • KeyPairsExtension,
  • VolumesExtension$Create,
  • VolumesExtension$List,
  • VolumesExtension$Show,
  • VolumesExtension,
  • ExtensionsResource$List,
  • ExtensionsResource
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now