Complete the code to create a VPC peering connection between two networks.
gcloud compute networks peerings create [1] --network=network-a --peer-network=network-bThe peer-connection-1 is the name of the VPC peering connection you create. It uniquely identifies the peering.
Complete the code to list all VPC peerings in a network.
gcloud compute networks peerings list --network=[1]The network-a is the name of the network whose peerings you want to list.
Fix the error in the command to delete a VPC peering connection.
gcloud compute networks peerings [1] peer-connection-1 --network=network-a
The correct command to delete a VPC peering is delete.
Fill both blanks to create a VPC peering with export and import custom routes enabled.
gcloud compute networks peerings create peer-connection-2 --network=network-x --peer-network=network-y --export-custom-routes=[1] --import-custom-routes=[2]
Both --export-custom-routes and --import-custom-routes flags should be set to true to enable route sharing.
Fill all three blanks to update a VPC peering to disable import and export of custom routes and set the peering name.
gcloud compute networks peerings update [1] --network=[2] --export-custom-routes=[3] --import-custom-routes=[3]
The peering name is peer-connection-3, the network is network-z, and both import and export custom routes are set to false to disable them.