---
title: "New-VBRvCDIndividualObjectStoragePolicy"
description: "Defines Cloud Director storage policies for vApps or VMs. Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License This cmdlet provides the following parameter sets: This cmdlet creates the VBRvCDIndividualObjectStoragePolicy o"
canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/new-vbrvcdindividualobjectstoragepolicy.html"
breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > VMware Cloud Director > Replication for VMware Cloud Director > Cloud Director Replica Advanced Settings > New-VBRvCDIndividualObjectStoragePolicy"
dateModified: "2026-08-19"
---
# New-VBRvCDIndividualObjectStoragePolicy
## Short Description
Defines Cloud Director storage policies for vApps or VMs.
**Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License
## Syntax
This cmdlet provides the following parameter sets:
-
vApp
```
New-VBRvCDIndividualObjectStoragePolicy -VApp -StoragePolicy []
```
-
VM
```
New-VBRvCDIndividualObjectStoragePolicy -VM -StoragePolicy []
```
## Detailed Description
This cmdlet creates the `VBRvCDIndividualObjectStoragePolicy` object. This object defines the settings of Cloud Director storage policies for vApps or VMs.
## Parameters
|
Parameter
|
Description
|
Type
|
Required
|
Position
|
Accept Pipeline Input
|
|
StoragePolicy
|
Specifies the storage policy. The cmdlet will define a storage policy according to this policy settings. Accepts the CVcdOrgVdcStorageProfile object. To get this object, run the Find-VBRvCloudEntity cmdlet.
|
CVcdOrgVdcStorageProfile
|
True
|
Named
|
False
|
|
VApp
|
Specifies the vApp for which you want to define a storage policy. Accepts the CVcdVappItem object. To get this object, run the Find-VBRvCloudEntity cmdlet.
|
CVcdVappItem
|
True
|
Named
|
False
|
|
VM
|
Specifies the VM for which you want to define a storage policy. Accepts the CVcdVappItem object. To get this object, run the Find-VBRvCloudEntity cmdlet.
|
CVcdVappItem
|
True
|
Named
|
False
|
``
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see [ Microsoft Docs](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_commonparameters?view=powershell-7).
## Output Object
The cmdlet returns the `VBRvCDIndividualObjectStoragePolicy` object that defines the settings of Cloud Director storage policies for vApps or VMs.
## Examples
::: example
### Example 1. Defining VApp Storage Policy
This example shows how to define a storage policy for the `Atlanta05` vApp.
```
$vapp = Find-VBRvCloudEntity -VApp -Name "Atlanta05"
$policy = Find-VBRvCloudEntity -StorageProfile
$vpolicy = New-VBRvCDIndividualObjectStoragePolicy -VApp $vapp[0] -StoragePolicy $policy[0]
```
Perform the following steps:
1. Run the [`Find-VBRvCloudEntity`](find-vbrvcloudentity.md) cmdlet. Specify the `Name` and `VApp` parameters. Save the result to the `$vapp` variable.
2. Run the [`Find-VBRvCloudEntity`](find-vbrvcloudentity.md) cmdlet. Provide the `StorageProfile` parameter. Save the result to the `$policy` variable.
3. Run the `New-VBRvCDIndividualObjectStoragePolicy` cmdlet. Set the `$vapp` variable as the `VApp` parameter value. Set the `$policy` variable as the `StoragePolicy` parameter value. Save the result to the `$vpolicy` variable.
:::
::: example
### Example 2. Defining VM Storage Policy
This example shows how to define a storage policy for the `Admin05` VM.
```
$vapp = Find-VBRvCloudEntity -VM -Name "Admin05"
$policy = Find-VBRvCloudEntity -StorageProfile
$vmpolicy = New-VBRvCDIndividualObjectStoragePolicy -VM $vapp[0] -StoragePolicy $policy[0]
```
Perform the following steps:
1. Run the [`Find-VBRvCloudEntity`](find-vbrvcloudentity.md) cmdlet. Specify the `Name` and `VM` parameters. Save the result to the `$vapp` variable.
2. Run the [`Find-VBRvCloudEntity`](find-vbrvcloudentity.md) cmdlet. Provide the `StorageProfile` parameter. Save the result to the `$policy` variable.
3. Run the `New-VBRvCDIndividualObjectStoragePolicy` cmdlet. Set the `$vapp` variable as the `VM` parameter value. Set the `$policy` variable as the `StoragePolicy` parameter value. Save the result to the `$vmpolicy` variable.
:::
## Related Commands
[`Find-VBRvCloudEntity`](find-vbrvcloudentity.md)