Paul
Paul

Reputation: 5781

GCE API for differential snapshots

With gcloud it is possible to create differential snapshots of your instances, so you can save space and do not need to create full snapshots all the time.

https://cloud.google.com/compute/docs/disks#snapshots

I checked the GCE API reference and there is no parameter for source snapshot.

Is there any way to use the API to create a differential Snapshot?

Upvotes: 1

Views: 261

Answers (1)

Fabricio Voznika
Fabricio Voznika

Reputation: 371

There is no specific API to request differential snapshot. Differential snapshots are automatically taken after the first full snapshot. You don't need to remember which source snapshot to use and you don't need to worry about making the call with the right parameters to benefit from differential snapshots. It's all taken care for you automatically.

Cheers, Fabricio.

Upvotes: 2

Related Questions