Name
Get-JS7Notice
SYNOPSIS
Returns Notices from a number of Notice Boards
SYNTAX
Get-JS7Notice [[-Path] <String>] [[-Folder] <String>] [-Recursive] [[-ControllerId] <String>] [[-Limit] <Int32>] [<CommonParameters>]
DESCRIPTION
This cmdlet returns a number of Notices from Notice Boards.
The following REST Web Service API resources are used:
* /notice/boards
PARAMETERS
Path
-Path <String>
Specifies the path to a Notice Board.
The path includes folder and sub-folders and the name of the Notice Board.
Required? | false |
Position? | 1 |
Default value | |
Accept pipeline input? | true (ByPropertyName) |
Accept wildcard characters? | false |
Folder
-Folder <String>
Specifies the folder and optionally sub-folders from which Notices are returned.
Required? | false |
Position? | 2 |
Default value | |
Accept pipeline input? | true (ByPropertyName) |
Accept wildcard characters? | false |
Recursive
-Recursive <SwitchParameter>
When used with the -Folder parameter specifies that any sub-folders should be looked up.
By default no sub-folders will be searched for Notice Boards.
Required? | false |
Position? | named |
Default value | False |
Accept pipeline input? | true (ByPropertyName) |
Accept wildcard characters? | false |
ControllerId
-ControllerId <String>
Optionally specifies the identification of the Controller from which to read Notices.
Required? | false |
Position? | 3 |
Default value | |
Accept pipeline input? | true (ByPropertyName) |
Accept wildcard characters? | false |
Limit
-Limit <Int32>
Specifies the number of Notice Boards for which notices are returned.
* Default: 10000
* Umlimited: -1
Required? | false |
Position? | 4 |
Default value | 10000 |
Accept pipeline input? | true (ByPropertyName) |
Accept wildcard characters? | false |
RELATED LINKS
EXAMPLES
-------------------------- EXAMPLE 1 --------------------------
PS > $notices = Get-JS7Notice
Returns Notices form all Notice Boards.
-------------------------- EXAMPLE 2 --------------------------
PS > $notices = Get-JS7Notice -Path /ProductDemo/Sequencing/pdSequenceSynchroneously
Returns Notices from the indicated Notice Board.
-------------------------- EXAMPLE 3 --------------------------
PS > $notices = Get-JS7Notice -Folder /ProductDemo -Recursive
Returns Notices for Notice Boards from the indicated folder and any sub-folders.