mirror of
https://github.com/imjasonh/gcloud-help
synced 2026-07-13 00:18:35 +00:00
50 lines
1.8 KiB
Text
50 lines
1.8 KiB
Text
NAME
|
|
gcloud alpha sql users describe - retrieves information about a Cloud SQL
|
|
user in a given instance
|
|
|
|
SYNOPSIS
|
|
gcloud alpha sql users describe USERNAME --instance=INSTANCE, -i INSTANCE
|
|
[--host=HOST] [GCLOUD_WIDE_FLAG ...]
|
|
|
|
DESCRIPTION
|
|
(ALPHA) Retrieves information about a Cloud SQL user in a given instance.
|
|
|
|
EXAMPLES
|
|
To fetch a user with name 'my-user' and optional host '%' in instance
|
|
'my-instance', run:
|
|
|
|
$ gcloud alpha sql users describe my-user --host=% \
|
|
--instance=my-instance
|
|
|
|
POSITIONAL ARGUMENTS
|
|
USERNAME
|
|
Cloud SQL username.
|
|
|
|
REQUIRED FLAGS
|
|
--instance=INSTANCE, -i INSTANCE
|
|
Cloud SQL instance ID.
|
|
|
|
OPTIONAL FLAGS
|
|
--host=HOST
|
|
Cloud SQL user's host name expressed as a specific IP address or
|
|
address range. % denotes an unrestricted host name. Applicable flag for
|
|
MySQL instances; ignored for all other engines. Note, if you connect to
|
|
your instance using IP addresses, you must add your client IP address
|
|
as an Authorized Address, even if your host name is unrestricted. For
|
|
help on how to do so, read:
|
|
https://cloud.google.com/sql/docs/mysql/configure-ip
|
|
|
|
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.
|
|
|
|
NOTES
|
|
This command is currently in alpha and might change without notice. If this
|
|
command fails with API permission errors despite specifying the correct
|
|
project, you might be trying to access an API with an invitation-only early
|
|
access allowlist.
|
|
|