Versions Compared

Key

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

...

Add-JS7InventoryItem

SYNOPSIS

Add Adds a configuration scheduling object such as a workflow from a JSON file PowerShell object to the JOC Cockpit inventory

...

Add-JS7InventoryItem [-Path] <String> [-Type] <String> [-Item] <Object> [[-DocPath] <String>] [[-AuditComment] <String>] [[-AuditTimeSpent] <Int32>] [[-AuditTicketLink] <Uri>] [<CommonParameters>]

DESCRIPTION

Scheduling objects can be represented in JSON format, however, they have to be converted to PowerShell objects
to be processed by the cmdlet.

Basic examples how to convert JSON to PowerShell objects:

* '{ "limit": 1 }' | ConvertFrom-Json
** The JSON representation is converted from a string to a PowerShell object

* Get-Content /tmp/myForkExample.workflow.json -Raw | ConvertFrom-Json -Depth 100
** The contents of a file holding the JSON representation is converted to a PowerShell object

This cmdlet accepts scheduling objects This cmdlet reads configuration objects from JSON files and stores them with the JOC Cockpit inventory.
Consider that imported added objects have to be deployed or released with the Deploy-JS7DeployableObject JS7DeployableItem and Deploy-JS7ReleasableObject JS7ReleasableItem cmdlets.

The following REST Web Service API resources are used:

* /inventory/store

PARAMETERS

Path

-Path <String>
Specifies the folder, sub-folder and name of the object to be added, e.g. a workflow path.

...

-Type <String>
Specifies the object type which is one of:

* Deployable object types
** WORKFLOW
* JOBCLASS
** FILEORDERSOURCE
** JOBRESOURCE
** NOTICEBOARD
** LOCK
* JUNCTION
* FILEORDERSOURCE* Releasable object types
** INCLUDESCRIPT
** JOBTEMPLATE
** WORKINGDAYSCALENDAR
** NONWORKINGDAYSCALENDAR
** SCHEDULE
** REPORT

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

...

-Item <Object>
Specifies the PowerShell object that represents the JSON item to be added. Consider to create creating a PowerShell object from JSON like this:

'{ "limit": 1 }' | ConvertFrom-Json

...

-AuditComment <String>
Specifies a free text that indicates the reason for the current intervention, e.g. "business requirement", "maintenance window" etc.

The Audit Comment is visible from the Audit Log view of the JOC Cockpit.
This parameter is not mandatory. However, however, the JOC Cockpit can be configured to enforce require Audit Log comments for any all interventions.

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

...

-AuditTimeSpent <Int32>
Specifies the duration in minutes that the current intervention required.

This information is visible with shown in the Audit Log view. It can be useful when integrated
with a ticket system that logs the time spent on interventions with JobSchedulerJS7.

Required?false
Position?6
Default value0
Accept pipeline input?true (ByPropertyName)
Accept wildcard characters?false

...

-AuditTicketLink <Uri>
Specifies a URL to a ticket system that keeps track of any interventions performed for JobSchedulerJS7.

This information is visible with shown in the Audit Log view of JOC Cockpit.
It can be useful when integrated with a ticket system that logs interventions with JobSchedulerJS7.

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

...

On-the-fly adds a resource lock to the invnetoryinventory. The JSON document for the resource lock is specified with the -Item parameter.

...

PS > Add-JS7InventoryItem -Path /some/directory/sampleLock -Type 'LOCK' -Item (Get-Content /tmp/myForkExample.workflow.json -Raw | ConvertFrom-Json -Depth 100)

Reads a resource lock from a file and adds it to the invnetory.