Retrieve Details of all Image Lists in a Container

get

/imagelist/{container}/

Retrieves details of all the available image lists in the specified container.

Required Role: To complete this task, you must have the Compute_Monitor or Compute_Operations role. If this role isn't assigned to you or you're not sure, then ask your system administrator to ensure that the role is assigned to you in Oracle Cloud My Services. See Modifying User Roles in Managing and Monitoring Oracle Cloud.

Request

Supported Media Types
Path Parameters
  • Specify /Compute-identity_domain/user and /Compute-identity_domain/for user-defined image lists and /oracle/public for the Oracle-provided image lists.
Header Parameters
Back to Top

Response

Supported Media Types

200 Response

OK. See Status Codes for information about other possible HTTP status codes.
Headers
Body ()
Root Schema : ImageList-list-response
Type: object
Show Source
Nested Schema : result
Type: array
Show Source
Nested Schema : ImageList-response
Type: object
Show Source
Nested Schema : entries
Type: array
Each machine image in an image list is identified by an image list entry.
Show Source
Nested Schema : ImageListEntry-response
Type: object
Show Source
Nested Schema : attributes
Type: object
Additional Properties Allowed
Show Source

User-defined parameters, in JSON format, that can be passed to an instance of this machine image when it is launched. This field can be used, for example, to specify a user-friendly name for the image list in the displayName attribute. The name you specify is displayed as the name of the image list in the Compute Classic web console. Instance metadata, including user-defined data is available at http://192.0.0.192/ within an instance. See Retrieving User-Defined Instance Attributes in Using Oracle Cloud Infrastructure Compute Classic.

Nested Schema : machineimages
Type: array

A list of machine images. Specify the three-part name of each machine image.

Show Source
Nested Schema : additionalProperties
Type: object
Back to Top

Examples

cURL Command

The following example shows how to retrieve details about all image lists in the /Compute-acme/jack.jones@example.com/ container by submitting a GET request on the REST resource using cURL. For more information about cURL, see Use cURL.

Enter the command on a single line. Line breaks are used in this example for readability.

curl -X GET 
     -H "Cookie: $COMPUTE_COOKIE"
     -H "Accept: application/oracle-compute-v3+json"
     https://api-z999.compute.us0.oraclecloud.com/imagelist/Compute-acme/jack.jones@example.com/
  • COMPUTE_COOKIE is the name of the variable in which you stored the authentication cookie earlier. For information about retrieving the authentication cookie and storing it in a variable, see Authentication.

  • api-z999.compute.us0.oraclecloud.com is an example REST endpoint URL. Change this value to the REST endpoint URL of your Compute Classic site. For information about finding out REST endpoint URL for your site, see Send Requests.

  • acme and jack.jones@example.com are example values. Replace acme with the identity domain ID of your Compute Classic account, and jack.jones@example.com with your user name.

Example of Response Body

The following example shows the response body in JSON format.

Some lines may be truncated with ellipses (...) for readability.

{
 "result": [
  {
   "default": 1,
   "description": "OEL 5.9 20GB",
   "entries": [
    {
     "attributes": {},
     "version": 1,
     "machineimages": ["/Compute-acme/jack.jones@example.com/oel59_20G"],
     "uri": "https://api-z999.compute.us0.oraclecloud.com/imagelist/Compute-acme/jack.jones@example.com/oel59_20G/entry/1"
    }],
   "uri": "https://api-z999.compute.us0.oraclecloud.com/imagelist/Compute-acme/jack.jones@example.com/oel59_20G",
   "name": "/Compute-acme/jack.jones@example.com/oel59_20G"
   },
   {
    "default": 1,
    "description": "OL 6.6 40GB",
    "entries": [
     {
      "attributes": {},
      "version": 1,
      "machineimages": ["/Compute-acme/jack.jones@example.com/ol66_40GB"],
      "uri": "https://api-z999.compute.us0.oraclecloud.com/imagelist/Compute-acme/jack.jones@example.com/ol66_40GB/entry/1"
      }],
     "uri": "https://api-z999.compute.us0.oraclecloud.com/imagelist/Compute-acme/jack.jones@example.com/ol66_40GB",
     "name": "/Compute-acme/jack.jones@example.com/ol66_40GB"
   }
  ]
}
Back to Top