Restores an existing instance's file share from a backup.
The capacity of the instance needs to be equal to or larger than the capacity of the backup (and also equal to or larger than the minimum capacity of the tier).
HTTP request
POST https://file.googleapis.com/v1/{name=projects/*/locations/*/instances/*}:restore
Required. The resource name of the instance, in the format projects/{projectNumber}/locations/{locationId}/instances/{instanceId}.
Request body
The request body contains data with the following structure:
JSON representation
{"fileShare": string,// Union field source can be only one of the following:"sourceBackup": string// End of list of possible types for union field source.}
Fields
fileShare
string
Required. Name of the file share in the Filestore instance that the backup is being restored to.
Union field source.
source can be only one of the following:
sourceBackup
string
The resource name of the backup, in the format projects/{projectNumber}/locations/{locationId}/backups/{backupId}.
Response body
If successful, the response body contains an instance of Operation.
[[["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-01-29 UTC."],[[["This API operation restores a file share from a backup to an existing Filestore instance."],["The instance's capacity must be equal to or larger than the backup's capacity, and meet the minimum tier capacity requirement."],["The request uses a POST method with a specific URL structure as defined by gRPC Transcoding."],["The request body requires specifying the target file share name and the source backup's resource name."],["Successful requests will return an Operation instance, and authorization requires the `https://www.googleapis.com/auth/cloud-platform` OAuth scope."]]],[]]