Remove-VBRCloudProviderCredentials
Short Description
Removes cloud provider credentials records from Veeam Backup & Replication.
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 |
Type |
Required |
Position |
Accept Pipeline Input |
|---|---|---|---|---|---|
|
Credentials |
Specifies cloud provider credentials records that you want to remove.
Accepts the |
|
True |
0 |
True (ByValue) |
|
Confirm |
Defines that the cmdlet will display a prompt that asks if you want to continue running the command.
Note: Microsoft PowerShell enables the |
|
False |
Named |
False |
|
WhatIf |
Defines that the cmdlet will write a message that describes the effects of running the cmdlet without actually performing any action. |
|
False |
Named |
False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Examples
Removing Cloud Provider Credentials Records
This example shows how to remove cloud provider credentials records.
|
$creds = Get-VBRCloudProviderCredentials -Name "Cloud credentials" Remove-VBRCloudProviderCredentials -Credentials $creds -Confirm |
Perform the following steps:
- Run the
Get-VBRCloudProviderCredentialsReturns an array of cloud provider credentials records added to Veeam Backup & Replication. cmdlet. Specify theNameparameter value. Save the result to the$credsvariable. - Run the
Remove-VBRCloudProviderCredentialscmdlet. Set the$credsvariable as theCredentialsparameter value. Provide theConfirmparameter.
Related Commands
Get-VBRCloudProviderCredentialsReturns an array of cloud provider credentials records added to Veeam Backup & Replication.