Module Values.DbServerSource

Information about a database server.

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

    The unique identifier for the database server.

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

    The current status of the database server.

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

    Additional information about the current 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 allocated local node storage in GBs on the database server.

    *)
  6. dbServerPatchingDetails : DbServerPatchingDetails.t option;
    (*

    The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.

    *)
  7. displayName : String_.t option;
    (*

    The user-friendly name of the database server.

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

    The ID of the Exadata infrastructure the database server belongs to.

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

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

    The total local node storage available in GBs.

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

    The total memory available in GBs.

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

    The allocated memory in GBs on the database server.

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

    The shape of the database server. 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 OCID of the VM clusters that are associated with the database server.

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

    The compute model of the database server (ECPU or OCPU).

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

    The list of identifiers for the Autonomous VM clusters associated with this database server.

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

    The list of unique identifiers for the Autonomous VMs associated with this database server.

    *)
}
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