Backup Exec Management Command Line Interface Help
Set-BECloudStorageDevice Cmdlet
Synopsis

Sets the properties for a Backup Exec cloud storage device.

Syntax
Set-BECloudStorageDevice -InputObject [<BECloudStorageDevice[]>] [-IsStreamHandlerSupportEnabled [<Boolean>]] [-DataStreamSizeBytes [<Int32>]] [-DiskSpaceReserveBytes [<Int64>]] [-SplitDataStreamBytes [<Int64>]] [-Description [<String>]] [-LogonAccount [<BELogonAccount>]] [-Disabled [<Boolean>]] [-AllowedConcurrentOperations [<Int32>]] [-Paused [<Boolean>]] [-Confirm [<SwitchParameter>]] [-WhatIf [<SwitchParameter>]] [<CommonParameters>]
Description

Sets the properties for a Backup Exec cloud storage device.

Parameters

-LogonAccount <BELogonAccount>

Specifies a Backup Exec logon account for the new cloud storage device. The logon account cannot be the System Logon Account.


Required false
Position Named
Accepts pipeline input false
Accepts wildcard characters false


-Description <String>

Specifies the description for the cloud storage device.


Required false
Position Named
Accepts pipeline input false
Accepts wildcard characters false


-Disabled <Boolean>

Specifies if the cloud storage device is disabled.

The valid values are:
$true
$false


Required false
Position Named
Accepts pipeline input false
Accepts wildcard characters false


-Paused <Boolean>

Specifies if the cloud storage device is paused.

The valid values are:
$true
$false


Required false
Position Named
Accepts pipeline input false
Accepts wildcard characters false


-AllowedConcurrentOperations <Int32>

Sets the maximum allowed concurrent write operations allowed on this device.


Required false
Position Named
Accepts pipeline input false
Accepts wildcard characters false


-SplitDataStreamBytes <Int64>

Specifies the size at which you want Backup Exec to span to a new image.


Required false
Position Named
Accepts pipeline input false
Accepts wildcard characters false


-DataStreamSizeBytes <Int32>

Indicates the size of a single write operation that Backup Exec issues.


Required false
Position Named
Accepts pipeline input false
Accepts wildcard characters false


-IsStreamHandlerSupportEnabled <Boolean>

Specifies if stream handler is used.

The valid values are:
$true
$false


Required false
Position Named
Accepts pipeline input false
Accepts wildcard characters false


-DiskSpaceReserveBytes <Int64>

Specifies the amount of disk space to set aside for applications other than Backup Exec.


Required false
Position Named
Accepts pipeline input false
Accepts wildcard characters false


-InputObject <BECloudStorageDevice[]>

Specifies one or more cloud storage device objects. Enter a variable that contains the objects, or type a command or expression that gets the objects.


Required true
Position Named
Accepts pipeline input true (ByValue)
Accepts wildcard characters false


-WhatIf <SwitchParameter>

Describes what would happen if you executed the command without actually executing the command.


Required false
Position Named
Accepts pipeline input false
Accepts wildcard characters false


-Confirm <SwitchParameter>

Prompts you for confirmation before executing the command.


Required false
Position Named
Accepts pipeline input false
Accepts wildcard characters false


<CommonParameters>

For more information about common parameters, type "Get-Help about_commonparameters".

Input Type
BackupExec.Management.CLI.BECloudStorageDevice

You can pipe a Backup Exec cloud storage device object to Set-BECloudStorageDevice.

Return Value
BackupExec.Management.CLI.BECloudStorageDevice

Set-BECloudStorageDevice returns an object that represents the changed Backup Exec cloud storage device.

Example
C:\PS> Get-BECloudStorageDevice "Device 0001" | Set-BECloudStorageDevice -Paused $true

These commands pause the cloud storage device named "Device 0001".

Related Link

Get-BECloudStorageDevice