A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from http://cloud.google.com/compute/docs/disks/convert-instant-snapshot below:

Copy an instant snapshot to a different location | Compute Engine Documentation

Copy an instant snapshot to a different location

Stay organized with collections Save and categorize content based on your preferences.

In certain scenarios, you might want to copy an instant snapshot to a different zone or region from its source disk. Possible occasions include:

In these scenarios, you must create a standard or archive snapshot from the instant snapshot, and use that newly created snapshot.

This page explains how to create a standard or archive snapshot from an instant snapshot.

Before you begin Required roles and permissions

To get the permissions that you need to create a standard snapshot from an instant snapshot, ask your administrator to grant you the following IAM roles on the project:

For more information about granting roles, see Manage access to projects, folders, and organizations.

These predefined roles contain the permissions required to create a standard snapshot from an instant snapshot. To see the exact permissions that are required, expand the Required permissions section:

Required permissions

The following permissions are required to create a standard snapshot from an instant snapshot:

You might also be able to get these permissions with custom roles or other predefined roles.

Restrictions

If an instant snapshot's source disk is encrypted with a customer-supplied encryption key (CSEK), the instant snapshot is also encrypted with the same key. Therefore, to create a standard snapshot from a CSEK-encrypted instant snapshot, you must provide the key you used to encrypt the source disk.

You can create a standard snapshot of an individual disk at most 6 times every 60 minutes. This limit also applies to creating a standard snapshot from an instant snapshot of a disk.

Create a standard or archive snapshot from an instant snapshot

You can create a standard or archive snapshot from an instant snapshot by using the gcloud CLI, Google Cloud console, or REST.

Console
  1. Find the instant snapshot:

    1. In the Google Cloud console, go to the Snapshots page.

      Go to Snapshots

    2. Click the Instant snapshots tab.

    3. In the Name column, note the name of the snapshot you want to restore.

  2. Click Create snapshot.

  3. In the Name field, enter a unique name to identify the snapshot.

  4. Optional. Add more details about the snapshot in the Description field.

  5. Under Snapshot source type, choose Instant snapshot.

  6. In the Source instant snapshot list, select the instant snapshot you want to use.

  7. For Type, choose either Snapshot or Archive snapshot.

  8. In the Location section, choose your snapshot storage location. The predefined or customized default location defined in your snapshot settings is automatically selected. Optionally, you can override the snapshot settings and store your snapshots in a custom storage location by doing the following:

    1. Choose the type of storage location that you want for your snapshot.

      • Choose Multi-regional for higher availability at a higher cost.
      • Choose Regional snapshots for more control over the physical location of your data at a lower cost.
    2. In the Select location field, select the specific region or multi-region that you want to use. To use the region or multi-region that is closest to your source disk, select Based on disk's location.

  9. If the instant snapshot is CSEK-encrypted, provide the encryption key:

    1. In the Decryption section, enter the encryption key in the Encryption key field.
    2. If the key is wrapped with the public RSA key, select Wrapped key.
  10. Click Create to create the snapshot.

gcloud

Create a standard snapshot from a zonal or regional instant snapshot with the gcloud compute snapshots create command. You use different flags depending on whether the instant snapshot is of a zonal or regional disk.

Zonal instant snapshot

Create your standard or archive snapshot from a zonal instant snapshot using the storage location policy defined by your snapshot settings or using an alternative storage location of your choice. For more information, see Choose your snapshot storage location.

gcloud compute snapshots create NEW_STANDARD_SNAPSHOT_NAME \
  --source-instant-snapshot=SRC_INSTANT_SNAPSHOT_NAME \
  --source-instant-snapshot-zone=SOURCE_ZONE \
  --snapshot-type=SNAPSHOT_TYPE

Replace the following with the corresponding values:

gcloud compute snapshots create NEW_STANDARD_SNAPSHOT_NAME \
  --source-instant-snapshot=SRC_INSTANT_SNAPSHOT_NAME \
  --source-instant-snapshot-zone=SOURCE_ZONE \
  --storage-location=STORAGE_LOCATION \
  --snapshot-type=SNAPSHOT_TYPE

Replace the following with the corresponding values:

Regional instant snapshot

Create your standard or archive snapshot from a regional instant snapshot using the storage location policy defined by your snapshot settings or using an alternative storage location of your choice. For more information, see Choose your snapshot storage location.

gcloud compute snapshots create NEW_STANDARD_SNAPSHOT_NAME \
  --source-instant-snapshot=SRC_INSTANT_SNAPSHOT_NAME \
  --source-instant-snapshot-region=SOURCE_REGION \
  --snapshot-type=SNAPSHOT_TYPE

Replace the following with the corresponding values:

gcloud compute snapshots create NEW_STANDARD_SNAPSHOT_NAME \
  --source-instant-snapshot=SRC_INSTANT_SNAPSHOT_NAME \
  --source-instant-snapshot-region=SOURCE_REGION \
  --storage-location=STORAGE_LOCATION \
  --snapshot-type=SNAPSHOT_TYPE

Replace the following with the corresponding values:

REST

To create a standard snapshot from a zonal or regional instant snapshot, make a POST request to the snapshots.insert method.

The API request properties depend on whether the instant snapshot is of a zonal or regional disk.

Zonal instant snapshot

Create your standard or archive snapshot from a zonal instant snapshot using the storage location policy defined by your snapshot settings or using an alternative storage location of your choice. For more information, see Choose your snapshot storage location.

POST https://compute.googleapis.com/compute/v1/projects/DESTINATION_PROJECT/global/snapshots
{
  "name": "NEW_STANDARD_SNAPSHOT_NAME",
  "snapshotType": "NEW_SNAPSHOT_TYPE",
  "sourceInstantSnapshot": "projects/SOURCE_PROJECT/zones/SOURCE_ZONE/instantSnapshots/SOURCE_INSTANT_SNAPSHOT_NAME",
  "sourceInstantSnapshotEncryptionKey": "SOURCE_ENCRYPTION_KEY"
}

Replace the following with the corresponding values:

Use the storageLocations parameter only when you want to override the predefined or customized default storage location configured in your snapshot settings.

Regional instant snapshot

Create your regional standard or archive snapshot from a regional instant snapshot using the storage location policy defined by your snapshot settings or using an alternative storage location of your choice. For more information, see Choose your snapshot storage location.

To create a standard or archive snapshot volume in the predefined or customized default location configured in your snapshot settings, make a POST request to the snapshots.insert method.

POST https://compute.googleapis.com/compute/v1/projects/DESTINATION_PROJECT/global/snapshots
{
"name": "NEW_STANDARD_SNAPSHOT_NAME",
"snapshotType": "NEW_SNAPSHOT_TYPE",
"sourceInstantSnapshot": "projects/SOURCE_PROJECT/regions/SOURCE_REGION/instantSnapshots/SOURCE_INSTANT_SNAPSHOT_NAME",
"sourceInstantSnapshotEncryptionKey": "SOURCE_ENCRYPTION_KEY"
}

Replace the following with the corresponding values:

API request response

If the POST request is successful, the response body will be an object that you can poll to get the status of the snapshot's creation. See Handling API responses for more information.

What's next

Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.

Last updated 2025-08-07 UTC.

[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-07 UTC."],[[["This guide explains how to create a standard or archive snapshot from an instant snapshot, which is necessary for various reasons, such as preserving data, protecting against outages, or moving data to long-term storage."],["Creating a standard snapshot from an instant snapshot requires specific IAM roles and permissions, including `compute.snapshots.create` and `compute.instantSnapshots.useReadOnly`."],["The process for creating a standard or archive snapshot can be completed using the Google Cloud console, the gcloud CLI, or REST, with the steps varying slightly based on whether the instant snapshot is zonal or regional."],["If the instant snapshot's source disk is encrypted with a customer-supplied encryption key (CSEK), you must provide that key when creating the standard snapshot."],["There is a limit of six standard snapshot creations per disk every 60 minutes, which applies to both creating snapshots directly from a disk or from an instant snapshot."]]],[]]


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4