Versions Compared

Key

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

NAME

Send-JobSchedulerRequest

SYNOPSIS

Sends a JSON request or XMl command to the JobScheduler Web Service.

SYNTAX

Send-JobSchedulerRequest -Path <String> -Body <String> [-Id <String>] [-Base <String>] [-Method <String>] [[-
ContentType] <String>] [-Headers <Hashtable>] <CommonParameters>

DESCRIPTION

The JobScheduler Web Service accepts JSON requests and a number of XML commands.

...

  • JSON requests and forwards them to the JOC Cockpit REST Web Service.
  • XML commands and forwards them to the JobScheduler REST Web Service.

PARAMETERS

Path

-Path <String>
The Path specifies the part of URL that states the operation that is used for the request,
see http://test.sos-berlin.com/JOC/raml-doc/JOC-API/ for a complete list of Paths.

...

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

Body

-Body <String>
Specifies the JSON elements or XML command to be executed.

...

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

Id

-Id <String>
The Id specifies the JobScheduler ID that identifies an individual JobScheduler Master.

...

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

Base

-Base <String>
The Base is used as a prefix to the Path for the URL and is configured with the web server
that hosts the JobScheduler Web Service.

...

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

Method

-Method <String>
This parameter specifies the HTTP method in use.

...

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

ContentType

-ContentType <String>
The HTTP content type is

...

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

Headers

-Headers <Hashtable>
A hashmap can be specified with name/value pairs for HTTP headers.

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

about_jobscheduler

EXAMPLES

-------------------------- EXAMPLE 1 --------------------------

...