Cloud Service Types Flashcards
1
Q
Why are the most important/popular types of Cloud Services?
A
- Infrastructure as a Service (IaaS)
- Platform as a Service (PaaS)
- Software as a Service (SaaS)
2
Q
What does “as a Service” entail?
A
- you can rent it for a short time, if you wish instead of buying it
- no commitment if you wish
- Pay for what you use (time, gb, or other)
- Cloud providers takes of care of buying, developing and maintaining it
3
Q
Describe Iaas
A
- essentials services of technology
- > Computing
- > Storage
- > Networking
- generally have “real world” equivalents in your own center
- cloud replacements of the real world
4
Q
Describe IaaS Computing
A
- one example is Azure Virtual Machines
- pay by the seconds
- many choices in CPU needs, RAM and optimization
5
Q
Describe IaaS Networking
A
- Virtual Networking is an example of this
- virtual Networks don’t cost anything
- There are ingress and egress bandwith costs
5
Q
Describe IaaS Storage
A
- one example: Azure Storage
- 5 PB of storage capacity
- can handle blocks, files queues and tables
- can also be configured as a data lake
6
Q
Describe Paas
A
- cloud service providers provide more than just “basic” infrastructure
- includeds service layer on top of IaaS - computing, sotrage and networking
- middleware, development tools, database server and more
7
Q
Describe PaaS Computing
A
- example: Azure App Services
- simply upload your code and configuration to Azure and it runs your code without you needing to woorry about the vm underneath
- includes scaling features, CI/CD, containers, staging and development environments
8
Q
What is Pass Storage?
A
- Examples: Managed Stores/Azure SQL Database
- freed frin worrying about the server vm itself or the hard disk itself
9
Q
What is PaaS Networking?
A
- example: Azure Front Door
- or Load Balancer
- software applications that perform netwokring tasks
10
Q
What is SaaS
A
- full fledged apps
- Cloud apps
- Tools such as Office 365, OneDrive, Skype
- app is ready to be used and you simply need to set it up
11
Q
What is “Serverless”?
A
- effectively a pricing model
- some services in Azure offer a “serverless”-option
- paying for service not renting hardware
- there are servers but you don’t pick or care about them
- scales automatically with demand
- much harder to calculate cost because of dynamic nature
- can also spin down to zero when it is not used
- example: Azure Function
12
Q
Which Cloud Service Type is a complete Development and deployment environment in the cloud?
What part of the application lifecycle does it support?
A
- Platform as A Service
- supports whole web application lifecycle:
- building, testing, deploying, managing and updating