NAME
    gcloud beta metastore services restore - restore a Dataproc Metastore
        service

SYNOPSIS
    gcloud beta metastore services restore (SERVICE : --location=LOCATION)
        (--backup=BACKUP | --backup-location=BACKUP_LOCATION) [--async]
        [--restore-type=RESTORE_TYPE; default="metadata-only"]
        [GCLOUD_WIDE_FLAG ...]

DESCRIPTION
    (BETA) Restore a Dataproc Metastore service from the given backup or
    backup-location

    If run asynchronously with --async, exits after printing an operation name
    that can be used to poll the status of the creation via:

        gcloud metastore operations describe

EXAMPLES
    To restore a Dataproc Metastore service with the name my-service from the
    backup my-backup with a FULL restore type, run:

        $ gcloud beta metastore services restore my-service \
          --backup=my-backup --restore-type=full

    To restore a Dataproc Metastore service with the name my-service from the
    backup-location gs://gcs_bucket with a FULL restore type, run:

        $ gcloud beta metastore services restore my-service \
          --backup-location=gs://gcs_bucket --restore-type=full

POSITIONAL ARGUMENTS
     Service resource - Arguments and flags that specify the Dataproc Metastore
     service you want to restore. The arguments in this group can be used to
     specify the attributes of this resource. (NOTE) Some attributes are not
     given arguments in this group but can be set in other ways.

     To set the project attribute:
      ◆ provide the argument service on the command line with a fully
        specified name;
      ◆ provide the argument --project on the command line;
      ◆ set the property core/project.

     This must be specified.

       SERVICE
          ID of the service or fully qualified identifier for the service.

          To set the service attribute:
          ▸ provide the argument service on the command line.

          This positional argument must be specified if any of the other
          arguments in this group are specified.

       --location=LOCATION
          The location of the Dataproc Metastore service.

          If not specified, will use default metastore/location.

          To set the location attribute:
          ▸ provide the argument service on the command line with a fully
            specified name;
          ▸ provide the argument --location on the command line;
          ▸ set the property metastore/location.

REQUIRED FLAGS
     The backup resource or the location of the backup artifacts to store from.

     Exactly one of these must be specified:

       --backup=BACKUP
          The backup resource to restore from. This can be the backup's ID,
          fully-qualified URL, or relative name in the form
          projects/{project_id}/locations/{location_id}/services/{service_id}/backups/{backup_id}.

       --backup-location=BACKUP_LOCATION
          The location of the backup artifacts to restore from. This should be
          a Cloud Storage URI, contains backup avro files under "avro/",
          backup_metastore.json and service.json, in the form
          gs://<path_to_backup>.

OPTIONAL FLAGS
     --async
        Return immediately, without waiting for the operation in progress to
        complete.

     --restore-type=RESTORE_TYPE; default="metadata-only"
        The type of restore to perform. RESTORE_TYPE must be one of:

         full
            The service's metadata and configuration are restored.

         metadata-only
            Only the service's metadata is restored.

GCLOUD WIDE FLAGS
    These flags are available to all commands: --access-token-file, --account,
    --billing-project, --configuration, --flags-file, --flatten, --format,
    --help, --impersonate-service-account, --log-http, --project, --quiet,
    --trace-token, --user-output-enabled, --verbosity.

    Run $ gcloud help for details.

API REFERENCE
    This command uses the metastore/v1beta API. The full documentation for this
    API can be found at: https://cloud.google.com/dataproc-metastore/docs

NOTES
    This command is currently in beta and might change without notice. These
    variants are also available:

        $ gcloud metastore services restore

        $ gcloud alpha metastore services restore

