Please enter search query.
Search <book_title>...
Important Update: Cohesity Products Documentation
All Cohesity product documentation are now managed via the Cohesity Docs Portal: https://docs.cohesity.com/HomePage/Content/home.htm. Some documentation available here may not reflect the latest information or may no longer be accessible.
Veritas NetBackup™ Flex Scale Installation and Configuration Guide
Last Published:
2021-01-26
Product(s):
Appliances (1.3)
Platform: NetBackup Flex Scale OS
Performing a patch upgrade using REST APIs
You can perform a patch upgrade using REST APIs.
To download a patch using REST APIs
- Find the list of all the available patches (downloadable/downloaded/installed).
GET /api/appliance/v1.0/upgrade/patches
- Find the summary of a specific patch.
GET /api/appliance/v1.0/upgrade/patches/{patchName} - (Optional) Find the directory path where the patch should be placed.
GET /api/appliance/v1.0/upgrade/path
- Download the patch from the SORT server.
PATCH / api/appliance/v1.0/upgrade/patches/{patchName} - You can find the details of the progress of the patch download using the task ID.
GET /api/appliance/v1.0/tasks/{taskId} - Install the patch.
PATCH /api/appliance/v1.0/upgrade/patches/{patchName} - You can find the details of the progress of the patch installation using the task ID.
GET /api/appliance/v1.0/tasks/{taskId}