rest - Azure HTTPS POST and GET -


i new user of azure platform, , having trouble understanding how differents parts conected. have data in storage blob use make https post requests web service. question therfore follows: how can send data azure storage blob rest api endpoint?

first, let's start little background:

azure resource manager (arm)

arm rest api interface with, using azure portal, powershell module, or cross-platform (xplat) cli tool, in order provision , manage cloud resources inside azure subscription (account). in order provision resources, must first create resource group, management container various cloud resource instances.

azure storage (blob)

microsoft azure storage offers several different services:

  • blob (unstructured, flat data storage)
  • files (cloud-based smb share azure vms)
  • queue (fifo / lifo queues, similar azure service bus)
  • table (nosql partitioned storage)

of these types of storage, blob storage arguably common. in order utilize of these storage services, must first provision storage account inside arm resource group (see above). utilize blob storage, create blob container inside storage account, , create or upload blobs container(s). once data stored in azure blob container, not move unless service explicitly requests data.

azure app service

if you're deploying web app (with front end) or rest api app (no front end), you'll using microsoft azure's app service offering. 1 unique feature of azure app service's web app (i know, it's mouthful) offering webjobs. webjobs allow run arbitrary code in cloud, kind of background worker process. can trigger webjobs when blobs created or uploaded, using this document.

essentially, use [blobtrigger()] .net attribute, azure webjobs sdk, designate code executed inside azure webjobs whenever new blob created. code executes grab blob data, , send off rest api endpoint.


Comments

Popular posts from this blog

php - Wordpress website dashboard page or post editor content is not showing but front end data is showing properly -

How to get the ip address of VM and use it to configure SSH connection dynamically in Ansible -

javascript - Get parameter of GET request -