Adding a postman collection with a generic environment file

The full API is modeled in postman and includes placeholders and variables that are taken from
an environment file, and also dynamically generated based on the API responses
This commit is contained in:
Samuel Beaulieu 2022-04-01 12:48:57 -05:00
parent 5b59edce4e
commit 987b777d50
No known key found for this signature in database
GPG key ID: 12030F74136D0F34
4 changed files with 1154 additions and 8 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 474 KiB

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,63 @@
{
"id": "8c770a8b-db0d-4722-82d0-ec06712b9a44",
"name": "vmpooler generic",
"values": [
{
"key": "url",
"value": "https://myserver.com/",
"type": "default",
"enabled": true
},
{
"key": "token",
"value": "",
"type": "default",
"enabled": true
},
{
"key": "api_prefix",
"value": "api/v2",
"type": "default",
"enabled": true
},
{
"key": "ldap_user",
"value": "",
"type": "default",
"enabled": true
},
{
"key": "ldap_pass",
"value": "",
"type": "secret",
"enabled": true
},
{
"key": "ondemand_pool_name",
"value": "",
"type": "default",
"enabled": true
},
{
"key": "pooled_pool_name",
"value": "",
"type": "default",
"enabled": true
},
{
"key": "additional_disk_size",
"value": "8",
"type": "default",
"enabled": true
},
{
"key": "pool_management",
"value": "",
"type": "default",
"enabled": true
}
],
"_postman_variable_scope": "environment",
"_postman_exported_at": "2022-04-01T17:17:09.868Z",
"_postman_exported_using": "Postman/9.15.2"
}