Get-vRAService

SYNOPSIS

Retrieve vRA services that the user is has access to

SYNTAX

Standard (Default)

Get-vRAService [-Page <Int32>] [-Limit <Int32>]

ById

Get-vRAService -Id <String[]>

ByName

Get-vRAService -Name <String[]>

DESCRIPTION

A service represents a customer-facing/user friendly set of activities. In the context of this Service Catalog, these activities are the catalog items and resource actions. A service must be owned by a specific organization and all the activities it contains should belongs to the same organization.

EXAMPLES

-------------------------- EXAMPLE 1 --------------------------

Get-vRAService

-------------------------- EXAMPLE 2 --------------------------

Get-vRAService -Id 332d38d5-c8db-4519-87a7-7ef9f358091a

-------------------------- EXAMPLE 3 --------------------------

Get-vRAService -Name "Default Service"

PARAMETERS

-Id

The id of the service

Type: String[]
Parameter Sets: ById
Aliases: 

Required: True
Position: Named
Default value: None
Accept pipeline input: True (ByPropertyName, ByValue)
Accept wildcard characters: False

-Name

The Name of the service

Type: String[]
Parameter Sets: ByName
Aliases: 

Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-Page

The index of the page to display.

Type: Int32
Parameter Sets: Standard
Aliases: 

Required: False
Position: Named
Default value: 1
Accept pipeline input: False
Accept wildcard characters: False

-Limit

The number of entries returned per page from the API. This has a default value of 100.

Type: Int32
Parameter Sets: Standard
Aliases: 

Required: False
Position: Named
Default value: 100
Accept pipeline input: False
Accept wildcard characters: False

INPUTS

System.String

System.Int

OUTPUTS

System.Management.Automation.PSObject.

NOTES