An enterprise operations team is managing a mission-critical containerized microservice named `payment-service` deployed on Cloud Run. Security policy mandates two strict operational requirements:
1. The service must block direct public internet access and only accept inbound requests routed through an internal Application Load Balancer or internal VPC resources.
2. All outbound requests made by container instances to external third-party payment gateways must egress through a static, reserved IP address using a Cloud NAT instance attached to the company's Virtual Private Cloud (VPC).
Which TWO configuration settings or `gcloud run services update` command flags must be configured on the Cloud Run resource to meet these security requirements? (Select TWO.)
- Configure `--ingress=internal-and-cloud-load-balancing` on the Cloud Run service.Answer
- Configure `--vpc-egress=all-traffic` alongside a VPC connector or Direct VPC egress.Answer
- CConfigure `--ingress=internal` and grant the primitive `roles/viewer` role to `allUsers` on the Cloud Run service.
- DConfigure `--vpc-egress=private-ranges-only` to ensure outbound internet calls bypass VPC routing and execute faster.