Overview
IAM
- Account
- Users
- API Tokens
CDN
- IP addresses list
- CDN service
- Origins
- CDN resources
- CDN activity logs
- Log forwarding
- Log viewer
- Logs uploader
- Tools
- Rules
- Rule templates
- Purge history
- SSL certificates
- CA certificates
- CDN Statistics
- Advanced analytics
- Origin shielding
- Let's Encrypt certificates
Managed DNS
- Analyze
- Locations
- Lookup
- Metrics
- Pickers
- DNS Clients
- Zones
- DNSSEC
- RRsets
Cloud
- Bare Metal
- Container as a Service
- Cost Reports
- DDOS Protection
- File Shares
- Firewalls
- Floating IPs
- Function as a Service
- GPU Cloud
- IP Ranges
- Images
- GETList images for bare metal servers
- POSTCreate image from volume
- POSTUpload image
- GETList images
- POSTCreate image from volume
- GETGet image
- DELDelete the image
- PATCHUpdate image fields
- GETList image tags
- PUTReplace image tags
- POSTCreate or update image tags
- GETGet image tag by key
- DELDelete image tag by key
- POSTPreview image price
- GETList images owned by project
- PUTDeprecated. Set or update available image list for resellerdeprecated
- GETDeprecated. Get available image ids for the resellerdeprecated
- DELDeprecated. Delete image limits for reseller clientsdeprecated
- GETGet available image ids
- PUTCreate or update shared image
- DELDelete entity shared image
- GET
- Inference Instances
- Instances
- Load Balancers
- Logging
- Managed Kubernetes
- Managed PostgreSQL
- Networks
- Placement Groups
- Projects
- Quotas
- Regions
- Registry
- Reservations
- Reserved IPs
- Routers
- SSH Keys
- Secrets
- Service Endpoints
- Snapshot Schedules
- Snapshots
- Tasks
- User Actions
- User Role Assignments
- Volumes
Security
- Event Logs
- BGP announces
- Security Templates
- Profiles
FastEdge
- Apps
- Binaries
- FastEdge Clients
- FastEdge Secrets
- Stats
- FastEdge Templates
WAAP
- WAAP Service
- Domains
- Policies
- Analytics
- Custom Page Sets
- Custom Rules
- Firewall Rules
- Advanced Rules
- Tags
- Network Organizations
- API Discovery
- IP Spotlight
- Security Insights
Web Security
- Billing Statistics
- Resources
Video Streaming
- Streams
- Overlays
- Broadcasts
- Restreams
- Videos
- Subtitles
- Directories
- Playlists
- QualitySets
- Players
- AI
- Streaming Statistics
Object Storage
- Notifications
- Key
- Location
- Storage
- Storage Statistics
Images
Delete the image
DELETE
/
cloud
/
v1
/
images
/
{project_id}
/
{region_id}
/
{image_id}
Copy
Ask AI
import os
from gcore import Gcore
client = Gcore(
api_key=os.environ.get("GCORE_API_KEY"), # This is the default and can be omitted
)
task_id_list = client.cloud.instances.images.delete(
image_id="image_id",
project_id=0,
region_id=0,
)
print(task_id_list.tasks)
Copy
Ask AI
{
"tasks": [
"d478ae29-dedc-4869-82f0-96104425f565"
]
}
Authorizations
API key for authentication.
Path Parameters
Project ID
Region ID
Image ID
Response
200 - application/json
List of created tasks
The response is of type object
.
Was this page helpful?
Copy
Ask AI
import os
from gcore import Gcore
client = Gcore(
api_key=os.environ.get("GCORE_API_KEY"), # This is the default and can be omitted
)
task_id_list = client.cloud.instances.images.delete(
image_id="image_id",
project_id=0,
region_id=0,
)
print(task_id_list.tasks)
Copy
Ask AI
{
"tasks": [
"d478ae29-dedc-4869-82f0-96104425f565"
]
}
Assistant
Responses are generated using AI and may contain mistakes.