Module Values.DbServerSummarySource

Information about a database server.

Sourcetype nonrec t = {
  1. dbServerId : ResourceId.t option;
    (*

    The unique identifier of the database server.

    *)
  2. status : ResourceStatus.t option;
    (*

    The current status of the database server.

    *)
  3. statusReason : String_.t option;
    (*

    Additional information about the status of the database server.

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

    The number of CPU cores enabled on the database server.

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

    The amount of local node storage, in gigabytes (GB), that's allocated on the database server.

    *)
  6. dbServerPatchingDetails : DbServerPatchingDetails.t option;
  7. displayName : String_.t option;
    (*

    The user-friendly name of the database server. The name doesn't need to be unique.

    *)
  8. exadataInfrastructureId : String_.t option;
    (*

    The ID of the Exadata infrastructure that hosts the database server.

    *)
  9. ocid : String_.t option;
    (*

    The OCID of the database server.

    *)
  10. ociResourceAnchorName : String_.t option;
    (*

    The name of the OCI resource anchor for the database server.

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

    The total number of CPU cores available on the database server.

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

    The total amount of local node storage, in gigabytes (GB), that's available on the database server.

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

    The total amount of memory, in gigabytes (GB), that's available on the database server.

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

    The amount of memory, in gigabytes (GB), that's allocated on the database server.

    *)
  15. shape : String_.t option;
    (*

    The hardware system model of the Exadata infrastructure that the database server is hosted on. The shape determines the amount of CPU, storage, and memory resources available.

    *)
  16. createdAt : SyntheticTimestamp_date_time.t option;
    (*

    The date and time when the database server was created.

    *)
  17. vmClusterIds : StringList.t option;
    (*

    The IDs of the VM clusters that are associated with the database server.

    *)
  18. 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.

    *)
  19. autonomousVmClusterIds : StringList.t option;
    (*

    A list of identifiers for the Autonomous VM clusters.

    *)
  20. autonomousVirtualMachineIds : StringList.t option;
    (*

    A list of unique identifiers for the Autonomous VMs.

    *)
}
Sourceval make : ?dbServerId:??? -> ?status:??? -> ?statusReason:??? -> ?cpuCoreCount:??? -> ?dbNodeStorageSizeInGBs:??? -> ?dbServerPatchingDetails:??? -> ?displayName:??? -> ?exadataInfrastructureId:??? -> ?ocid:??? -> ?ociResourceAnchorName:??? -> ?maxCpuCount:??? -> ?maxDbNodeStorageInGBs:??? -> ?maxMemoryInGBs:??? -> ?memorySizeInGBs:??? -> ?shape:??? -> ?createdAt:??? -> ?vmClusterIds:??? -> ?computeModel:??? -> ?autonomousVmClusterIds:??? -> ?autonomousVirtualMachineIds:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Integer.t | `List of [> `String of String_.t ] list | `String of ResourceId.t | `Structure of (string * [> `Enum of string | `Integer of Integer.t | `String of String_.t ]) list | `Timestamp of SyntheticTimestamp_date_time.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