UpdateInstanceDetails

Details for updating an instance.

Cloud ComputingEnterprise CloudInfrastructure as a ServiceOraclePlatform as a Service

Properties

Name Type Description
displayName string A user-friendly name.
shape string The shape of the instance.
shapeConfig object
freeformTags object
View JSON Schema on GitHub

JSON Schema

compute-update-instance-details-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/oracle-cloud/refs/heads/main/json-schema/compute-update-instance-details-schema.json",
  "title": "UpdateInstanceDetails",
  "description": "Details for updating an instance.",
  "type": "object",
  "properties": {
    "displayName": {
      "type": "string",
      "description": "A user-friendly name.",
      "example": "updated-instance-name"
    },
    "shape": {
      "type": "string",
      "description": "The shape of the instance.",
      "example": "VM.Standard.E4.Flex"
    },
    "shapeConfig": {
      "type": "object",
      "example": {
        "ocpus": 4.0,
        "memoryInGBs": 32.0
      }
    },
    "freeformTags": {
      "type": "object",
      "example": {
        "key1": "value1"
      },
      "additionalProperties": {
        "type": "string"
      }
    }
  }
}