Syntax
Get-VIPrivilege [-PrivilegeGroup] [-PrivilegeItem] [[-Name] <String[]>] [-Id <String[]>] [-Server <VIServer[]>] [<CommonParameters>]Related Commands
Online versionDetailed Description
This cmdlet retrieves the privilege groups and items for the provided servers.Parameters
Name | Type | Description | Required? | Pipeline Input | Default Value |
---|---|---|---|---|---|
Name | String[] | Specifies the names of the privileges you want to retrieve. | false | false | |
Group | PrivilegeGroup[] | Specifies the privilege group whose items you want to retrieve. | true | true (ByValue) | |
Role | Role[] | Specifies the roles whose privileges you want to retrieve. | true | true (ByValue) | |
Id | String[] | Specifies the IDs of the privileges you want to retrieve.
Note: When a list of values is specified for the Id parameter, the returned objects would have an ID that matches exactly one of the string values in that list. | false | false | |
PrivilegeGroup | SwitchParameter | Indicates that you want to retrieve only the privilege groups and not the privilege items in them. | false | false | |
PrivilegeItem | SwitchParameter | Indicates that you want to retrieve only the privilege items and not the privilege groups. | false | false | |
Server | VIServer[] | Specifies the vCenter Server systems on which you want to run the cmdlet. If no value is passed to this parameter, the command runs on the default servers. For more information about default servers, see the description of Connect-VIServer. | false | false |
Return Type
Zero or more Privilege objectsNotes
Examples
-------------- Example 1 --------------
Get-VIPrivilege -Name "Host*"
Retrieves all privileges with names that start with "Host".
-------------- Example 2 --------------
Get-VIPrivilege -PrivilegeGroup
Retrieves all privilege groups.