Maintenance Announcement Template Offerings
Operations Summary
| Method | Endpoint | Description |
|---|---|---|
| GET | /api/maintenance-announcement-template-offerings/ |
List affected offering templates |
| GET | /api/maintenance-announcement-template-offerings/{uuid}/ |
Retrieve an affected offering template link |
| POST | /api/maintenance-announcement-template-offerings/ |
Link an offering to a maintenance template |
| PUT | /api/maintenance-announcement-template-offerings/{uuid}/ |
Update an affected offering template link |
| PATCH | /api/maintenance-announcement-template-offerings/{uuid}/ |
Partially update an affected offering template link |
| DELETE | /api/maintenance-announcement-template-offerings/{uuid}/ |
Unlink an offering from a maintenance template |
List affected offering templates
Returns a paginated list of associations between maintenance announcement templates and offerings.
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 | |
- API Source:
maintenance_announcement_template_offerings_list
1 2 3 4 5 6 7 8 9 10 | |
| Name | Type | Description |
|---|---|---|
impact_level |
integer | Impact level |
maintenance_template_uuid |
string (uuid) | Maintenance template UUID |
o |
array | Ordering |
offering_uuid |
string (uuid) | Offering UUID |
page |
integer | A page number within the paginated result set. |
page_size |
integer | Number of results to return per page. |
service_provider_uuid |
string (uuid) | Service provider UUID |
200 -
The response body is an array of objects, where each object has the following structure:
| Field | Type | Description |
|---|---|---|
url |
string (uri) | |
uuid |
string (uuid) | |
maintenance_template |
string (uri) | |
offering |
string (uri) | |
offering_name |
string | |
offering_uuid |
string (uuid) | |
impact_level |
any | Expected impact on this offering |
impact_description |
string | Specific description of how this offering will be affected |
Retrieve an affected offering template link
Returns the details of a specific link between a maintenance announcement template and an offering.
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
200 -
| Field | Type | Description |
|---|---|---|
url |
string (uri) | |
uuid |
string (uuid) | |
maintenance_template |
string (uri) | |
offering |
string (uri) | |
offering_name |
string | |
offering_uuid |
string (uuid) | |
impact_level |
any | Expected impact on this offering |
impact_description |
string | Specific description of how this offering will be affected |
Link an offering to a maintenance template
Creates a reusable association between an offering and a maintenance announcement template, specifying a default impact level and description.
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:
MaintenanceAnnouncementOfferingTemplateRequest - API Source:
maintenance_announcement_template_offerings_create
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | |
| Field | Type | Required | Description |
|---|---|---|---|
maintenance_template |
string (uri) | ✓ | |
offering |
string (uri) | ✓ | |
impact_level |
any | Expected impact on this offering | |
impact_description |
string | Specific description of how this offering will be affected |
201 -
| Field | Type | Description |
|---|---|---|
url |
string (uri) | |
uuid |
string (uuid) | |
maintenance_template |
string (uri) | |
offering |
string (uri) | |
offering_name |
string | |
offering_uuid |
string (uuid) | |
impact_level |
any | Expected impact on this offering |
impact_description |
string | Specific description of how this offering will be affected |
Update an affected offering template link
Updates the default impact level or description for an offering linked to a maintenance template.
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:
MaintenanceAnnouncementOfferingTemplateRequest - API Source:
maintenance_announcement_template_offerings_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 |
|---|---|---|---|
maintenance_template |
string (uri) | ✓ | |
offering |
string (uri) | ✓ | |
impact_level |
any | Expected impact on this offering | |
impact_description |
string | Specific description of how this offering will be affected |
200 -
| Field | Type | Description |
|---|---|---|
url |
string (uri) | |
uuid |
string (uuid) | |
maintenance_template |
string (uri) | |
offering |
string (uri) | |
offering_name |
string | |
offering_uuid |
string (uuid) | |
impact_level |
any | Expected impact on this offering |
impact_description |
string | Specific description of how this offering will be affected |
Partially update an affected offering template link
Partially updates the default impact level or description for an offering linked to a maintenance template.
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
| Field | Type | Required | Description |
|---|---|---|---|
maintenance_template |
string (uri) | ||
offering |
string (uri) | ||
impact_level |
any | Expected impact on this offering | |
impact_description |
string | Specific description of how this offering will be affected |
200 -
| Field | Type | Description |
|---|---|---|
url |
string (uri) | |
uuid |
string (uuid) | |
maintenance_template |
string (uri) | |
offering |
string (uri) | |
offering_name |
string | |
offering_uuid |
string (uuid) | |
impact_level |
any | Expected impact on this offering |
impact_description |
string | Specific description of how this offering will be affected |
Unlink an offering from a maintenance template
Removes the association between an offering and a maintenance announcement template.
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
204 - No response body