mirror of
https://github.com/imjasonh/gcloud-help
synced 2026-07-22 15:52:30 +00:00
gcloud: Tue Mar 1 04:29:52 UTC 2022
This commit is contained in:
parent
aab53307a8
commit
1456dab6c7
9791 changed files with 814712 additions and 0 deletions
66
gcloud/beta/app/domain-mappings/help
Normal file
66
gcloud/beta/app/domain-mappings/help
Normal file
|
|
@ -0,0 +1,66 @@
|
|||
NAME
|
||||
gcloud beta app domain-mappings - view and manage your App Engine domain
|
||||
mappings
|
||||
|
||||
SYNOPSIS
|
||||
gcloud beta app domain-mappings COMMAND [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(BETA) This set of commands can be used to view and manage your app's
|
||||
domain mappings.
|
||||
|
||||
App Engine Domain Mappings allow an application to be served via one or
|
||||
many custom domains, such as example.com, instead of the default
|
||||
https://<PROJECT-ID>.<REGION-ID>.r.appspot.com address. You can use a
|
||||
custom domain with or without SSL.
|
||||
|
||||
Use the AUTOMATIC management type to automatically provision an SSL
|
||||
certificate for your domain. Use the MANUAL management type to provide your
|
||||
own certificate or omit SSL.
|
||||
|
||||
EXAMPLES
|
||||
To list your App Engine domains, run:
|
||||
|
||||
$ gcloud beta app domain-mappings list
|
||||
|
||||
To create a domain with an automatically managed certificate, run:
|
||||
|
||||
$ gcloud beta app domain-mappings create 'example.com' \
|
||||
--certificate-management=AUTOMATIC
|
||||
|
||||
To create a domain with a manual certificate, run:
|
||||
|
||||
$ gcloud beta app domain-mappings create 'example.com' \
|
||||
--certificate-management=manual --certificate-id=1234
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --help.
|
||||
|
||||
Run $ gcloud help for details.
|
||||
|
||||
COMMANDS
|
||||
COMMAND is one of the following:
|
||||
|
||||
create
|
||||
(BETA) Creates a domain mapping.
|
||||
|
||||
delete
|
||||
(BETA) Deletes a specified domain mapping.
|
||||
|
||||
describe
|
||||
(BETA) Describes a specified domain mapping.
|
||||
|
||||
list
|
||||
(BETA) Lists domain mappings.
|
||||
|
||||
update
|
||||
(BETA) Updates a domain mapping.
|
||||
|
||||
NOTES
|
||||
This command is currently in beta and might change without notice. These
|
||||
variants are also available:
|
||||
|
||||
$ gcloud app domain-mappings
|
||||
|
||||
$ gcloud alpha app domain-mappings
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue