Marketplace Site Agent Identities
Operations Summary
| Method | Endpoint | Description |
|---|---|---|
| Core CRUD | ||
| GET | /api/marketplace-site-agent-identities/ |
List Marketplace Site Agent Identities |
| GET | /api/marketplace-site-agent-identities/{uuid}/ |
Retrieve |
| POST | /api/marketplace-site-agent-identities/ |
Create |
| PUT | /api/marketplace-site-agent-identities/{uuid}/ |
Update |
| DELETE | /api/marketplace-site-agent-identities/{uuid}/ |
Delete |
| Other Actions | ||
| POST | /api/marketplace-site-agent-identities/{uuid}/register_event_subscription/ |
Register event subscription |
| POST | /api/marketplace-site-agent-identities/{uuid}/register_service/ |
Register a new processor or get the existing one for the agent service |
Core CRUD
List Marketplace Site Agent Identities
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 | |
- API Source:
marketplace_site_agent_identities_list
1 2 3 4 5 6 7 8 9 10 | |
| Name | Type | Description |
|---|---|---|
last_restarted |
string (date-time) | Last restarted after |
name |
string | |
offering_uuid |
string (uuid) | |
page |
integer | A page number within the paginated result set. |
page_size |
integer | Number of results to return per page. |
version |
string |
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) | |
offering |
string (uuid) | |
name |
string | |
version |
string | |
dependencies |
any | |
config_file_path |
string | Example: '/etc/waldur/agent.yaml' |
config_file_content |
string | |
last_restarted |
string (date-time) | |
created |
string (date-time) | |
modified |
string (date-time) | |
services |
array of objects | |
services.uuid |
string (uuid) | |
services.url |
string (uri) | |
services.name |
string | |
services.mode |
string | |
services.state |
any | |
services.statistics |
any | |
services.created |
string (date-time) | |
services.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_identities_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) | |
offering |
string (uuid) | |
name |
string | |
version |
string | |
dependencies |
any | |
config_file_path |
string | Example: '/etc/waldur/agent.yaml' |
config_file_content |
string | |
last_restarted |
string (date-time) | |
created |
string (date-time) | |
modified |
string (date-time) | |
services |
array of objects | |
services.uuid |
string (uuid) | |
services.url |
string (uri) | |
services.name |
string | |
services.mode |
string | |
services.state |
any | |
services.statistics |
any | |
services.created |
string (date-time) | |
services.modified |
string (date-time) |
Create
1 2 3 4 5 6 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | |
- Model Source:
AgentIdentityRequest - API Source:
marketplace_site_agent_identities_create
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | |
| Field | Type | Required | Description |
|---|---|---|---|
offering |
string (uuid) | ✓ | |
name |
string | ✓ | |
version |
string | ||
dependencies |
any | ||
config_file_path |
string | Example: '/etc/waldur/agent.yaml' | |
config_file_content |
string | ||
last_restarted |
string (date-time) |
201 -
| Field | Type | Description |
|---|---|---|
uuid |
string (uuid) | |
url |
string (uri) | |
offering |
string (uuid) | |
name |
string | |
version |
string | |
dependencies |
any | |
config_file_path |
string | Example: '/etc/waldur/agent.yaml' |
config_file_content |
string | |
last_restarted |
string (date-time) | |
created |
string (date-time) | |
modified |
string (date-time) | |
services |
array of objects | |
services.uuid |
string (uuid) | |
services.url |
string (uri) | |
services.name |
string | |
services.mode |
string | |
services.state |
any | |
services.statistics |
any | |
services.created |
string (date-time) | |
services.modified |
string (date-time) |
Update
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:
AgentIdentityRequest - API Source:
marketplace_site_agent_identities_update
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 |
|---|---|---|---|
offering |
string (uuid) | ✓ | |
name |
string | ✓ | |
version |
string | ||
dependencies |
any | ||
config_file_path |
string | Example: '/etc/waldur/agent.yaml' | |
config_file_content |
string | ||
last_restarted |
string (date-time) |
200 -
| Field | Type | Description |
|---|---|---|
uuid |
string (uuid) | |
url |
string (uri) | |
offering |
string (uuid) | |
name |
string | |
version |
string | |
dependencies |
any | |
config_file_path |
string | Example: '/etc/waldur/agent.yaml' |
config_file_content |
string | |
last_restarted |
string (date-time) | |
created |
string (date-time) | |
modified |
string (date-time) | |
services |
array of objects | |
services.uuid |
string (uuid) | |
services.url |
string (uri) | |
services.name |
string | |
services.mode |
string | |
services.state |
any | |
services.statistics |
any | |
services.created |
string (date-time) | |
services.modified |
string (date-time) |
Delete
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
- API Source:
marketplace_site_agent_identities_destroy
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
204 - No response body
Other Actions
Register event subscription
Register an event subscription for the specified agent identity and observable object type. Returns existing subscription if already exists.
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:
AgentEventSubscriptionCreateRequest - API Source:
marketplace_site_agent_identities_register_event_subscription
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 |
|---|---|---|---|
observable_object_type |
any | ✓ | The type of object to observe for events |
description |
string | Optional description for the event subscription |
200 -
| Field | Type | Description |
|---|---|---|
uuid |
string (uuid) | |
url |
string (uri) | |
description |
string | |
user |
string (uri) | |
user_uuid |
string (uuid) | |
user_username |
string | Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters |
user_full_name |
string | |
observable_objects |
any | |
created |
string (date-time) | |
modified |
string (date-time) | |
source_ip |
any | An IPv4 or IPv6 address. |
201 -
| Field | Type | Description |
|---|---|---|
uuid |
string (uuid) | |
url |
string (uri) | |
description |
string | |
user |
string (uri) | |
user_uuid |
string (uuid) | |
user_username |
string | Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters |
user_full_name |
string | |
observable_objects |
any | |
created |
string (date-time) | |
modified |
string (date-time) | |
source_ip |
any | An IPv4 or IPv6 address. |
Register a new processor or get the existing one for the agent service
Register a new processor or get the existing one 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:
AgentServiceCreateRequest - API Source:
marketplace_site_agent_identities_register_service
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 |
|---|---|---|
name |
string | ✓ |
mode |
string |
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) |
201 -
| 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) |