LOCATION is the zone in which the instance resides.
NEW_CAPACITY is the new storage capacity for this instance in
gibibytes (GiB). The value cannot exceed the maximum
allowed capacity and must be a multiple of the step size. See
Increase the capacity of an instance for more details.
NEW_DESCRIPTION is a new value for the description field, which
overwrites any existing description.
INSTANCE_NAME is the name of the Managed Lustre
instance to update.
UPDATE_MASK is a comma-separated list of fields to update. A
field will only be overwritten if it is in the mask.
The request body must contain one or more of the following fields:
capacityGiB is the new storage capacity for this instance in
gibibytes (GiB). The value cannot exceed the maximum
allowed capacity and must be a multiple of the step size. See
Increase the capacity of an instance for more details.
description is the new description for this instance.
labels is the new set of labels for this instance. The value of labels
is a JSON object containing one or more key:value pairs.
Delete requests are long-running requests, and return an operation ID that
can be queried for operation status. See the
operations.get reference for details.
[[["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-09-04 UTC."],[],[],null,["# Manage Google Cloud Managed Lustre instances\n\nOnce you've [created an instance](/managed-lustre/docs/create-instance), Google Cloud Managed Lustre lets you\nlist, get, update, and delete instances.\n\nWhen updating Managed Lustre instances, only the description\nand labels can be modified.\n\nList instances\n--------------\n\nTo list all the instances in a project: \n\n### Google Cloud console\n\n1. Go to the **Managed Lustre** page in the Google Cloud console.\n\n [Go to Managed Lustre](https://console.cloud.google.com/managed-lustre/)\n\n Your project's instances are listed.\n\n### gcloud CLI\n\n gcloud lustre instances list --location=\u003cvar translate=\"no\"\u003eLOCATION\u003c/var\u003e\n\nReplace \u003cvar translate=\"no\"\u003eLOCATION\u003c/var\u003e with a specific zone to list all instances in that\nlocation. To view projects in **all** locations, enter `-` as the value. For\nexample: \n\n gcloud lustre instances list --location=-\n\n### REST\n\nTo list instances using the REST API, send a request to the following\nendpoint: \n\n GET https://lustre.googleapis.com/v1/projects/\u003cvar translate=\"no\"\u003ePROJECT_ID\u003c/var\u003e/locations/\u003cvar translate=\"no\"\u003eZONE\u003c/var\u003e/instances\n Authorization: Bearer [YOUR_ACCESS_TOKEN]\n\nWhere the following values must be specified:\n\n- \u003cvar translate=\"no\"\u003ePROJECT_ID\u003c/var\u003e is your Google Cloud project ID.\n\n- \u003cvar translate=\"no\"\u003eZONE\u003c/var\u003e is the zone for which to list all instances. To list\n instances from all zones, use `-` as the value.\n\nGet an instance\n---------------\n\nTo get an instance's details: \n\n### Google Cloud console\n\n1. Go to the **Managed Lustre** page in the Google Cloud console.\n\n [Go to Managed Lustre](https://console.cloud.google.com/managed-lustre/)\n2. Click the instance name to view details about a specific instance.\n\n### gcloud CLI\n\n gcloud lustre instances describe \u003cvar translate=\"no\"\u003eINSTANCE_NAME\u003c/var\u003e --location=\u003cvar translate=\"no\"\u003eLOCATION\u003c/var\u003e\n\n### REST\n\nTo get details about a particular instance using the REST API, send a\nrequest to the following endpoint: \n\n GET https://lustre.googleapis.com/v1/projects/\u003cvar translate=\"no\"\u003ePROJECT_ID\u003c/var\u003e/locations/\u003cvar translate=\"no\"\u003eZONE\u003c/var\u003e/instances/\u003cvar translate=\"no\"\u003eINSTANCE_NAME\u003c/var\u003e\n Authorization: Bearer [YOUR_ACCESS_TOKEN]\n\nWhere the following values must be specified:\n\n- \u003cvar translate=\"no\"\u003ePROJECT_ID\u003c/var\u003e is your Google Cloud project ID.\n\n- \u003cvar translate=\"no\"\u003eZONE\u003c/var\u003e must be a valid Google Cloud zone that is supported by\n Managed Lustre. See\n [Supported locations](/managed-lustre/docs/locations) for a full list.\n\n- \u003cvar translate=\"no\"\u003eINSTANCE_NAME\u003c/var\u003e is the name of the Managed Lustre\n instance to return.\n\nDelete an instance\n------------------\n\nTo delete an instance: \n\n### Google Cloud console\n\n1. Go to the **Managed Lustre** page in the Google Cloud console.\n\n [Go to Managed Lustre](https://console.cloud.google.com/managed-lustre/)\n2. Select the three-dot menu next to the instance to delete.\n\n3. Select **Delete instance** . Confirm the deletion by clicking **Delete**\n again.\n\n### gcloud CLI\n\n gcloud lustre instances delete \u003cvar translate=\"no\"\u003eINSTANCE_NAME\u003c/var\u003e --location=\u003cvar translate=\"no\"\u003eLOCATION\u003c/var\u003e\n\nYou are prompted to confirm deletion. Type `Y` or press enter to continue.\n| **Tip:** Specifying the `--quiet` or `-q` flag with the command skips the interactive confirmation requirement.\n\n### REST\n\nTo delete an instance using the REST API, send a request to the following\nendpoint: \n\n DELETE https://lustre.googleapis.com/v1/projects/\u003cvar translate=\"no\"\u003ePROJECT_ID\u003c/var\u003e/locations/\u003cvar translate=\"no\"\u003eZONE\u003c/var\u003e/instances/\u003cvar translate=\"no\"\u003eINSTANCE_NAME\u003c/var\u003e\n Authorization: Bearer [YOUR_ACCESS_TOKEN]\n\nWhere the following values must be specified:\n\n- \u003cvar translate=\"no\"\u003ePROJECT_ID\u003c/var\u003e is your Google Cloud project ID.\n\n- \u003cvar translate=\"no\"\u003eZONE\u003c/var\u003e is the Google Cloud zone in which the instance is located.\n\n- \u003cvar translate=\"no\"\u003eINSTANCE_NAME\u003c/var\u003e is the name of the Managed Lustre\n instance to delete.\n\nDelete requests are long-running requests, and return an operation ID that\ncan be queried for operation status. See the\n[operations.get](/managed-lustre/docs/reference/rest/v1/projects.locations.operations/get) reference for details."]]