Oracle · Schema
InstanceShapeConfig
The shape configuration for an instance. This includes the number of OCPUs, amount of memory, and networking bandwidth.
CloudDatabaseEnterpriseInfrastructureSaaSFortune 100
Properties
| Name | Type | Description |
|---|---|---|
| ocpus | number | The total number of OCPUs available to the instance |
| memoryInGBs | number | The total amount of memory available to the instance, in gigabytes |
| baselineOcpuUtilization | string | The baseline OCPU utilization for a subcore burstable instance |
| processorDescription | string | A short description of the instance processor |
| networkingBandwidthInGbps | number | The networking bandwidth available to the instance, in Gbps |
| maxVnicAttachments | integer | The maximum number of VNIC attachments for the instance |
| gpus | integer | The number of GPUs available to the instance |
| gpuDescription | string | A short description of the instance GPU |
| localDisks | integer | The number of local disks available to the instance |
| localDisksTotalSizeInGBs | number | The aggregate size of all local disks, in gigabytes |
| vcpus | integer | The total number of VCPUs available to the instance. This is typically 2x the number of OCPUs. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "InstanceShapeConfig",
"type": "object",
"description": "The shape configuration for an instance. This includes the number of OCPUs, amount of memory, and networking bandwidth.",
"properties": {
"ocpus": {
"type": "number",
"description": "The total number of OCPUs available to the instance"
},
"memoryInGBs": {
"type": "number",
"description": "The total amount of memory available to the instance, in gigabytes"
},
"baselineOcpuUtilization": {
"type": "string",
"description": "The baseline OCPU utilization for a subcore burstable instance"
},
"processorDescription": {
"type": "string",
"description": "A short description of the instance processor"
},
"networkingBandwidthInGbps": {
"type": "number",
"description": "The networking bandwidth available to the instance, in Gbps"
},
"maxVnicAttachments": {
"type": "integer",
"description": "The maximum number of VNIC attachments for the instance"
},
"gpus": {
"type": "integer",
"description": "The number of GPUs available to the instance"
},
"gpuDescription": {
"type": "string",
"description": "A short description of the instance GPU"
},
"localDisks": {
"type": "integer",
"description": "The number of local disks available to the instance"
},
"localDisksTotalSizeInGBs": {
"type": "number",
"description": "The aggregate size of all local disks, in gigabytes"
},
"vcpus": {
"type": "integer",
"description": "The total number of VCPUs available to the instance. This is typically 2x the number of OCPUs."
}
}
}