Maintenance Announcement Offerings
Operations Summary
| Method | Endpoint | Description |
|---|---|---|
| GET | /api/maintenance-announcement-offerings/ |
List affected offerings for maintenance |
| GET | /api/maintenance-announcement-offerings/{uuid}/ |
Retrieve an affected offering link |
| POST | /api/maintenance-announcement-offerings/ |
Link an offering to a maintenance announcement |
| PUT | /api/maintenance-announcement-offerings/{uuid}/ |
Update an affected offering link |
| PATCH | /api/maintenance-announcement-offerings/{uuid}/ |
Partially update an affected offering link |
| DELETE | /api/maintenance-announcement-offerings/{uuid}/ |
Unlink an offering from a maintenance announcement |
List affected offerings for maintenance
Returns a paginated list of offerings affected by maintenance announcements.
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 | |
- API Source:
maintenance_announcement_offerings_list
1 2 3 4 5 6 7 8 9 10 | |
| Name | Type | Description |
|---|---|---|
page |
integer | A page number within the paginated result set. |
page_size |
integer | Number of results to return per page. |
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 |
string (uri) | |
offering |
string (uri) | |
impact_level |
any | Expected impact on this offering |
impact_level_display |
any | |
impact_description |
string | Specific description of how this offering will be affected |
offering_name |
string |
Retrieve an affected offering link
Returns the details of a specific link between a maintenance announcement and an offering, including the impact level and description.
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
- API Source:
maintenance_announcement_offerings_retrieve
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 |
string (uri) | |
offering |
string (uri) | |
impact_level |
any | Expected impact on this offering |
impact_level_display |
any | |
impact_description |
string | Specific description of how this offering will be affected |
offering_name |
string |
Link an offering to a maintenance announcement
Creates a new association between an offering and a maintenance announcement, specifying the expected impact.
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:
MaintenanceAnnouncementOfferingRequest - API Source:
maintenance_announcement_offerings_create
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | |
| Field | Type | Required | Description |
|---|---|---|---|
maintenance |
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 |
string (uri) | |
offering |
string (uri) | |
impact_level |
any | Expected impact on this offering |
impact_level_display |
any | |
impact_description |
string | Specific description of how this offering will be affected |
offering_name |
string |
Update an affected offering link
Updates the impact level or description for an offering linked to a maintenance announcement.
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:
MaintenanceAnnouncementOfferingRequest - API Source:
maintenance_announcement_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 |
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 |
string (uri) | |
offering |
string (uri) | |
impact_level |
any | Expected impact on this offering |
impact_level_display |
any | |
impact_description |
string | Specific description of how this offering will be affected |
offering_name |
string |
Partially update an affected offering link
Partially updates the impact level or description for an offering linked to a maintenance announcement.
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | |
- Model Source:
PatchedMaintenanceAnnouncementOfferingRequest - API Source:
maintenance_announcement_offerings_partial_update
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
| Field | Type | Required | Description |
|---|---|---|---|
maintenance |
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 |
string (uri) | |
offering |
string (uri) | |
impact_level |
any | Expected impact on this offering |
impact_level_display |
any | |
impact_description |
string | Specific description of how this offering will be affected |
offering_name |
string |
Unlink an offering from a maintenance announcement
Removes the association between an offering and a maintenance announcement.
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
- API Source:
maintenance_announcement_offerings_destroy
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
204 - No response body