Add-VBRvCDCloudTenant
Short Description
Creates VMware Cloud Director tenant accounts.
Platform: VMware, Hyper-V
Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License
Syntax
|
Add-VBRvCDCloudTenant [-Description <String>] [-EnableLeaseExpiration] [-Resources <VBRCloudTenantResource[]>] [-EnableThrottling] [-ThrottlingValue <Decimal>] [-ThrottlingUnit <VBRSpeedUnit>] [-MaxConcurrentTask <Int32>] [-EnableBackupProtection] [-BackupProtectionPeriod <Int32>] -vCDOrganization <CVcdOrganizationItem> [-vCDReplicationResource <VBRvCDReplicationResource>] [-GatewaySelectionType <VBRCloudGatewaySelectionType>] [-GatewayPool <VBRCloudGatewayPool[]>] [-EnableGatewayFailover] [<CommonParameters>] |
Detailed Description
This cmdlet creates Cloud Director tenant accounts.
To set up replica resources for Cloud Director tenant accounts, you must perform the following steps:
- Create the organization VDC in your VMware Cloud Director.
- Allocate the required organization VDC for the Cloud Director tenant account.
Run the New-VBRvCDOrganizationvDCOptionsCreates organization vDCs settings. cmdlet to specify the organization VDC that you want to allocate to the Cloud Director tenant.
Run the New-VBRvCDReplicationResourceDefines Cloud Director replication resource settings. cmdlet to specify the replication resource settings.
Important |
|
You cannot specify the name and the password for Cloud Director tenant accounts. |
Parameters
|
Parameter |
Description |
Type |
Required |
Position |
Accept Pipeline Input |
|---|---|---|---|---|---|
|
BackupProtectionPeriod |
For the Specifies the number of days to keep the tenant's deleted backups on the service provider side.
Can be set to |
|
False |
Named |
False |
|
Description |
Specifies a description of the Cloud Director tenant account. |
|
False |
Named |
False |
|
EnableBackupProtection |
Enables protection for the tenant's backups from complete removal. If you provide this parameter, the tenant's deleted backups will be placed to the recycle bin on the service provider's side. The backups will be kept in the bin for the specified protection period. When this period ends, the backups are removed permanently.
To specify the protection period, use the |
|
False |
Named |
False |
|
EnableGatewayFailover |
Enables the gateway pool failover option. In case the gateway pool is down, Veeam Backup & Replication will transfer data through a gateway, that is not added to any gateway pool. |
|
False |
Named |
False |
|
EnableLeaseExpiration |
Defines that a Cloud Director tenant account must use lease expiration settings.
Use the |
|
False |
Named |
False |
|
EnableThrottling |
Enables network throttling to set the bandwidth limitations.
Use the |
|
False |
Named |
False |
|
GatewayPool |
Specifies a gateway pool. Veeam Backup & Replication will route data through the specified gateway pool.
Accepts the |
False |
Named |
False |
|
|
GatewaySelectionType |
Specifies the type of the cloud gateway that you want to assign to Cloud Director tenant accounts.
|
|
False |
Named |
False |
|
MaxConcurrentTask |
Specifies the maximum number of tasks that the Cloud Director tenant account can process in parallel. The number of tasks is the number of VM disks processed by one job targeted at the cloud repository or cloud host. |
|
False |
Named |
False |
|
Resources |
Specifies an array of backup resource quotas that you want to allocate to the Cloud Director tenant accounts. Note:
Accepts the |
False |
Named |
False |
|
|
ThrottlingUnit |
For the Specifies measure units for the bandwidth value. You can select either of the following:
Default: |
|
False |
Named |
False |
|
ThrottlingValue |
For the Specifies the maximum bandwidth value in Mbps for transferring the tenant data to the SP side. |
|
False |
Named |
False |
|
vCDOrganization |
Specifies a Cloud Director organization. Note: you must configure the Cloud Director organization in Cloud Director beforehand.
Accepts the |
|
True |
Named |
False |
|
vCDReplicationResource |
Specifies Cloud Director replication resources, that you want to allocate to the Cloud Director tenant accounts.
Accepts the |
False |
Named |
False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Output Object
Examples
Creating Cloud Director Tenant Account with Replication Resources
This example shows how to create a Cloud Director tenant account with the replication resources.
|
$orgvdc = Find-VBRvCloudEntity -OrganizationVdc -Name "VDC 01" $dco = New-VBRvCDOrganizationvDCOptions -OrganizationvDC $orgvdc $org = Find-VBRvCloudEntity -Organization -Name "Organization 05" $replicas = New-VBRvCDReplicationResource -OrganizationvDCOptions $dco Add-VBRvCDCloudTenant -vCDOrganization $org -vCDReplicationResource $replicas |
Perform the following steps:
- Run the
Find-VBRvCloudEntityLooks for Cloud Director entities. cmdlet. Provide theOrganizationVdcparameter. Specify theNameparameter value. Save the result to the$orgvdcvariable. - Run the
New-VBRvCDOrganizationvDCOptionsCreates organization vDCs settings. cmdlet. Set the$orgvdcvariable as theOrganizationvDCparameter value. Save the result to the$dcovariable. - Run the
Find-VBRvCloudEntityLooks for Cloud Director entities. cmdlet. Provide theOrganizationparameter. Specify theNameparameter value. Save the result to the$orgvariable. - Run the
New-VBRvCDReplicationResourceDefines Cloud Director replication resource settings. cmdlet. Set the$dcovariable as theOrganizationvDCOptionsparameter value. Save the result to the$replicasvariable. - Run the
Add-VBRvCDCloudTenantcmdlet. Set the$orgvariable as thevCDOrganizationparameter value. Set the$replicasvariable as thevCDReplicationResourceparameter value.
Related Commands
Find-VBRvCloudEntityLooks for Cloud Director entities.New-VBRvCDOrganizationvDCOptionsCreates organization vDCs settings.New-VBRvCDReplicationResourceDefines Cloud Director replication resource settings.