
Google Associate Cloud Engineer
Get started today
Ultimate access to all questions.
Your application is currently running in the App Engine standard environment, and you wish to enhance its functionality by adding a custom C# library. However, C# is not supported by App Engine standard. You aim to keep your application serverless. What are the two best actions to take?
Your application is currently running in the App Engine standard environment, and you wish to enhance its functionality by adding a custom C# library. However, C# is not supported by App Engine standard. You aim to keep your application serverless. What are the two best actions to take?
Explanation:
App Engine standard supports Python, Java, Node.js, PHP, Ruby, and Go, but not C#. To maintain serverless functionality while using C#, you can containerize your application and deploy it to Cloud Run or Cloud Run on GKE. These options abstract away infrastructure management, aligning with serverless principles. Deploying to Google Cloud Functions is not suitable as it also doesn't support C#. App Engine flexible and Google Kubernetes Engine are not serverless options. Cloud Run and Cloud Run on GKE are the correct choices for maintaining serverless functionality with C#.