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 ,
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