Set-VBRCloudProviderCredentials
Short Description
Modifies cloud provider credential records.
Applies to
Platform: VMware, Hyper-V
Product Edition: Standard, Enterprise, Enterprise Plus
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 | Accept |
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.
- Run Get-VBRCloudProviderCredentials to get the cloud provider credentials records that you want to modify. Save the result to the $creds variable.
- 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