Uninstall-DifyPlugin
Warning
This help was primarily created by a generative AI. It may contain partially inaccurate expressions.
SYNOPSIS
Uninstalls one or more plugins from the current Dify workspace.
SYNTAX
Uninstall-DifyPlugin [[-Plugin] <PSObject[]>] [-WhatIf] [-Confirm]
[<CommonParameters>]
DESCRIPTION
The Uninstall-DifyPlugin
cmdlet is used to uninstall plugins from the current Dify workspace. You can specify plugins to uninstall either by passing them as pipeline objects or directly using the -Plugin
parameter.
NOTE: This help was primarily created by a generative AI. It may contain partially inaccurate expressions.
EXAMPLES
Example 1
Get-DifyPlugin -Name "ExamplePlugin" | Uninstall-DifyPlugin
Uninstalls the plugin named "ExamplePlugin" from the current workspace.
PARAMETERS
-Plugin
Specifies the plugin(s) to uninstall. You can pass the plugin objects directly or pipe them from Get-DifyPlugin
.
Type: PSObject[]
Parameter Sets: (All)
Aliases:
Required: False
Position: 0
Default value: None
Accept pipeline input: True (ByValue)
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: False
Accept pipeline input: False
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: False
Accept pipeline input: False
Accept wildcard characters: False
CommonParameters
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, -ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.