Record Class DatabaseSpec.DatabaseRequirement

java.lang.Object
java.lang.Record
com.cloudforge.core.interfaces.DatabaseSpec.DatabaseRequirement
Record Components:
type - the requirement type (REQUIRED, OPTIONAL, or NONE)
engine - the database engine (e.g., "postgres", "mysql")
version - the database engine version
instanceClass - the RDS instance class (e.g., "db.t3.micro")
allocatedStorageGB - the allocated storage in GB
databaseName - the name of the database to create
publiclyAccessible - whether the database should be publicly accessible
Enclosing interface:
DatabaseSpec

public static record DatabaseSpec.DatabaseRequirement(DatabaseSpec.DatabaseRequirement.RequirementType type, String engine, String version, String instanceClass, int allocatedStorageGB, String databaseName, boolean publiclyAccessible) extends Record
Database requirement specification.
  • Constructor Details

  • Method Details

    • required

      public static DatabaseSpec.DatabaseRequirement required(String engine, String version)
    • optional

      public static DatabaseSpec.DatabaseRequirement optional(String engine, String version)
    • none

      public static DatabaseSpec.DatabaseRequirement none()
    • withInstanceClass

      public DatabaseSpec.DatabaseRequirement withInstanceClass(String instanceClass)
    • withStorage

      public DatabaseSpec.DatabaseRequirement withStorage(int allocatedStorageGB)
    • withDatabaseName

      public DatabaseSpec.DatabaseRequirement withDatabaseName(String databaseName)
    • toString

      public final String toString()
      Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • hashCode

      public final int hashCode()
      Returns a hash code value for this object. The value is derived from the hash code of each of the record components.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. Reference components are compared with Objects::equals(Object,Object); primitive components are compared with '=='.
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • type

      Returns the value of the type record component.
      Returns:
      the value of the type record component
    • engine

      public String engine()
      Returns the value of the engine record component.
      Returns:
      the value of the engine record component
    • version

      public String version()
      Returns the value of the version record component.
      Returns:
      the value of the version record component
    • instanceClass

      public String instanceClass()
      Returns the value of the instanceClass record component.
      Returns:
      the value of the instanceClass record component
    • allocatedStorageGB

      public int allocatedStorageGB()
      Returns the value of the allocatedStorageGB record component.
      Returns:
      the value of the allocatedStorageGB record component
    • databaseName

      public String databaseName()
      Returns the value of the databaseName record component.
      Returns:
      the value of the databaseName record component
    • publiclyAccessible

      public boolean publiclyAccessible()
      Returns the value of the publiclyAccessible record component.
      Returns:
      the value of the publiclyAccessible record component