Get-R1DataSourcePluginClass
Get-R1DataSourcePluginClass
SYNOPSIS
Returns the classes a plugin provides.
SYNTAX
Installed (Default)
Get-R1DataSourcePluginClass -pluginName <String> [<CommonParameters>]
Import
Get-R1DataSourcePluginClass -pluginName <String> -importId <String> [<CommonParameters>]
DESCRIPTION
Returns the Java classes a plugin provides, either for an installed plugin or for one in an upload session which has not been imported yet.
EXAMPLES
Example 1
Get-R1DataSourcePluginClass -pluginName 'example'
Returns the classes of an installed plugin.
Example 2
$Staged = Add-R1DataSourcePlugin -Path .\connector.jar
Get-R1DataSourcePluginClass -pluginName @($Staged.plugins).name[0] -importId $Staged.id
Returns the classes of a plugin which has been uploaded but not yet installed.
PARAMETERS
-pluginName
The name of the plugin.
Type: String
Parameter Sets: (All)
Aliases: name
Required: True
Position: Named
Default value: None
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False
-importId
The identifier of the upload session, as returned by Import-R1DataSourceType.
Type: String
Parameter Sets: Import
Aliases:
Required: True
Position: Named
Default value: None
Accept pipeline input: True (ByPropertyName)
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.