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

Type

Required

Position

Accept
Pipeline
Input

Tenant

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

Accepts the VBRCloudTenant object. To get this object, run the Get-VBRCloudTenant cmdlet.

False

Named

True (ByValue,
ByProperty
Name)

<CommonParameters>

This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.

Output Object

VBRCloudIP

Examples

Get-VBRCloudPublicIPExample 1. Getting All Configured Public IP Addresses

This command returns all configured public IP addresses.

Get-VBRCloudPublicIP

Get-VBRCloudPublicIPExample 2. Getting All Configured Public IP Addresses

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

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

Get-VBRCloudPublicIP -Tenant $tenant

Perform the following steps:

  1. Run the Get-VBRCloudTenant cmdlet. Specify the Name parameter value. Save the result to the $tenant variable.
  2. Run the Get-VBRCloudPublicIP cmdlet. Set the $tenant variable as the Tenant parameter value.

Related Commands

Get-VBRCloudTenant