Marketplace Site Agent Services
Operations Summary
| Method | Endpoint | Description |
|---|---|---|
| Core CRUD | ||
| GET | /api/marketplace-site-agent-services/ |
List Marketplace Site Agent Services |
| GET | /api/marketplace-site-agent-services/{uuid}/ |
Retrieve |
| Other Actions | ||
| POST | /api/marketplace-site-agent-services/{uuid}/register_processor/ |
Register a new processor for the agent service |
| POST | /api/marketplace-site-agent-services/{uuid}/set_statistics/ |
Update statistics for the agent service |
Core CRUD
List Marketplace Site Agent Services
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 | |
- API Source:
marketplace_site_agent_services_list
1 2 3 4 5 6 7 8 9 10 | |
| Name | Type | Description |
|---|---|---|
identity_uuid |
string (uuid) | |
mode |
string | |
page |
integer | A page number within the paginated result set. |
page_size |
integer | Number of results to return per page. |
state |
array |
200 -
The response body is an array of objects, where each object has the following structure:
| Field | Type | Description |
|---|---|---|
uuid |
string (uuid) | |
url |
string (uri) | |
identity |
string (uuid) | |
identity_name |
string | |
name |
string | |
mode |
string | |
state |
any | |
statistics |
any | |
created |
string (date-time) | |
modified |
string (date-time) | |
processors |
array of objects | |
processors.uuid |
string (uuid) | |
processors.url |
string (uri) | |
processors.name |
string | |
processors.last_run |
string (date-time) | |
processors.backend_type |
string | Type of the backend, for example SLURM. |
processors.backend_version |
string | |
processors.created |
string (date-time) | |
processors.modified |
string (date-time) |
Retrieve
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
- API Source:
marketplace_site_agent_services_retrieve
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
200 -
| Field | Type | Description |
|---|---|---|
uuid |
string (uuid) | |
url |
string (uri) | |
identity |
string (uuid) | |
identity_name |
string | |
name |
string | |
mode |
string | |
state |
any | |
statistics |
any | |
created |
string (date-time) | |
modified |
string (date-time) | |
processors |
array of objects | |
processors.uuid |
string (uuid) | |
processors.url |
string (uri) | |
processors.name |
string | |
processors.last_run |
string (date-time) | |
processors.backend_type |
string | Type of the backend, for example SLURM. |
processors.backend_version |
string | |
processors.created |
string (date-time) | |
processors.modified |
string (date-time) |
Other Actions
Register a new processor for the agent service
Register a new processor for the agent service
1 2 3 4 5 6 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | |
- Model Source:
AgentProcessorCreateRequest - API Source:
marketplace_site_agent_services_register_processor
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
| Field | Type | Required | Description |
|---|---|---|---|
name |
string | ✓ | |
backend_type |
string | ✓ | Type of the backend, for example SLURM. |
backend_version |
string |
200 -
| Field | Type | Description |
|---|---|---|
uuid |
string (uuid) | |
url |
string (uri) | |
service |
string (uuid) | |
service_name |
string | |
name |
string | |
last_run |
string (date-time) | |
backend_type |
string | Type of the backend, for example SLURM. |
backend_version |
string | |
created |
string (date-time) | |
modified |
string (date-time) |
201 -
| Field | Type | Description |
|---|---|---|
uuid |
string (uuid) | |
url |
string (uri) | |
service |
string (uuid) | |
service_name |
string | |
name |
string | |
last_run |
string (date-time) | |
backend_type |
string | Type of the backend, for example SLURM. |
backend_version |
string | |
created |
string (date-time) | |
modified |
string (date-time) |
Update statistics for the agent service
Update statistics for the agent service
1 2 3 4 5 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | |
- Model Source:
AgentServiceStatisticsRequest - API Source:
marketplace_site_agent_services_set_statistics
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
| Field | Type | Required | Description |
|---|---|---|---|
statistics |
any | ✓ | Statistics data to be stored for the service |
200 -
| Field | Type | Description |
|---|---|---|
uuid |
string (uuid) | |
url |
string (uri) | |
identity |
string (uuid) | |
identity_name |
string | |
name |
string | |
mode |
string | |
state |
any | |
statistics |
any | |
created |
string (date-time) | |
modified |
string (date-time) | |
processors |
array of objects | |
processors.uuid |
string (uuid) | |
processors.url |
string (uri) | |
processors.name |
string | |
processors.last_run |
string (date-time) | |
processors.backend_type |
string | Type of the backend, for example SLURM. |
processors.backend_version |
string | |
processors.created |
string (date-time) | |
processors.modified |
string (date-time) |