Skip to content

Latest commit

 

History

History
59 lines (47 loc) · 1.49 KB

wf_delete_snapshot.adoc

File metadata and controls

59 lines (47 loc) · 1.49 KB
sidebar permalink keywords summary
sidebar
workflows/wf_delete_snapshot.html

Delete a snapshot

You can delete a snapshot associated with a managed application.

Before you begin

You must have the following:

  • ID of the managed app that owns the snapshot. If needed you can use the workflow List the managed apps to locate the application.

  • ID of the snapshot you want to delete. If needed you can use the workflow List the snapshots to locate the snapshot.

1. Delete the snapshot

Perform the following REST API call.

HTTP method Path

DELETE

/accounts/{account_id}/k8s/v1/managedApps/{managedApp_id}/appSnaps/{appSnap_id}

Additional input parameters

In addition to the parameters common with all REST API calls, the following parameters are also used in the curl examples for this step.

Parameter Type Required Description

managed app id

Path

Yes

Identifies the managed application owning the snapshot.

snapshot id

Path

Yes

Identifies the snapshot to be deleted.

Curl example: Delete a single snapshot for the app
curl --location -i --request DELETE 'https://astra.netapp.io/accounts/<ACCOUNT_ID>/k8s/v1/managedApps/<MANAGED_APP_ID>/appSnaps/<SNAPSHOT_ID>' --header 'Accept: */*' --header 'Authorization: Bearer <API_TOKEN>'