Thanks for reaching out to us, it seems you are working on a private environment, please config the workspace as below -
The error message you're encountering indicates that the process is trying to access a resource that has public access disabled. The error message suggests that you should configure a private endpoint to access the resource. Here's what you can do:
Configure a Private Endpoint: A private endpoint is a network interface within a specific Virtual Network (VNet) and Subnet in Azure. It represents your service in that VNet and allows connectivity only from within that VNet or from peered VNets.
Enable Public Access: If the resource you're trying to access is yours, and you're sure that it's secure to do so, you could enable public access to it. However, this may not be recommended if the resource contains sensitive data or if it's critical for your application's functionality.
Check Access Policies: Make sure that the appropriate access policies are set for the resource you're trying to access.
Check Network Security Group Rules: If you're using Azure Virtual Networks, check the Network Security Group rules to ensure that outbound access to your resource isn't being blocked. Remember that these changes can have security implications, so it's important to understand them fully before implementing. If you're unsure, it's always a good idea to consult with a network or security expert.
Please let me know if this is not your case, we can discuss further.
Regards,
Yutong
-Please kindly accept the answer if you feel helpful to support the community, thanks a lot.