-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Associated Flask endpoints with their own dedicated Azure Function
- Loading branch information
hvalfangst
committed
Jan 14, 2024
1 parent
298996a
commit 4063397
Showing
7 changed files
with
115 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
88 changes: 88 additions & 0 deletions
88
postman/Hvalfangst Azure Function Crypto API.postman_collection.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
{ | ||
"info": { | ||
"_postman_id": "edde8ba3-fc1a-43ca-9534-9ff5ec08969e", | ||
"name": "Hvalfangst Azure Function Crypto API", | ||
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json", | ||
"_exporter_id": "29899311" | ||
}, | ||
"item": [ | ||
{ | ||
"name": "Index", | ||
"request": { | ||
"method": "GET", | ||
"header": [], | ||
"url": { | ||
"raw": "https://hvalfangstlinuxfunctionapp.azurewebsites.net/index", | ||
"protocol": "https", | ||
"host": [ | ||
"hvalfangstlinuxfunctionapp", | ||
"azurewebsites", | ||
"net" | ||
], | ||
"path": [ | ||
"index" | ||
] | ||
} | ||
}, | ||
"response": [] | ||
}, | ||
{ | ||
"name": "Encrypt", | ||
"request": { | ||
"method": "POST", | ||
"header": [], | ||
"body": { | ||
"mode": "raw", | ||
"raw": "{\r\n \"plain_text\": \"Goofy on Acid\",\r\n \"encryption_key\": \"ballyr\"\r\n}", | ||
"options": { | ||
"raw": { | ||
"language": "json" | ||
} | ||
} | ||
}, | ||
"url": { | ||
"raw": "https://hvalfangstlinuxfunctionapp.azurewebsites.net/encrypt", | ||
"protocol": "https", | ||
"host": [ | ||
"hvalfangstlinuxfunctionapp", | ||
"azurewebsites", | ||
"net" | ||
], | ||
"path": [ | ||
"encrypt" | ||
] | ||
} | ||
}, | ||
"response": [] | ||
}, | ||
{ | ||
"name": "Decrypt", | ||
"request": { | ||
"method": "POST", | ||
"header": [], | ||
"body": { | ||
"mode": "raw", | ||
"raw": "{\r\n \"encrypted_text\": \"f=\",\r\n \"encryption_key\": \"ballyr\"\r\n}", | ||
"options": { | ||
"raw": { | ||
"language": "json" | ||
} | ||
} | ||
}, | ||
"url": { | ||
"raw": "https://hvalfangstlinuxfunctionapp.azurewebsites.net/decrypt", | ||
"protocol": "https", | ||
"host": [ | ||
"hvalfangstlinuxfunctionapp", | ||
"azurewebsites", | ||
"net" | ||
], | ||
"path": [ | ||
"decrypt" | ||
] | ||
} | ||
}, | ||
"response": [] | ||
} | ||
] | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.