< Back

Remove-AzureDatabricksItem

Sun Jan 19, 2020 6:07 pm

NAME Remove-AzureDatabricksItem



SYNOPSIS

Deletes an item from the Azure Databricks workspace.





SYNTAX

Remove-AzureDatabricksItem [-Connection] <Object> [-Path] <String> [<CommonParameters>]





DESCRIPTION

Deletes an item from the Azure Databricks workspace. If the Path paramter points to a directory, the entire

contents of the directory will be removed, recursively.





PARAMETERS

-Connection <Object>

An object that represents an Azure Databricks API connection where you want to delete from.



Required? true

Position? 1

Default value

Accept pipeline input? false

Accept wildcard characters? false



-Path <String>

The path of the item you want to remove from your workspace. If a directory is supplied, it will remove it and

the contents of the directory, recursively.



Required? true

Position? 2

Default value

Accept pipeline input? false

Accept wildcard characters? false



<CommonParameters>

This cmdlet supports the common parameters: Verbose, Debug,

ErrorAction, ErrorVariable, WarningAction, WarningVariable,

OutBuffer, PipelineVariable, and OutVariable. For more information, see

about_CommonParameters (https:/go.microsoft.com/fwlink/?LinkID=113216).



INPUTS



OUTPUTS



NOTES





Author: Drew Furgiuele (@pittfurg), http://www.port1433.com

Website: https://www.igs.com

Copyright: (c) 2019 by IGS, licensed under MIT

License: MIT https://opensource.org/licenses/MIT



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



PS C:\\>Remove-AzureDatabricksItem -Connection $Connection -Path "/users/Drew/SomeNotebook"



Deletes the item "SomeNotebook" from the /users/Drew directory in your Azure Databricks workspace on the instance

defined in $Connection











RELATED LINKS