Returns the resource requirements that would be needed to resize an existing Protection Store Gateway.

post/backup-recovery/v1beta1/protection-store-gateways/{id}/sizer

Returns the resource requirements that would be needed to resize an existing Protection Store Gateway. This API doesn't perform any modifications to the Protection Store Gateway. To implement the modifications a call to POST /backup-recovery/v1beta1/protection-store-gateways/{id}/resize should be made.

Securitybearer
Request
path Parameters
id
required
string <uuid>

The UUID of the object

Example: c1a0eb78-41a0-4151-93b2-f057ffeca3f3
Request Body schema: application/json
required
maxInCloudDailyProtectedDataInTiB
number

The maximum total size of the assets that is expected to be protected each day in the Cloud Protection Stores.

maxInCloudRetentionDays
number

The maximum retention period for cloud backups in days.

maxOnPremDailyProtectedDataInTiB
number

The maximum total size of the assets that is expected to be protected each day in the On-Prem Protection Store.

maxOnPremRetentionDays
number

The maximum retention period for local backups in days.

Responses
200

OK

400

Bad/Malformed request

401

Unauthenticated request

403

Unauthorized request

404

Protection Store Gateway with the given Id does not exist

409

The input values do not generate a valid result

500

Internal Server Error

Request samples
application/json
{
  • "maxInCloudDailyProtectedDataInTiB": 2,
  • "maxInCloudRetentionDays": 2,
  • "maxOnPremDailyProtectedDataInTiB": 2,
  • "maxOnPremRetentionDays": 2
}
Response samples
application/json
{
  • "iops": 2,
  • "ramInGiB": 2,
  • "storageInTiB": 2,
  • "vCpu": 2
}