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

Set-VBRCloudProviderCredentials

Short Description

Modifies cloud provider credential records.

Applies to

Platform: VMware, Hyper-V

Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License

Syntax

Set-VBRCloudProviderCredentials [-Credentials] <VBRCloudProviderCredentials> [-Name <string>] [-Password <string>][-Description <string>]  [<CommonParameters>]

Detailed Description

This cmdlet modifies cloud provider credentials records are added to Veeam Backup & Replication.

Parameters

Parameter

Description

Required

Position

Accept
Pipeline
Input

Accept
Wildcard
Characters

Credentials

Specifies cloud provider credentials records that you want to modify.

Accepts the VBRCloudProviderCredentials type.

True

0

True (ByValue)

 

Name

Specifies the  login for cloud provider credentials records.

False

Named

False

 

Password

Specifies the password for the cloud provider credentials records.

False

Named

False

 

Description

Specifies the description for the cloud provider credentials records.

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 modify a login for cloud provider credentials records.

  1. Run Get-VBRCloudProviderCredentials to get the cloud provider credentials records that you want to modify. Save the result to the $creds variable.
  2. Run Set-VBRCloudProviderCredentials with the $creds variable. Use the Name parameter to specify new login for credentials records.

$creds = Get-VBRCloudProviderCredentials -Name "Cloud credentials"

Set-VBRCloudProviderCredentials -Credentials $creds -Name "New Login"

Related Commands

Get-VBRCloudProviderCredentials