mirror of
https://github.com/imjasonh/gcloud-help
synced 2026-07-09 02:55:19 +00:00
gcloud: Wed Jul 13 09:59:37 UTC 2022
This commit is contained in:
parent
cf5ab60e4a
commit
879929cbc6
323 changed files with 7203 additions and 4178 deletions
|
|
@ -299,14 +299,12 @@ FLAGS
|
|||
implies that complexity check is not enabled.
|
||||
|
||||
--[no-]password-policy-disallow-username-substring
|
||||
Disallow username as a part of the password. This flag is available
|
||||
only for PostgreSQL. Use --password-policy-disallow-username-substring
|
||||
to enable and --no-password-policy-disallow-username-substring to
|
||||
disable.
|
||||
Disallow username as a part of the password. Use
|
||||
--password-policy-disallow-username-substring to enable and
|
||||
--no-password-policy-disallow-username-substring to disable.
|
||||
|
||||
--password-policy-min-length=PASSWORD_POLICY_MIN_LENGTH
|
||||
Minimum number of characters allowed in the password. This flag is
|
||||
available only for PostgreSQL.
|
||||
Minimum number of characters allowed in the password.
|
||||
|
||||
--password-policy-password-change-interval=PASSWORD_POLICY_PASSWORD_CHANGE_INTERVAL
|
||||
Minimum interval after which the password can be changed, for example,
|
||||
|
|
@ -316,7 +314,7 @@ FLAGS
|
|||
|
||||
--password-policy-reuse-interval=PASSWORD_POLICY_REUSE_INTERVAL
|
||||
Number of previous passwords that cannot be reused. The valid range is
|
||||
0 to 100. This flag is available only for PostgreSQL.
|
||||
0 to 100.
|
||||
|
||||
--replica-type=REPLICA_TYPE
|
||||
The type of replica to create. REPLICA_TYPE must be one of: READ,
|
||||
|
|
|
|||
|
|
@ -246,14 +246,12 @@ FLAGS
|
|||
implies that complexity check is not enabled.
|
||||
|
||||
--[no-]password-policy-disallow-username-substring
|
||||
Disallow username as a part of the password. This flag is available
|
||||
only for PostgreSQL. Use --password-policy-disallow-username-substring
|
||||
to enable and --no-password-policy-disallow-username-substring to
|
||||
disable.
|
||||
Disallow username as a part of the password. Use
|
||||
--password-policy-disallow-username-substring to enable and
|
||||
--no-password-policy-disallow-username-substring to disable.
|
||||
|
||||
--password-policy-min-length=PASSWORD_POLICY_MIN_LENGTH
|
||||
Minimum number of characters allowed in the password. This flag is
|
||||
available only for PostgreSQL.
|
||||
Minimum number of characters allowed in the password.
|
||||
|
||||
--password-policy-password-change-interval=PASSWORD_POLICY_PASSWORD_CHANGE_INTERVAL
|
||||
Minimum interval after which the password can be changed, for example,
|
||||
|
|
@ -263,7 +261,7 @@ FLAGS
|
|||
|
||||
--password-policy-reuse-interval=PASSWORD_POLICY_REUSE_INTERVAL
|
||||
Number of previous passwords that cannot be reused. The valid range is
|
||||
0 to 100. This flag is available only for PostgreSQL.
|
||||
0 to 100.
|
||||
|
||||
--pricing-plan=PRICING_PLAN, -p PRICING_PLAN
|
||||
First Generation instances only. The pricing plan for this instance.
|
||||
|
|
|
|||
|
|
@ -6,6 +6,7 @@ SYNOPSIS
|
|||
[--async] [--host=HOST] [--password=PASSWORD]
|
||||
[--password-policy-allowed-failed-attempts=PASSWORD_POLICY_ALLOWED_FAILED_ATTEMPTS]
|
||||
[--[no-]password-policy-enable-failed-attempts-check]
|
||||
[--[no-]password-policy-enable-password-verification]
|
||||
[--password-policy-password-expiration-duration=PASSWORD_POLICY_PASSWORD_EXPIRATION_DURATION]
|
||||
[--type=TYPE] [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
|
|
@ -40,18 +41,24 @@ OPTIONAL FLAGS
|
|||
|
||||
--password-policy-allowed-failed-attempts=PASSWORD_POLICY_ALLOWED_FAILED_ATTEMPTS
|
||||
Number of failed login attempts allowed before a user is locked out.
|
||||
This flag is currently not available.
|
||||
This flag is available only for MySQL.
|
||||
|
||||
--[no-]password-policy-enable-failed-attempts-check
|
||||
Enables the failed login attempts check if set to true. This flag is
|
||||
currently not available. Use
|
||||
available only for MySQL. Use
|
||||
--password-policy-enable-failed-attempts-check to enable and
|
||||
--no-password-policy-enable-failed-attempts-check to disable.
|
||||
|
||||
--[no-]password-policy-enable-password-verification
|
||||
The current password must be specified when altering the password. This
|
||||
flag is available only for MySQL. Use
|
||||
--password-policy-enable-password-verification to enable and
|
||||
--no-password-policy-enable-password-verification to disable.
|
||||
|
||||
--password-policy-password-expiration-duration=PASSWORD_POLICY_PASSWORD_EXPIRATION_DURATION
|
||||
Expiration duration after a password is updated, for example, 2m for 2
|
||||
minutes. See gcloud topic datetimes for information on duration
|
||||
formats. This flag is currently not available.
|
||||
Expiration duration after a password is updated, for example, 2d for 2
|
||||
days. See gcloud topic datetimes for information on duration formats.
|
||||
This flag is available only for MySQL.
|
||||
|
||||
--type=TYPE
|
||||
Cloud SQL user's type. It determines the method to authenticate the
|
||||
|
|
|
|||
|
|
@ -5,6 +5,7 @@ NAME
|
|||
SYNOPSIS
|
||||
gcloud beta sql users set-password USERNAME --instance=INSTANCE, -i
|
||||
INSTANCE [--async] [--host=HOST]
|
||||
[--discard-dual-password | --retain-password]
|
||||
[--password=PASSWORD | --prompt-for-password] [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
|
|
@ -33,6 +34,16 @@ OPTIONAL FLAGS
|
|||
help on how to do so, read:
|
||||
https://cloud.google.com/sql/docs/mysql/configure-ip
|
||||
|
||||
At most one of these can be specified:
|
||||
|
||||
--discard-dual-password
|
||||
Discard the user's secondary password. Cannot set password and set
|
||||
this flag. This flag is only available for MySQL 8.0.
|
||||
|
||||
--retain-password
|
||||
Retain the old password when changing to the new password. Must set
|
||||
password with this flag. This flag is only available for MySQL 8.0.
|
||||
|
||||
At most one of these can be specified:
|
||||
|
||||
--password=PASSWORD
|
||||
|
|
|
|||
|
|
@ -7,6 +7,7 @@ SYNOPSIS
|
|||
INSTANCE [--async] [--clear-password-policy] [--host=HOST]
|
||||
[--password-policy-allowed-failed-attempts=PASSWORD_POLICY_ALLOWED_FAILED_ATTEMPTS]
|
||||
[--[no-]password-policy-enable-failed-attempts-check]
|
||||
[--[no-]password-policy-enable-password-verification]
|
||||
[--password-policy-password-expiration-duration=PASSWORD_POLICY_PASSWORD_EXPIRATION_DURATION]
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
|
|
@ -56,18 +57,24 @@ OPTIONAL FLAGS
|
|||
|
||||
--password-policy-allowed-failed-attempts=PASSWORD_POLICY_ALLOWED_FAILED_ATTEMPTS
|
||||
Number of failed login attempts allowed before a user is locked out.
|
||||
This flag is currently not available.
|
||||
This flag is available only for MySQL.
|
||||
|
||||
--[no-]password-policy-enable-failed-attempts-check
|
||||
Enables the failed login attempts check if set to true. This flag is
|
||||
currently not available. Use
|
||||
available only for MySQL. Use
|
||||
--password-policy-enable-failed-attempts-check to enable and
|
||||
--no-password-policy-enable-failed-attempts-check to disable.
|
||||
|
||||
--[no-]password-policy-enable-password-verification
|
||||
The current password must be specified when altering the password. This
|
||||
flag is available only for MySQL. Use
|
||||
--password-policy-enable-password-verification to enable and
|
||||
--no-password-policy-enable-password-verification to disable.
|
||||
|
||||
--password-policy-password-expiration-duration=PASSWORD_POLICY_PASSWORD_EXPIRATION_DURATION
|
||||
Expiration duration after a password is updated, for example, 2m for 2
|
||||
minutes. See gcloud topic datetimes for information on duration
|
||||
formats. This flag is currently not available.
|
||||
Expiration duration after a password is updated, for example, 2d for 2
|
||||
days. See gcloud topic datetimes for information on duration formats.
|
||||
This flag is available only for MySQL.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --access-token-file, --account,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue