The Get-VmsVideoOSItem\ cmdlet gets [VideoOS.Platform.Item] objects of by calling
one of the GetItem* methods on the [VideoOS.Platform.Configuration]::Instance
class from the MIP SDK nuget packages.
The MIP SDK returns one specific item by ID, or an array of items, each of which
may have zero or more child items. This cmdlet will flatten the hierarchy and return
a flat collection of items.
REQUIREMENTS
Requires VMS connection and will attempt to connect automatically
Returns a flat list of all items returned by [VideoOS.Platform.Configuration]::Instance.GetItems()
based on the user-defined hierarchy which may not include all cameras if some
cameras are not added to a camera group for example.
Specifies an optional FolderType value of No, SystemDefined, or UserDefined.
If you are retrieving camera, or hardware objects, you should set FolderType
to "No" unless you also want to receive camera groups and hardware folders.
Specifies the FQID for a single configuration item. The MIP SDK uses FQIDs or
Fully Qualified Identifiers to resolve items based on their IDs, their "Kind"
such as "Camera" or "Server", and their ServerIds which usually represents the parent
recording server or management server.
An FQID can be created manually when necessary, and it can also be found on any
VideoOS.Platform.Item object returned by Get-VmsVideoOSItem.
Specifies the ID or name of an item "Kind". For a list of supported values, run
[VideoOS.Platform.Kind] | Get-Member -Static -MemberType Property | Where-Object Definition -match 'static guid'
Specifies a ServerId from an existing configuration item such as a management server,
recording server, or camera. Providing the ServerId can help to find and return the
matching configuration item faster when used in a Milestone Federated Hierarchy.
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.