Mod 4 - Understanding Azure PaaS Compute Option Flashcards
App Services definition
HTTP-based Azure resource you use to host web workloads, REST APIs, and mobile back ends. ex. API. Handles deploying code and making it useable by customers
what is WebJobs app service type
run a program (.exe, Java, PHP, Python, or Node.js) or script (.cmd, .bat, PowerShell, or Bash) in the same context as a web app, API app, or mobile app
what is Mobile app service type
Mobile Apps feature of App Service to quickly build a back end for iOS and Android apps. With just a few actions in the Azure portal, you can:
* Store mobile app data in a cloud-based SQL database.
* Authenticate customers against common social providers, such as MSA, Google, Twitter, and Facebook.
* Send push notifications.
* Execute custom back-end logic in C# or Node.js.
Types of app services
- Web apps
- API apps
- WebJobs
- Mobile apps
App Service Plan
Azure resource that manages running the app service, gets deployed with AppSVC . Like a VM that provides compute services ex. CPU or RAM
Can you assign multiple AppSVC’s to one ASP?
Yes
What is the public address name format for Appsvc
- Appsvc comes with public address name ex. Appsvc_name.azurewebsites.net / knoxtest.azurewebsites.net
what is Custom Domains/SSL deploy option for appsvc?
bring your own domain or SSL certs
Logic Apps definition
: Azure resource that provides No code solution for deploying workflow of applications and automating business workloads
Logic apps example
Ex. Create a logic to send tweet if you get slack message
Can you integrate with non-MS apps
No
Benefits of Azure Functions
- No infrastructure mngmt
- Scalability: automatic config depending on demand
- Only pay what you use
2 types of functions
Stateless: (the default), they behave as if they’re restarted every time they respond to an event.
stateful (called Durable Functions), a context is passed through the function to track prior activity.
Function Apps
Tiny bits of code that we write and triggers when an event happens, ex. API endpoint get message. Pricing works same as Logic app either App Service Plan or Consumption model.
do you manage the operating system for a container like on a VM
No