Add-VBOAzureBlobObjectStorageRepository
Short Description
Adds Azure Blob Storage to the Veeam Backup for Microsoft 365 infrastructure.
Note |
In Veeam Backup for Microsoft 365 8, this cmdlet became deprecated. Use the New-VBOAzureBlobObjectStorageSettings, and Add-VBOAzureBlobRepository or Add-VBOAzureArchiveRepository cmdlets instead. |
Syntax
This cmdlet provides parameter sets that allow you to:
- Add Microsoft Azure Blob Storage.
Add-VBOAzureBlobObjectStorageRepository -Folder <VBOAzureBlobFolder> -Name <String> [-Description <String>] [-SizeLimit <UInt64>] [-EnableImmutability] [-ImmutabilityPeriodDays <Int32>] [<CommonParameters>] |
- Add Microsoft Azure Blob Storage Archive.
Add-VBOAzureBlobObjectStorageRepository -Folder <VBOAzureBlobFolder> [-EnableLongTerm] -Name <String> [-Description <String>] [-SizeLimit <UInt64>] [-EnableImmutability] [-ImmutabilityPeriodDays <Int32>] [<CommonParameters>] |
- Add Microsoft Azure Blob Storage Archive along with Microsoft Azure subscription required to use the Azure archiver appliance.
Add-VBOAzureBlobObjectStorageRepository -Folder <VBOAzureBlobFolder> [-EnableLongTerm] -Subscription <VBOAzureSubscription> [-ArchiverAppliance <VBOAzureArchiverAppliance>] -Name <String> [-Description <String>] [-SizeLimit <UInt64>] [-EnableImmutability] [-ImmutabilityPeriodDays <Int32>] [<CommonParameters>] |
- Add Microsoft Azure Blob Storage along with Microsoft Azure subscription required to use the Azure archiver appliance.
Add-VBOAzureBlobObjectStorageRepository -Folder <VBOAzureBlobFolder> -Subscription <VBOAzureSubscription> [-ArchiverAppliance <VBOAzureArchiverAppliance>] -Name <String> [-Description <String>] [-SizeLimit <UInt64>] [-EnableImmutability] [-ImmutabilityPeriodDays <Int32>] [<CommonParameters>] |
Detailed Description
This cmdlet adds Azure Blob Storage to the Veeam Backup for Microsoft 365 infrastructure.
Parameters
Parameter | Description | Type | Required | Position | Accept Pipeline Input |
---|---|---|---|---|---|
Folder | Specifies an Azure Blob folder. Veeam Backup for Microsoft 365 will save backups or backup copies to the specified folder. | Accepts the VBOAzureBlobFolder object. To get this object, run the Get-VBOAzureBlobFolder cmdlet. | True | Named | False |
Name | Specifies a name of Azure Blob Storage. The cmdlet will add object storage repository with this name. | String | True | Named | False |
Description | Specifies a description of Azure Blob Storage. The cmdlet will add object storage repository with this description. | String | False | Named | False |
SizeLimit | Specifies a soft limit in GB for the object storage repository consumption that can be exceeded temporarily. If the specified limit is exceeded, Veeam Backup for Microsoft 365 will not run a new job. Permitted values: 1024–1073741824. Default: 1024 Note: In PowerShell you can specify a soft limit in GB only. | UInt64 | False | Named | False |
EnableImmutability | Defines that the cmdlet will add object storage repository to the Veeam Backup for Microsoft 365 infrastructure with the immutability feature enabled. Veeam Backup for Microsoft 365 allows you to prohibit deletion of data from the object storage repository by making that data temporarily immutable and to protect data against malware activity. For more information about the immutability feature, see the Immutability section of the Veeam Backup for Microsoft 365 User Guide. Default: False | SwitchParameter | False | Named | False |
ImmutabilityPeriodDays | Specifies the number of days when your data will be blocked for deletion or modification. Note: If you set the null or 0 value, data will be blocked for deletion or modification for the same period as the retention period. | Int32 | False | Named | False |
EnableLongTerm | Defines that the cmdlet will enable adding of the Azure Blob Storage Archive access tier. Default: False | SwitchParameter | True | Named | False |
Subscription | Specifies a subscription associated with a user account that will be used to access Azure Blob Storage. | Accepts the VBOAzureSubscription object. To get this object, run the Get-VBOAzureSubscription cmdlet. | True | Named | False |
ArchiverAppliance | Specifies the Azure archiver appliance. The cmdlet will use this archiver appliance when transferring backed-up data between different instances of Azure Blob Storage or to Azure Blob Storage Archive during backup copy jobs. | Accepts the VBOAzureArchiverAppliance object. To create this object, run the New-VBOAzureArchiverAppliance cmdlet. | False | Named | False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the About CommonParameters section of Microsoft Docs.
Output Object
The cmdlet returns the VBOAzureBlobObjectStorageRepository object that contains settings of Azure Blob Storage.
Examples
Example 1. Adding Azure Blob Storage
This example shows how to add Azure Blob Storage. The repository will be added with default size limits.
Perform the following steps:
|
Example 2. Adding Azure Blob Storage with Description
This example shows how to add Azure Blob Storage with description.
Perform the following steps:
|
Example 3. Adding Azure Blob Storage with Specified Size Limits
This example shows how to add Azure Blob Storage. The repository will be added with size limits set to 5120 GB.
Perform the following steps:
|
Example 4. Adding Azure Blob Storage Archive with Immutability Enabled
This example shows how to add Azure Blob Storage Archive with the enabled immutability to store backup copies.
Perform the following steps:
|
Related Commands