Get-VEPSQLCommand

Short Description

Returns a set of cmdlets available for Veeam Explorer for PostgreSQL.

Applies to

Veeam Backup & Replication

Product Edition: Enterprise, Enterprise Plus, Veeam Universal License

Syntax

This cmdlet provides parameter sets that allow you to:

  • Get all Veeam Explorer for PostgreSQL cmdlets.

Get-VEPSQLCommand  [<CommonParameters>]

  • Get a cmdlet with a specified name.

Get-VEPSQLCommand [-Name <string>]  [<CommonParameters>]

  • Get cmdlets whose names contain a specified noun or verb.

Get-VEPSQLCommand [-Noun <string>] [-Verb <string>]  [<CommonParameters>]

Detailed Description

This cmdlet allows you to get cmdlets for Veeam Explorer for PostgreSQL. You can get a cmdlet with a specific name, or with a name that consists of a certain verb or noun.

For example, the Get-VEPSQLCommand cmdlet consists of the Get verb and the VEPSQLCommand noun. To get this cmdlet, you can search it either by its full name, the Get verb or the VEPSQLCommand noun.

Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Name

Specifies a name to query cmdlets. The Get-VEPSQLCommand cmdlet will return a cmdlet whose name matches the specified name.

String

False

0

True (ByValue,
ByProperty
Name)

Noun

Specifies a noun to query cmdlets. The Get-VEPSQLCommand cmdlet will return a list of cmdlets whose names contain the specified noun.

String

False

Named

True (By
Property
Name)

Verb

Specifies a verb to query cmdlets. The Get-VEPSQLCommand cmdlet will return a list of cmdlets whose names contain the specified verb.

String

False

Named

True (By
Property
Name)

<CommonParameters>

This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the About Common Parameters section of Microsoft Docs.

Examples

Get-VEPSQLCommandExample 1. Getting All Veeam Explorer for PostgreSQL PowerShell Cmdlets

This command returns all Veeam Explorer for PostgreSQL PowerShell cmdlets:

Get-VEPSQLCommand

Get-VEPSQLCommandExample 2. Getting Cmdlet with Specific Name

This command returns the Get-VEPSQLInstance cmdlet:

Get-VEPSQLCommand -Name Get-VEPSQLInstance

Get-VEPSQLCommandExample 3. Getting Cmdlet that Contains Specific Verb

This command returns cmdlets whose names contain the Get verb:

Get-VEPSQLCommand -Verb Get

Get-VEPSQLCommandExample 4. Getting Cmdlet that Contains Specific Noun

This command returns cmdlets whose names contain the VEPSQLInstance noun:

Get-VEPSQLCommand -Noun VEPSQLInstance