mirror of
https://github.com/imjasonh/gcloud-help
synced 2026-07-08 10:35:03 +00:00
gcloud: Wed Feb 1 11:38:52 UTC 2023
This commit is contained in:
parent
6dc17bdd4a
commit
fc11b54760
173 changed files with 5650 additions and 253 deletions
50
gcloud/sql/users/describe
Normal file
50
gcloud/sql/users/describe
Normal file
|
|
@ -0,0 +1,50 @@
|
|||
NAME
|
||||
gcloud sql users describe - retrieves information about a Cloud SQL user in
|
||||
a given instance
|
||||
|
||||
SYNOPSIS
|
||||
gcloud sql users describe USERNAME --instance=INSTANCE, -i INSTANCE
|
||||
[--host=HOST] [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
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 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 hostname expressed as a specific IP address or address
|
||||
range. % denotes an unrestricted hostname. 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 hostname is unrestricted. For more
|
||||
information, see Configure IP
|
||||
(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
|
||||
These variants are also available:
|
||||
|
||||
$ gcloud alpha sql users describe
|
||||
|
||||
$ gcloud beta sql users describe
|
||||
|
||||
|
|
@ -22,6 +22,9 @@ COMMANDS
|
|||
delete
|
||||
Deletes a Cloud SQL user in a given instance.
|
||||
|
||||
describe
|
||||
Retrieves information about a Cloud SQL user in a given instance.
|
||||
|
||||
list
|
||||
Lists Cloud SQL users in a given instance.
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue