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:
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

  1. Find the list of all the available patches (downloadable/downloaded/installed).
    GET /api/appliance/v1.0/upgrade/patches
  2. Find the summary of a specific patch.
    GET /api/appliance/v1.0/upgrade/patches/{patchName}
  3. (Optional) Find the directory path where the patch should be placed.
    GET /api/appliance/v1.0/upgrade/path
  4. Download the patch from the SORT server.
    PATCH / api/appliance/v1.0/upgrade/patches/{patchName}
  5. You can find the details of the progress of the patch download using the task ID.
    GET /api/appliance/v1.0/tasks/{taskId}
  6. Install the patch.
    PATCH /api/appliance/v1.0/upgrade/patches/{patchName}
  7. You can find the details of the progress of the patch installation using the task ID.
    GET /api/appliance/v1.0/tasks/{taskId}