Skip to main content

Calculate Total Cost Of Ownership

Select

SaaS
Customer Managed

Calculate the Total Cost Of Ownership for AZURE or AWS in comparison to Commvault Cloud

Request Body
  • cloudProvider TCOCloudProvider required

    Possible values: [AWS, AZURE]

    Default value: AWS

  • numberOfVirtualMachines int32 required

    Total number of Virtual Machines that are included for TCO assessment

  • totalVirtualMachineSize int64 required

    Total size of Virtual Machines in GB that are included for TCO assessment

  • totalRecoveryPoints int32 required

    Total number of Recovery Points that are included for TCO assessment

  • totalInstantRestoreSnapshot int32 required

    Total number of Instant Restore Snapshots that are included for TCO assessment

  • dailyRateOfChange int32 required

    This is the predicted rate of change that impacts the snapshot size and backup size

  • replicatedSnapsPercentage int32 required

    This is the total percentage of snapshots replicated that is included for TCO assessment

  • nativeDiscountPercentage int32

    This is the percentage of the discount that the customer gets with the cloud vendor

  • commvaultDiscountPercentage int32

    This is the percentage of the discount that the customer gets with Commvault

Responses

OK


Schema
  • commvault object
  • primarySnapshotStorageCost int64
  • secondarySnapshotStorageCost int64
  • asrTotalVMEnvironment int64
  • primaryCloudStorageUsedCost int64
  • secondaryCloudStorageUsedCost int64
  • protectionCost int64
  • primaryInfraCost int64
  • secondaryInfraCost int64
  • dataTranmissionCost int64
  • native object
  • primarySnapshotStorageCost int64
  • secondarySnapshotStorageCost int64
  • asrTotalVMEnvironment int64
  • primaryCloudStorageUsedCost int64
  • secondaryCloudStorageUsedCost int64
  • protectionCost int64
  • primaryInfraCost int64
  • secondaryInfraCost int64
  • dataTranmissionCost int64
POST /v4/cyberresilience/tco    

Authorization

type: apiKeyname: Authtokenin: header

Request

Click Edit to configure Base URL
https://CommandCenterHostName/commandcenter/api
Security Scheme
token
Body
{
"cloudProvider": "AWS",
"numberOfVirtualMachines": 0,
"totalVirtualMachineSize": 0,
"totalRecoveryPoints": 0,
"totalInstantRestoreSnapshot": 0,
"dailyRateOfChange": 0,
"replicatedSnapsPercentage": 0,
"nativeDiscountPercentage": 0,
"commvaultDiscountPercentage": 0
}
curl -L -X POST 'https://CommandCenterHostName/commandcenter/api/V4/CyberResilience/TCO' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"cloudProvider": "AWS",
"numberOfVirtualMachines": 0,
"totalVirtualMachineSize": 0,
"totalRecoveryPoints": 0,
"totalInstantRestoreSnapshot": 0,
"dailyRateOfChange": 0,
"replicatedSnapsPercentage": 0,
"nativeDiscountPercentage": 0,
"commvaultDiscountPercentage": 0
}'