Delete an Image List Entry
/imagelist/{name}/entry/{version}
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
- application/oracle-compute-v3+json
- 
                    name: string
                    
                    Three-part name of the image list ( /Compute-identity_domain/user/object).
- 
                    version: string
                    
                    The version number corresponding to the image list entry to be deleted.
- 
                        Cookie: string
                        
                        The Cookie: header must be included with every request to the service. It must be set to the value of the set-cookie header in the response received to the POST /authenticate/ call.
Response
- application/oracle-compute-v3+json
204 Response
- 
                        set-cookie: string
                        
                        The cookie value is returned if the session is extended
Examples
cURL Command
The following example shows how to delete an image list entry, /Compute-acme/jack.jones@example.com/ol66_40GB/entry/1, by submitting a DELETE 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 -i -X DELETE
     -H "Cookie: $COMPUTE_COOKIE"
         https://api-z999.compute.us0.oraclecloud.com/imagelist/Compute-acme/jack.jones@example.com/ol66_40GB/entry/1
  -  COMPUTE_COOKIEis 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.comis 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.
-  acmeandjack.jones@example.comare example values. Replaceacmewith the identity domain ID of your Compute Classic account, andjack.jones@example.comwith your user name.
No response is returned for this request.