1
0
Fork 0
mirror of https://github.com/imjasonh/gcloud-help synced 2026-07-18 06:47:12 +00:00

gcloud: Wed Mar 12 10:54:38 UTC 2025

This commit is contained in:
Automated 2025-03-12 10:54:38 +00:00
parent 6dc93282df
commit a459a88a5f
152 changed files with 2634 additions and 1748 deletions

View file

@ -4,7 +4,7 @@ NAME
SYNOPSIS
gcloud app create [--region=REGION] [--service-account=SERVICE_ACCOUNT]
[GCLOUD_WIDE_FLAG ...]
[--ssl-policy=SSL_POLICY] [GCLOUD_WIDE_FLAG ...]
DESCRIPTION
Create an App Engine app within the current Google Cloud Project.
@ -22,6 +22,10 @@ EXAMPLES
$ gcloud app create --service-account=SERVICE_ACCOUNT
To create an app with minimum SSL policy allowing TLS 1.2 and above, run:
$ gcloud app create --ssl-policy=TLS_VERSION_1_2
FLAGS
--region=REGION
The region to create the app within. Use gcloud app regions list to
@ -37,6 +41,10 @@ FLAGS
https://cloud.google.com/appengine/docs/standard/python3/service-account
outlines the limitation of that service account.
--ssl-policy=SSL_POLICY
The app-level SSL policy to create the app with. SSL_POLICY must be one
of: TLS_VERSION_1_0, TLS_VERSION_1_2.
GCLOUD WIDE FLAGS
These flags are available to all commands: --access-token-file, --account,
--billing-project, --configuration, --flags-file, --flatten, --format,

View file

@ -3,7 +3,8 @@ NAME
SYNOPSIS
gcloud app update [--service-account=SERVICE_ACCOUNT]
[--[no-]split-health-checks] [GCLOUD_WIDE_FLAG ...]
[--[no-]split-health-checks] [--ssl-policy=SSL_POLICY]
[GCLOUD_WIDE_FLAG ...]
DESCRIPTION
This command is used to update settings on an app engine application.
@ -17,6 +18,10 @@ EXAMPLES
$ gcloud app update --service-account=SERVICE_ACCOUNT
To update the app-level minimum SSL policy of the application:
$ gcloud app update --ssl-policy=TLS_VERSION_1_2
FLAGS
--service-account=SERVICE_ACCOUNT
The app-level default service account to update the app with.
@ -26,6 +31,10 @@ FLAGS
--split-health-checks to enable and --no-split-health-checks to
disable.
--ssl-policy=SSL_POLICY
The app-level SSL policy to update the app with. SSL_POLICY must be one
of: TLS_VERSION_1_0, TLS_VERSION_1_2.
GCLOUD WIDE FLAGS
These flags are available to all commands: --access-token-file, --account,
--billing-project, --configuration, --flags-file, --flatten, --format,