Complete the code to create a custom domain mapping in Google Cloud App Engine.
gcloud app domain-mappings create [1] --certificate-management=autoThe command requires the custom domain name to create the mapping, such as example.com.
Complete the code to verify domain ownership using Google Cloud CLI.
gcloud domains verify [1]You must specify the domain name you want to verify ownership for, such as example.com.
Fix the error in the command to list domain mappings for your app.
gcloud app domain-mappings [1]The correct command to list domain mappings is gcloud app domain-mappings list.
Fill both blanks to create a domain mapping with a specific SSL certificate.
gcloud app domain-mappings create [1] --certificate-id=[2]
You specify your custom domain and the SSL certificate ID to secure the domain.
Fill all three blanks to update a domain mapping to use managed SSL and specify the domain.
gcloud app domain-mappings update [1] --certificate-management=[2] --project=[3]
You update the domain mapping for your domain to use automatic certificate management in your specific project.