Bundle code serving

This commit is contained in:
Denis Arh
2020-01-22 18:07:49 +01:00
parent b9cd860bf2
commit b89b1d1056
14 changed files with 359 additions and 0 deletions
+19
View File
@@ -116,6 +116,7 @@
| Method | Endpoint | Purpose |
| ------ | -------- | ------- |
| `GET` | `/automation/` | List all available automation scripts for compose resources |
| `GET` | `/automation/{bundle}-{type}.{ext}` | Serves client scripts bundle |
| `POST` | `/automation/trigger` | Triggers execution of a specific script on a system service level |
## List all available automation scripts for compose resources
@@ -139,6 +140,24 @@ Warning: implode(): Invalid arguments passed in /private/tmp/Users/darh/Work.cru
| excludeClientScripts | bool | GET | Do not include client scripts | N/A | NO |
| excludeServerScripts | bool | GET | Do not include server scripts | N/A | NO |
## Serves client scripts bundle
#### Method
| URI | Protocol | Method | Authentication |
| --- | -------- | ------ | -------------- |
| `/automation/{bundle}-{type}.{ext}` | HTTP/S | GET |
Warning: implode(): Invalid arguments passed in /private/tmp/Users/darh/Work.crust/corteza-server/codegen/templates/README.tpl on line 32
|
#### Request parameters
| Parameter | Type | Method | Description | Default | Required? |
| --------- | ---- | ------ | ----------- | ------- | --------- |
| bundle | string | PATH | Name of the bundle | N/A | NO |
| type | string | PATH | Bundle type | N/A | NO |
| ext | string | PATH | Bundle extension | N/A | NO |
## Triggers execution of a specific script on a system service level
#### Method
+19
View File
@@ -320,6 +320,7 @@
| Method | Endpoint | Purpose |
| ------ | -------- | ------- |
| `GET` | `/automation/` | List all available automation scripts for system resources |
| `GET` | `/automation/{bundle}-{type}.{ext}` | Serves client scripts bundle |
| `POST` | `/automation/trigger` | Triggers execution of a specific script on a system service level |
## List all available automation scripts for system resources
@@ -343,6 +344,24 @@ Warning: implode(): Invalid arguments passed in /private/tmp/Users/darh/Work.cru
| excludeClientScripts | bool | GET | Do not include client scripts | N/A | NO |
| excludeServerScripts | bool | GET | Do not include server scripts | N/A | NO |
## Serves client scripts bundle
#### Method
| URI | Protocol | Method | Authentication |
| --- | -------- | ------ | -------------- |
| `/automation/{bundle}-{type}.{ext}` | HTTP/S | GET |
Warning: implode(): Invalid arguments passed in /private/tmp/Users/darh/Work.crust/corteza-server/codegen/templates/README.tpl on line 32
|
#### Request parameters
| Parameter | Type | Method | Description | Default | Required? |
| --------- | ---- | ------ | ----------- | ------- | --------- |
| bundle | string | PATH | Name of the bundle | N/A | NO |
| type | string | PATH | Bundle type | N/A | NO |
| ext | string | PATH | Bundle extension | N/A | NO |
## Triggers execution of a specific script on a system service level
#### Method