Syntax
Get-SpbmCapability [[-Name] <String[]>] [-Category <String[]>] [-Server <VIServer[]>] [<CommonParameters>]Related Commands
Online versionDetailed Description
This cmdlet retrieves capability schema sorted by alphabetical order of the Name field.Parameters
Return Type
List of SpbmCapability objectsNotes
Works only with vCenter Server 5.5 or later. For more information, see the VMware Storage Policy API Reference: https://pubs.vmware.com/vsphere-60/index.jsp#com.vmware.vspsdk.apiref.doc/right-pane.htmlExamples
-------------- Example 1 --------------
Get-SpbmCapability -Name "VSAN.stripeWidth"
Returns all SPBM capability schemas named "VSAN.stripeWidth". The name is unique for the capability schemas.
-------------- Example 2 --------------
Get-SpbmCapability -Name VSAN*
Returns all SPBM capability schemas whose name starts with VSAN.
-------------- Example 3 --------------
Get-SpbmCapability -Name "VSAN*" -Category "Performance"
Returns all SPBM capability schemas whose name starts with "VSAN" and are of category "Performance".
-------------- Example 4 --------------
Get-SpbmCapability ?Name IOFILTERS*
Retrieves all capabilities from the VAIOFilter namespace.