Set-VBRCloudProviderCredentials
Short Description
Modifies cloud provider credential records.
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 Pipeline Input |
|---|---|---|---|---|---|
|
Credentials |
Specifies cloud provider credentials records that you want to modify.
Accepts the |
|
True |
0 |
True (ByValue) |
|
Description |
Specifies the description for the cloud provider credentials records. |
|
False |
Named |
False |
|
Name |
Specifies the login for the cloud provider credentials records. |
|
False |
Named |
False |
|
Password |
Specifies the password for the cloud provider credentials records. |
|
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-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 Set-
VBRCloudProviderCredentialscmdlet. Set the$credsvariable as theCredentialsparameter value. Specify theNameparameter value.
Related Commands
Get-VBRCloudProviderCredentialsReturns an array of cloud provider credentials records added to Veeam Backup & Replication.