Versions Compared

Key

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

...

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

PARAMETERS

SchedulePath

-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

...

-Recursive <SwitchParameter>
Specifies that any all sub-folders should be looked up if the -Folder parameter is used.
By default no sub-folders will be searched for schedules.

...

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

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

...