Request to teardown for orphaned deployment of deleted AI Studio project ASAP

Hello, I accidentally deleted my AI Studio project before unpublishing the app. The site is still live, but the project is gone from my dashboard. Can you please manually tear down this deployment and release the custom subdomain?

Orphaned URL: https://kriti-plywood-interior-solutions.ai.studio"

Hello @Brijesh_Singh ,

  • You need to manually delete the cloud run service by going to the GCP console. Follow the below steps:

    • Go to Cloud run services here: https://console.cloud.google.com/run/services. Do not click on the cloud run instance, stay on the services page. Make sure you are in the right GCP project.

    • Select the service corresponding to the AI Studio App.

    • Delete the service.

  • Reference Screenshot:

Post this, both the service and the URL should stop serving.

Dear Mahesh,
Thank you for quick reply, I have followed the instruction, however under services I can NOT see project listed , below is screenshot , help me further please

My Google AI Studio App

If the service is not visible, verify that you have selected the exact GCP project used during AIS deployment.

Alternatively, you can delete both resources using gcloud (or via Cloud Shell >_ in the top right of the GCP Console):

# 1. Delete Cloud Run service
gcloud run services delete <SERVICE_NAME> --region=<REGION> --project=<GCP_PROJECT_ID>

# 2. Delete domain mapping
gcloud beta run domain-mappings delete --domain=<DOMAIN_NAME> --region=<REGION> --project=<GCP_PROJECT_ID>

Example:

gcloud run services delete kriti-plywood-interior-solutions --region=asia-southeast1 --project=YOUR_PROJECT_ID
gcloud beta run domain-mappings delete --domain=kriti-plywood-interior-solutions.ai.studio --region=asia-southeast1 --project=YOUR_PROJECT_ID