Klasse Virtualized

java.lang.Object
de.bytestore.hostinger.entity.hosting.Virtualized

@Entity(name="host_Virtualized") public class Virtualized extends Object
  • Konstruktordetails

    • Virtualized

      public Virtualized()
  • Methodendetails

    • getPublicKeys

      public String getPublicKeys()
    • setPublicKeys

      public void setPublicKeys(String publicKeys)
    • setSshKey

      public void setSshKey(io.jmix.core.FileRef publicKey)
    • getSshKey

      public io.jmix.core.FileRef getSshKey()
    • getName

      public String getName()
    • setName

      public void setName(String name)
    • getNetwork

      public List<NetworkConfig> getNetwork()
    • setNetwork

      public void setNetwork(List<NetworkConfig> network)
    • getPassword

      public String getPassword()
    • setPassword

      public void setPassword(String password)
    • getCpulimit

      public Integer getCpulimit()
    • setCpulimit

      public void setCpulimit(Integer cpulimit)
    • getNameserver

      public String getNameserver()
    • setNameserver

      public void setNameserver(String nameserver)
    • getSearchdomain

      public String getSearchdomain()
    • setSearchdomain

      public void setSearchdomain(String searchdomain)
    • getTimezone

      public String getTimezone()
    • setTimezone

      public void setTimezone(String timezone)
    • getBwlimit

      public Integer getBwlimit()
    • setBwlimit

      public void setBwlimit(Integer bwlimit)
    • getStorage

      public String getStorage()
    • setStorage

      public void setStorage(String storage)
    • getOwner

      public User getOwner()
    • setOwner

      public void setOwner(User owner)
    • getArch

      public String getArch()
    • setArch

      public void setArch(String arch)
    • getCustom

      public String getCustom()
    • setCustom

      public void setCustom(String custom)
    • getOs

      public String getOs()
    • setOs

      public void setOs(String os)
    • getType

      public VirtualizedType getType()
    • setType

      public void setType(VirtualizedType type)
    • getMachine

      public Machines getMachine()
    • setMachine

      public void setMachine(Machines machine)
    • getCreatedBy

      public User getCreatedBy()
    • setCreatedBy

      public void setCreatedBy(User createdBy)
    • setSwapUnit

      public void setSwapUnit(SwapUnit swapUnit)
    • getSwapUnit

      public SwapUnit getSwapUnit()
    • setMemoryUnit

      public void setMemoryUnit(MemoryUnit memoryUnit)
    • getMemoryUnit

      public MemoryUnit getMemoryUnit()
    • getLastModifiedDate

      public OffsetDateTime getLastModifiedDate()
    • setLastModifiedDate

      public void setLastModifiedDate(OffsetDateTime lastModifiedDate)
    • getLastModifiedBy

      public String getLastModifiedBy()
    • setLastModifiedBy

      public void setLastModifiedBy(String lastModifiedBy)
    • getCreatedDate

      public OffsetDateTime getCreatedDate()
    • setCreatedDate

      public void setCreatedDate(OffsetDateTime createdDate)
    • getId

      public UUID getId()
    • setId

      public void setId(UUID id)
    • getCores

      public Integer getCores()
    • setCores

      public void setCores(Integer cores)
    • getSwap

      public Integer getSwap()
    • setSwap

      public void setSwap(Integer swap)
    • getMemory

      public Integer getMemory()
    • setMemory

      public void setMemory(Integer memory)
    • getAutostart

      public Boolean getAutostart()
    • setAutostart

      public void setAutostart(Boolean autostart)
    • postConstruct

      @PostConstruct public void postConstruct()
    • vnc

      public VNCSession vnc()
      Connects to a VNC session using the specified configuration.
      Gibt zurück:
      The VNCSession object representing the connected session.
    • reset

      public void reset()
      Resets the virtualized object to its initial state. This method calls the 'reset' method of the VirtualizationHandler class, passing the current object as a parameter.
    • stop

      public void stop()
      Stops the virtualized object by calling the stop method of the VirtualizationHandler class.
    • status

      public ProcessStatus status()
      Retrieves the current status of the virtualized object.
      Gibt zurück:
      The ProcessStatus enum value representing the current status.
    • start

      public void start()
      Starts the virtualization process. This method invokes the start method of the VirtualizationHandler class.
    • resume

      public void resume()
      Resumes the virtualized object by calling the resume method of the VirtualizationHandler class. This method should be called to resume a paused virtualized object.
    • kill

      public void kill()
      Stops and terminates the current virtualized object by calling the kill method of the VirtualizationHandler class. This method should be called to forcefully stop and terminate a running virtualized object. After calling this method, the virtualized object can no longer be restarted or resumed.
    • pause

      public void pause()
      Pauses the virtualized object by calling the pause method of the VirtualizationHandler class. This method should be called to pause a running virtualized object.
    • stats

      public ProcessStats stats()
      Retrieves the statistics of the virtualized object.
      Gibt zurück:
      The ProcessStats object representing the statistics of the virtualized object.