Values.AutonomousVirtualMachineSummarySourceA summary of an Autonomous Virtual Machine (VM) within an Autonomous VM cluster.
type nonrec t = {autonomousVirtualMachineId : ResourceId.t option;The unique identifier of the Autonomous VM.
*)status : ResourceStatus.t option;The current status of the Autonomous VM.
*)statusReason : String_.t option;Additional information about the current status of the Autonomous VM, if applicable.
*)vmName : String_.t option;The name of the Autonomous VM.
*)dbServerId : ResourceId.t option;The unique identifier of the database server hosting this Autonomous VM.
*)dbServerDisplayName : String_.t option;The display name of the database server hosting this Autonomous VM.
*)cpuCoreCount : Integer.t option;The number of CPU cores allocated to this Autonomous VM.
*)memorySizeInGBs : Integer.t option;The amount of memory allocated to this Autonomous VM, in gigabytes (GB).
*)dbNodeStorageSizeInGBs : Integer.t option;The amount of storage allocated to this Autonomous Virtual Machine, in gigabytes (GB).
*)clientIpAddress : String_.t option;The IP address used by clients to connect to this Autonomous VM.
*)cloudAutonomousVmClusterId : String_.t option;The unique identifier of the Autonomous VM cluster containing this Autonomous VM.
*)ocid : String_.t option;The Oracle Cloud Identifier (OCID) of the Autonomous VM.
*)ociResourceAnchorName : String_.t option;The name of the Oracle Cloud Infrastructure (OCI) resource anchor associated with this Autonomous VM.
*)}val make :
?autonomousVirtualMachineId:??? ->
?status:??? ->
?statusReason:??? ->
?vmName:??? ->
?dbServerId:??? ->
?dbServerDisplayName:??? ->
?cpuCoreCount:??? ->
?memorySizeInGBs:??? ->
?dbNodeStorageSizeInGBs:??? ->
?clientIpAddress:??? ->
?cloudAutonomousVmClusterId:??? ->
?ocid:??? ->
?ociResourceAnchorName:??? ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Integer of Integer.t
| `String of ResourceId.t ])
list ]