This is an archive version of the document. To get the most up-to-date information, see the current version.

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

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
Pipeline
Input

Accept
Wildcard
Characters

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.

  1. Run Get-VBRCloudProviderCredentials to get the cloud provider credential records that you want to remove. Save the result to the $creds variable.
  2. 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

Get-VBRCloudProviderCredentials