Remove-VBRCloudProviderCredentials
Short Description
Removes cloud provider credentials records from Veeam Backup & Replication.
Applies to
Platform: VMware, Hyper-V
Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License
Syntax
Remove-VBRCloudProviderCredentials [-Credentials] <VBRCloudProviderCredentials> [-WhatIf] [-Confirm][<CommonParameters>] |
Detailed Description
This cmdlet removes cloud provider credentials records from Veeam Backup & Replication.
Parameters
Parameter | Description | Required | Position | Accept | Accept |
---|---|---|---|---|---|
Credentials | Specifies cloud provider credentials records that you want to remove. Accepts the VBRCloudProviderCredentials type. | True | 0 | True (ByValue) |
|
WhatIf | Specifies whether the cmdlet writes a message that describes the effects of running the cmdlet without actually performing any action. | False | Named | False |
|
Confirm | Specifies whether the cmdlet displays a prompt that asks if the user is sure that they want to continue. | 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.
Return Type
Example
This example shows how to remove cloud provider credentials records.
- Run Get-VBRCloudProviderCredentials to get the cloud provider credential records that you want to remove. Save the result to the $creds variable.
- Run Remove-VBRCloudProviderCredentials with the $creds variable. Use the Confirm parameter to confirm the action.
$creds = Get-VBRCloudProviderCredentials -Name "Cloud credentials" Remove-VBRCloudProviderCredentials -Credentials $creds -Confirm |
Related Commands