[[["易于理解","easyToUnderstand","thumb-up"],["解决了我的问题","solvedMyProblem","thumb-up"],["其他","otherUp","thumb-up"]],[["很难理解","hardToUnderstand","thumb-down"],["信息或示例代码不正确","incorrectInformationOrSampleCode","thumb-down"],["没有我需要的信息/示例","missingTheInformationSamplesINeed","thumb-down"],["翻译问题","translationIssue","thumb-down"],["其他","otherDown","thumb-down"]],["最后更新时间 (UTC):2025-09-04。"],[],[],null,["# Manage your backup vault\n\nThis page provides instructions for how to manage your backup vault.\n\nConsiderations\n--------------\n\nYou can only change the description and labels associated with your backup\nvault after it's created.\n\nView backup vault\n-----------------\n\nUse the following instructions to view backup vault using either the\nGoogle Cloud console or Google Cloud CLI: \n\n### Console\n\n1. Go to **NetApp Volumes** page in the Google Cloud console.\n\n [Go to NetApp Volumes](https://console.cloud.google.com/netapp/volumes)\n2. Click **Backup vaults** from the **Data protection** menu.\n\n3. From the list of created backup vaults, select the backup vault you want\n to see details for. The Backup vaults page opens. You can review the\n following details:\n\n - **Resource type**: displays the resource type.\n\n - **State**: describes the state of the backup including whether it's\n ready, creating, updating, deleting, or experiencing an error.\n\n - **Description**: displays the optional description.\n\n - **Name**: lists the name of the backup vault.\n\n - **Type** : specifies if the vault is **In-region** or **Cross-region**.\n\n - **Region** (in-region vaults only): specifies the vault's region.\n\n - **Source region** (cross-region vaults only): specifies the vault's\n source region and associated backup vault.\n\n - **Destination region** (cross-region vaults only): specifies the\n vault's destination region and associated backup vault.\n\n - **Prevent backup deletion**: displays the minimum backup retention\n time set for the backup vault and the types of backups that are\n retained.\n\n - **Created**: lists the date and time the backup vault was created.\n\n - **Labels**: displays optional labels.\n\n - **Backups**: displays a table of backups stored in the backup vault.\n For each backup, the table lists the following:\n\n To view actions for a backup, click more_vert\n **Show more** icon.\n - **Associated Volumes**: displays a list of volumes that are associated\n with the backup vault. Each volume displays the following:\n\n - **Status**: the status of the volume.\n\n - **Volume name**: the name of the volume.\n\n - **Utilization**: the amount of used capacity versus available\n capacity in the volume.\n\n - **Labels**: displays optional labels.\n\n To view actions for a volume, click more_vert\n **Show more** icon.\n\n### gcloud\n\nTo view all the backup vaults: \n\n```json\n gcloud netapp backup-vaults list\n```\n\nTo lookup a specific backup vault: \n\n```bash\n gcloud netapp backup-vaults describe VAULT_NAME \\\n --location=LOCATION\n```\n\nReplace the following information:\n\n- \u003cvar translate=\"no\"\u003eVAULT_NAME\u003c/var\u003e: the name of the backup vault.\n\n- \u003cvar translate=\"no\"\u003eLOCATION\u003c/var\u003e: the location of the backup vault.\n\nEdit a backup vault\n-------------------\n\nUse the following instructions to edit a backup vault using either the\nGoogle Cloud console or Google Cloud CLI: \n\n### Console\n\n1. Go to the **NetApp Volumes** page in the Google Cloud console.\n\n [Go to NetApp Volumes](https://console.cloud.google.com/netapp/volumes)\n2. Click **Backup vaults** from the **Data protection** menu.\n\n3. In the **Backup vaults** page, select the backup vault you want to edit.\n\n4. Click **Edit**.\n\n5. Make any applicable changes.\n\n6. Click **Save**.\n\n### gcloud\n\nTo edit a backup vault: \n\n```bash\n gcloud netapp backup-vaults update VAULT_NAME \\\n --location=LOCATION\n```\n\nReplace the following information:\n\n- \u003cvar translate=\"no\"\u003eVAULT_NAME\u003c/var\u003e: the name of the backup vault.\n\n- \u003cvar translate=\"no\"\u003eLOCATION\u003c/var\u003e: the location of the backup vault.\n\nFor more information, see [Google Cloud SDK documentation for NetApp Volumes](/sdk/gcloud/reference/netapp/backup-vaults/update).\n\nAssign a volume to your backup vault\n------------------------------------\n\nUse the following instructions to assign a volume to your backup vault using\neither the Google Cloud console or Google Cloud CLI: \n\n### Console\n\n1. Go to the **NetApp Volumes** page in the Google Cloud console.\n\n [Go to NetApp Volumes](https://console.cloud.google.com/netapp/volumes)\n2. Click **Volumes** from the **Storage** menu.\n\n3. In the **Volumes** page, select the volume you want to create a backup\n for.\n\n4. In the volume details page, click the **Backups** tab.\n\n5. Click **Assign backup policy**.\n\n6. Select the backup vault to store your backups in from the\n **Backup vault** menu.\n\n7. Click **Assign**.\n\n | **Note:** If the backup vault assigned to the volume has a specified minimum retention period, any manual backups performed are also assigned that minimum retention value. For more information, see [Prevent backup deletion](/netapp/volumes/docs/protect-data/about-backups#prevent_backup_deletion).\n\n### gcloud\n\nTo assign a volume to a backup vault, add the backup vault to the volume\nconfiguration: \n\n```bash\n gcloud netapp volumes update VOLUME_NAME \\\n --location=LOCATION \\\n --backup-config=backup-vault=VAULT_RESOURCE_PATH\n```\n\nReplace the following information:\n\n- \u003cvar translate=\"no\"\u003eVOLUME_NAME\u003c/var\u003e: the name of the volume.\n\n- \u003cvar translate=\"no\"\u003eLOCATION\u003c/var\u003e: the location of the volume.\n\n- \u003cvar translate=\"no\"\u003eVAULT_RESOURCE_PATH\u003c/var\u003e: full resource path of the\n backup vault. Format as `projects/`\u003cvar translate=\"no\"\u003ePROJECT_ID\u003c/var\u003e`/locations/`\u003cvar translate=\"no\"\u003eVAULT_LOCATION\u003c/var\u003e`/backupVaults/`\u003cvar translate=\"no\"\u003eVAULT_NAME\u003c/var\u003e\n\nUnassign a volume from your backup vault\n----------------------------------------\n\nUse the following instructions to unassign a volume from your backup vault.\n\n### Considerations\n\n- You must first unassign the volume's backup policy before you can\n disassociate the volume from the backup vault.\n\n- You can't unassign a volume from a backup vault until you delete all backups\n of the associated volume.\n\nUse the following instructions to unassign a volume from your backup vault\nusing either the Google Cloud console or Google Cloud CLI: \n\n### Console\n\n1. Go to the **NetApp Volumes** page in the Google Cloud console.\n\n [Go to NetApp Volumes](https://console.cloud.google.com/netapp/volumes)\n2. Click **Backup vaults** from the **Data protection** menu.\n\n3. In the **Backup vaults** page, click the backup vault you want to\n unassign a volume from.\n\n4. Click the **Associated volumes** tab.\n\n5. For the volume you want to unassign from the backup vault, click\n **Show more**.\n\n6. Click **Unassign volume**.\n\n A message appears that prompts you to confirm you want to unassign the\n volume from the backup vault.\n7. To confirm that you want to unassign the volume from the backup vault,\n click **Unassign**.\n\n### gcloud\n\nTo unassign a volume from a backup vault, remove the backup vault from the\nvolume configuration: \n\n```bash\n gcloud netapp volumes update VOLUME_NAME \\\n --location=LOCATION \\\n --backup-config=backup-vault=\n```\n\nReplace the following information:\n\n- \u003cvar translate=\"no\"\u003eVOLUME_NAME\u003c/var\u003e: the name of the volume.\n\n- \u003cvar translate=\"no\"\u003eLOCATION\u003c/var\u003e: the location of the volume.\n\nDelete a backup vault\n---------------------\n\nBefore you delete a backup vault, you must do the following:\n\n- [Unassign all backup policies](/netapp/volumes/docs/protect-data/manage-backup-policy#unassign_a_backup_policy_from_a_volume)\n from the volume associated with the backup vault. For more information about\n backup vaults, see [View backup vault](#view_backup_vault).\n\n- [Unassign all volumes from the backup vault](/netapp/volumes/docs/protect-data/manage-backup-vault#unassign_a_volume_from_your_backup_vault).\n\n- [Remove all backups contained in a vault](/netapp/volumes/docs/protect-data/manage-backup#delete_a_backup).\n The latest backup of a volume can only be deleted after all other backups of\n the volume have been deleted.\n\nUse the following instructions to delete a backup vault using either the\nGoogle Cloud console or Google Cloud CLI: \n\n### Console\n\n1. Go to the **NetApp Volumes** page in the Google Cloud console.\n\n [Go to NetApp Volumes](https://console.cloud.google.com/netapp/volumes)\n2. Click **Backup vaults** from the **Data protection** menu.\n\n3. From your list of backup vaults, click the backup vault you want to\n delete.\n\n4. Click **Delete**.\n\n A message appears asking you to delete the backup vault.\n5. In the **Backup vault** field, enter the name of the backup vault you\n want to delete.\n\n6. Click **Delete**.\n\n### gcloud\n\n```bash\n gcloud netapp backup-vaults delete VAULT_NAME \\\n --location=LOCATION\n```\n\nReplace the following information:\n\n- \u003cvar translate=\"no\"\u003eVAULT_NAME\u003c/var\u003e: the name of the backup vault.\n\n- \u003cvar translate=\"no\"\u003eLOCATION\u003c/var\u003e: the location of the backup vault.\n\nFor more information, see [Google Cloud SDK documentation for NetApp Volumes](/sdk/gcloud/reference/netapp/backup-vaults/delete).\n\nWhat's next\n-----------\n\nManage your [backup policies](/netapp/volumes/docs/protect-data/manage-backup-policy)."]]