Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Get-JS7Schedule [[-SchedulePath] <String>] [[-WorkflowPath] <String>] [[-Folder] <String>] [-Recursive] [[-ControllerId] <String>] [<CommonParameters>]

DESCRIPTION

Schedules are selected from the JOC Cockpit inventory

* by the path and name of a schedule,
* by the folder of the schedule location including sub-folders,
* by the path and name of a workflow.

Resulting calendars schedules can be forwarded to other cmdlets for pipelined bulk operations.

The following REST Web Service API resources are used:

* /schedules

...

-SchedulePath <String>
Optionally specifies the path and name of a schedule that should be returned. One of the parameters -Folder, -SchedulePath or -WorkflowPath has to be specified if no pipelined path properties are provided.

Required?false
Position?1
Default value
Accept pipeline input?true (ByValue, ByPropertyName)
Accept wildcard characters?false

WorkflowPath

-WorkflowPath <String>
Optionally specifies the path and name of a workflow for which schedules should be returned.

Required?false
Position?2
Default value
Accept pipeline input?true (ByValue, ByPropertyName)
Accept wildcard characters?false

...

-Folder <String>
Optionally specifies the folder for which schedules should be returned.
One of the parameters -Folder, -SchedulePath or -WorkflowPath has to be specified if no pipelined path properties are provided.

Required?false
Position?3
Default value/
Accept pipeline input?true (ByPropertyName)
Accept wildcard characters?false

...

Required?false
Position?named
Default valueFalse
Accept pipeline input?false
Accept wildcard characters?false

ControllerId

-ControllerId <String>

Required?false
Position?4
Default value
Accept pipeline input?true (ByPropertyName)
Accept wildcard characters?false

about_JS7

EXAMPLES

...

-------------------------- EXAMPLE 4 --------------------------

PS > $calendars $schedules = Get-JS7Schedule -WorkflowPath /some/path

...