update_database_size

Lists all of the database sizes that have been created.

Format

emcli update_database_size 
      -name="<Existing size name>" 
      -description="<Size description>"        
      [-attributes="cpu:<number of cores>;memory:<memory in GB>;processes:
         <max number of processes>;storage:<Total storage in GB allocated 
         to database>;"]

[ ]  indicates that the parameter is optional.

Options

  • name

    The name of the existing database size.

  • description

    Updates the description of the database size.

  • attributes

    Defines the database size. Attributes must be separated by a semicolon(;). You can specify values for the following attributes:

    cpu: Total number of cpu cores.

    memory: Total maximum in GB.

    processes: Total number of processes that can simultaneously connect to the database.

    storage: Total storage that is allocated to the database (in GB)

Example

The following command updates the description and attributes of the database size with the name Small.

emcli update_database_size 
      -name=Small 
      -description="Small size database" 
      -attributes="cpu:4;storage:50;memory:4;processes:remove"