1
0
Fork 0
mirror of https://github.com/imjasonh/gcloud-help synced 2026-07-11 15:39:42 +00:00
gcloud-help/gcloud/looker/instances/help
2023-05-10 11:35:23 +00:00

86 lines
2.2 KiB
Text

NAME
gcloud looker instances - manage Looker instances
SYNOPSIS
gcloud looker instances COMMAND [GCLOUD_WIDE_FLAG ...]
EXAMPLES
To create an instance with the name my-looker-instance, with an edition of
"LOOKER_CORE_STANDARD", run:
$ gcloud looker instances create my-looker-instance \
--oauth-client-id='looker' --oauth-client-secret='looker' \
--edition="core-standard" --async
Note: It is recommended that the --async argument is provided when creating
a Looker instance.
To delete an instance with the name my-looker-instance, run:
$ gcloud looker instances delete my-looker-instance --async
To display the details for an instance with name my-looker-instance, run:
$ gcloud looker instances describe my-looker-instance
To restart an instance with the name my-looker-instance, run:
$ gcloud looker instances restart my-looker-instance --async
To update an instance with the name my-looker-instance, run:
$ gcloud looker instances update my-looker-instance --async
To export an instance with the name my-looker-instance, run:
$ gcloud looker instances export my-looker-instance \
--target-gcs-uri='gs://bucketName/folderName' \
--kms-key='projects/my-project/locations/us-central1/keyRings/my\
-key-ring/cryptoKeys/my-key'
To import an instance with the name my-looker-instance, run:
$ gcloud looker instances import my-looker-instance \
--source-gcs-uri='gs://bucketName/folderName'
To list all the instances, run:
$ gcloud looker instances list
GCLOUD WIDE FLAGS
These flags are available to all commands: --help.
Run $ gcloud help for details.
COMMANDS
COMMAND is one of the following:
create
Create a Looker instance.
delete
Delete a Looker instance.
describe
Show metadata for a Looker.
export
Export a Looker instance.
import
Import a Looker instance.
list
List Looker instances.
restart
Restart a Looker instance.
update
Update a Looker instance.
NOTES
This variant is also available:
$ gcloud alpha looker instances