Oracle · Schema
UpdateInstanceDetails
Details for updating an instance
CloudDatabaseEnterpriseInfrastructureSaaSFortune 100
Properties
| Name | Type | Description |
|---|---|---|
| displayName | string | A user-friendly name. Does not have to be unique. Avoid entering confidential information. |
| shape | string | The shape of the instance. Changing the shape requires the instance to be stopped first. |
| metadata | object | Custom metadata key/value pairs |
| extendedMetadata | object | Additional metadata key/value pairs |
| faultDomain | string | The fault domain for the instance |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "UpdateInstanceDetails",
"type": "object",
"description": "Details for updating an instance",
"properties": {
"displayName": {
"type": "string",
"description": "A user-friendly name. Does not have to be unique. Avoid entering confidential information."
},
"shape": {
"type": "string",
"description": "The shape of the instance. Changing the shape requires the instance to be stopped first."
},
"metadata": {
"type": "object",
"description": "Custom metadata key/value pairs"
},
"extendedMetadata": {
"type": "object",
"description": "Additional metadata key/value pairs"
},
"faultDomain": {
"type": "string",
"description": "The fault domain for the instance"
}
}
}