Oracle · Schema
CreateImageDetails
Details for creating an image
CloudDatabaseEnterpriseInfrastructureSaaSFortune 100
Properties
| Name | Type | Description |
|---|---|---|
| compartmentId | string | The OCID of the compartment to create the image in |
| displayName | string | A user-friendly name for the image. Avoid entering confidential information. |
| instanceId | string | The OCID of the instance to use as the basis for the image. Required if imageSourceDetails is not specified. |
| launchMode | string | The launch mode for instances created from this image |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "CreateImageDetails",
"type": "object",
"description": "Details for creating an image",
"properties": {
"compartmentId": {
"type": "string",
"description": "The OCID of the compartment to create the image in"
},
"displayName": {
"type": "string",
"description": "A user-friendly name for the image. Avoid entering confidential information."
},
"instanceId": {
"type": "string",
"description": "The OCID of the instance to use as the basis for the image. Required if imageSourceDetails is not specified."
},
"launchMode": {
"type": "string",
"description": "The launch mode for instances created from this image"
}
}
}