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

Get-VBRCloudPublicIP

Short Description

Returns existing public IP addresses.

Applies to

Platform: VMware, Hyper-V

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

Requires a VCP license.

Syntax

Get-VBRCloudPublicIP [-Tenant <VBRCloudTenant>] [<CommonParameters>]

Detailed Description

This cmdlet returns public IP addresses that are configured by the service provider. You can get all configured IP addresses or the IP addresses allocated to a selected user.

Parameters

Parameter

Description

Required

Position

Accept
Pipeline
Input

Accept
Wildcard
Characters

Tenant

Specifies the cloud tenant. The cmdlet will return IP addresses assigned to this tenant.

Accepts VBRCloudTenant type.

False

Named

True (ByValue,
ByProperty
Name)

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

VBRCloudIP

Example 1

This command returns all configured public IP addresses.

Get-VBRCloudPublicIP

Example 2

This example shows how to return public IP addresses assigned to the ABC company.

  1. Run Get-VBRCloudTenant to get the needed tenant. Save the result to the $tenant variable.
  2. Run Get-VBRCloudPublicIP with the saved variable.

$tenant = Get-VBRCloudTenant -Name "ABC Company"

Get-VBRCloudPublicIP -Tenant $tenant

Related Commands

Get-VBRCloudTenant