Please enter search query.
Search <book_title>...
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}