Module Values.DbSystemShapeSummarySource

Information about a hardware system model (shape) that's available for an Exadata infrastructure. The shape determines resources, such as CPU cores, memory, and storage, to allocate to the Exadata infrastructure.

Sourcetype nonrec t = {
  1. availableCoreCount : Integer.t option;
    (*

    The maximum number of CPU cores that can be enabled for the shape.

    *)
  2. availableCoreCountPerNode : Integer.t option;
    (*

    The maximum number of CPU cores per DB node that can be enabled for the shape.

    *)
  3. availableDataStorageInTBs : Integer.t option;
    (*

    The maximum amount of data storage, in terabytes (TB), that can be enabled for the shape.

    *)
  4. availableDataStoragePerServerInTBs : Integer.t option;
    (*

    The maximum amount of data storage, in terabytes (TB), that's available per storage server for the shape.

    *)
  5. availableDbNodePerNodeInGBs : Integer.t option;
    (*

    The maximum amount of DB node storage, in gigabytes (GB), that's available per DB node for the shape.

    *)
  6. availableDbNodeStorageInGBs : Integer.t option;
    (*

    The maximum amount of DB node storage, in gigabytes (GB), that can be enabled for the shape.

    *)
  7. availableMemoryInGBs : Integer.t option;
    (*

    The maximum amount of memory, in gigabytes (GB), that can be enabled for the shape.

    *)
  8. availableMemoryPerNodeInGBs : Integer.t option;
    (*

    The maximum amount of memory, in gigabytes (GB), that's available per DB node for the shape.

    *)
  9. coreCountIncrement : Integer.t option;
    (*

    The discrete number by which the CPU core count for the shape can be increased or decreased.

    *)
  10. maxStorageCount : Integer.t option;
    (*

    The maximum number of Exadata storage servers that's available for the shape.

    *)
  11. maximumNodeCount : Integer.t option;
    (*

    The maximum number of compute servers that is available for the shape.

    *)
  12. minCoreCountPerNode : Integer.t option;
    (*

    The minimum number of CPU cores that can be enabled per node for the shape.

    *)
  13. minDataStorageInTBs : Integer.t option;
    (*

    The minimum amount of data storage, in terabytes (TB), that must be allocated for the shape.

    *)
  14. minDbNodeStoragePerNodeInGBs : Integer.t option;
    (*

    The minimum amount of DB node storage, in gigabytes (GB), that must be allocated per DB node for the shape.

    *)
  15. minMemoryPerNodeInGBs : Integer.t option;
    (*

    The minimum amount of memory, in gigabytes (GB), that must be allocated per DB node for the shape.

    *)
  16. minStorageCount : Integer.t option;
    (*

    The minimum number of Exadata storage servers that are available for the shape.

    *)
  17. minimumCoreCount : Integer.t option;
    (*

    The minimum number of CPU cores that can be enabled for the shape.

    *)
  18. minimumNodeCount : Integer.t option;
    (*

    The minimum number of compute servers that are available for the shape.

    *)
  19. runtimeMinimumCoreCount : Integer.t option;
    (*

    The runtime minimum number of CPU cores that can be enabled for the shape.

    *)
  20. shapeFamily : String_.t option;
    (*

    The family of the shape.

    *)
  21. shapeType : ShapeType.t option;
    (*

    The shape type. This property is determined by the CPU hardware.

    *)
  22. name : String_.t option;
    (*

    The name of the shape.

    *)
  23. computeModel : ComputeModel.t option;
    (*

    The OCI model compute model used when you create or clone an instance: ECPU or OCPU. An ECPU is an abstracted measure of compute resources. ECPUs are based on the number of cores elastically allocated from a pool of compute and storage servers. An OCPU is a legacy physical measure of compute resources. OCPUs are based on the physical core of a processor with hyper-threading enabled.

    *)
  24. areServerTypesSupported : Boolean.t option;
    (*

    Indicates whether the hardware system model supports configurable database and server storage types.

    *)
}
Sourceval make : ?availableCoreCount:??? -> ?availableCoreCountPerNode:??? -> ?availableDataStorageInTBs:??? -> ?availableDataStoragePerServerInTBs:??? -> ?availableDbNodePerNodeInGBs:??? -> ?availableDbNodeStorageInGBs:??? -> ?availableMemoryInGBs:??? -> ?availableMemoryPerNodeInGBs:??? -> ?coreCountIncrement:??? -> ?maxStorageCount:??? -> ?maximumNodeCount:??? -> ?minCoreCountPerNode:??? -> ?minDataStorageInTBs:??? -> ?minDbNodeStoragePerNodeInGBs:??? -> ?minMemoryPerNodeInGBs:??? -> ?minStorageCount:??? -> ?minimumCoreCount:??? -> ?minimumNodeCount:??? -> ?runtimeMinimumCoreCount:??? -> ?shapeFamily:??? -> ?shapeType:??? -> ?name:??? -> ?computeModel:??? -> ?areServerTypesSupported:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Integer of Integer.t | `String of String_.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t