Set-VBRCloudProvider
Short Description
Modifies service providers.
Applies to
Platform: VMware, Hyper-V
Product Edition: Standard, Enterprise, Enterprise Plus
Syntax
Set-VBRCloudProvider -CloudProvider <VBRCloudProvider> [-Address <string>] [-Description <string>] [-Port <int>][-Credentials <VBRCloudProviderCredentials>] |
Detailed Description
This cmdlet modifies settings of service provider added to Veeam Backup & Replication. To modify settings, you need to enter the corresponding parameters with new values. The parameters that you omit will remain unchanged.
Important |
Mind the following:
|
Parameters
Parameter | Description | Required | Position | Accept | Accept |
CloudProvider | Specifies the service provider you want to modify. Accepts the VBRCloudProvider type. | True | Named | True (ByValue, | False |
Address | Specifies a full DNS name or an IP address of the cloud gateway configured on the service provider side. | True | Named | False | False |
Description | Specifies the description of the service provider. | False | Named | False | False |
Port | Specifies the port over which the Veeam backup server of the user will communicate with the cloud gateway. Permitted values: 1 to 65535. Default: 6180. | False | Named | False | False |
Credentials | Specifies credentials for the user account registered on the service provider Veeam backup server. Accepts the VBRCloudProviderCredentials type. | True | Named | False | False |
Appliance | Specifies the appliance on the user side that will be used for the partial failover. Accepts VBRHvCloudProviderNetworkAppliance type. | False | Named | False | False |
Verify | Indicates if the SSL certificate must be verified by the thumbprints. Use the CertificateThumbprint parameter to set the thumbprint that will be compared to the SSL certificate thumbprint. | False | Named | False | False |
Certificate | Specifies the thumbprint that will be compared to the SSL certificate thumbprint. | False | Named | False | False |
Install | Indicates that the service provider must manage the Veeam backup server under the Backup as a Service agreement. The cmdlet will install the Veeam Managed Backup Portal agent on the Veeam backup server. | False | Named | False | False |
Force | If set, the command will skip the certificate verification if the verification fails. | False | Named | False | False |
WhatIf | Specifies whether the cmdlet writes a message that describes the effects of running the cmdlet without actually performing any action. | False | Named | False | False |
Confirm | Specifies whether the cmdlet displays a prompt that asks if the user is sure that they want to continue. | False | Named | False | 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 1
This example shows how to enable the SSL certificate verification for a service provider.
- Run Get-VBRCloudProvider to get the service provider you want to modify. Save the result to the $CloudProvider variable.
- Run Set-VBRCloudProvider and use the saved variable. Use the VerifyCertificate parameter to enable the SSL certificate verification with thumbprints. The thumbprint is 'e6 c0 e5 1a db 73 0c 13 b3 c3 74 d4 ee 93 ab d0 08 3f 7a a8'.
$CloudProvider = Get-VBRCloudProvider -Name "104.45.95.227" Set-VBRCloudProvider -CloudProvider $CloudProvider -VerifyCertificate -CertificateThumbprint "e6 c0 e5 1a db 73 0c 13 b3 c3 74 d4 ee 93 ab d0 08 3f 7a a8" |
Example 2
This command sets the cloud gateway port to the default value.
- Run Get-VBRCloudProvider to get the service provider you want to modify. Use the pipeline.
- Run Set-VBRCloudProvider with the saved variable. Set the Port parameter to '6180' value.
Example 3
This example shows how to edit configuration of the network extension appliance configured for the service provider.
- Modify the network extension appliance. See Set-VBRCloudProviderNetworkAppliance for instructions. Save the result to the $newAppliance variable.
- Run Get-VBRCloudProvider to get the service provider you want to modify. Save the result to the $CloudProvider variable.
- Run Set-VBRCloudProvider with the saved variables.
$CloudProvider = Get-VBRCloudProvider -Name "104.45.95.227" Set-VBRCloudProvider -CloudProvider $CloudProvider -Appliance $newAppliance |
Related Commands