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.
Note |
To modify settings, specify new values for the necessary parameters. The cmdlet will overwrite the previous parameter values with new values. The parameters that you omit will remain unchanged. |
Parameters
Parameter | Description | Type | Required | Position | Accept |
---|---|---|---|---|---|
Credentials | Specifies cloud provider credentials records that you want to modify. | Accepts the VBRCloudProviderCredentials object. To get this object, run the Get-VBRCloudProviderCredentials cmdlet. | True | 0 | True (ByValue) |
Name | Specifies the login for the cloud provider credentials records. | String | False | Named | False |
Password | Specifies the password for the cloud provider credentials records. | String | False | Named | False |
Description | Specifies the description for the cloud provider credentials records. | String | False | Named | False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Output Object
VBRCloudProviderCredentials
Examples
Modifying Login for Cloud Provider Credentials Records
This example shows how to modify a login for cloud provider credentials records.
$creds = Get-VBRCloudProviderCredentials -Name "Cloud credentials" Set-VBRCloudProviderCredentials -Credentials $creds -Name "New Login" |
Perform the following steps:
- Run the Get-VBRCloudProviderCredentials cmdlet. Specify the Name parameter value. Save the result to the $creds variable.
- Run the Set-VBRCloudProviderCredentials cmdlet. Set the $creds variable as the Credentials parameter value. Specify the Name parameter value.
Related Commands