New-R1CustomTask

SYNOPSIS

Creates a custom task.

SYNTAX

New-R1CustomTask [-JavaClassPath] <String> [-TaskPropertiesPath] <String> [-WhatIf] [-Confirm]
 [<CommonParameters>]

DESCRIPTION

Creates a task from a compiled Java class and a properties file, both uploaded together as multipart form data.

EXAMPLES

Example 1

New-R1CustomTask -JavaClassPath .\MyTask.class -TaskPropertiesPath .\task.properties

Creates a custom task from a class and its properties.

PARAMETERS

-JavaClassPath

The path of the compiled Java class implementing the task.

Type: String
Parameter Sets: (All)
Aliases:

Required: True
Position: 1
Default value: None
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False

-TaskPropertiesPath

The path of the properties file configuring the task.

Type: String
Parameter Sets: (All)
Aliases:

Required: True
Position: 2
Default value: None
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False

-WhatIf

Shows what would happen if the cmdlet runs. The cmdlet is not run.

Type: SwitchParameter
Parameter Sets: (All)
Aliases: wi

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-Confirm

Prompts you for confirmation before running the cmdlet.

Type: SwitchParameter
Parameter Sets: (All)
Aliases: cf

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

INPUTS

None

OUTPUTS

System.Void

NOTES

The API marks this endpoint experimental.

This command has not been exercised against a live deployment, so its behaviour rests on the published API definition alone.

Get-R1Task

Set-R1Task