< Back

Test-AzureDatabricksConnection

Sun Jan 19, 2020 6:08 pm

NAME Test-AzureDatabricksConnection



SYNOPSIS

A simple function to test the connectivity to an Azure Databricks instance.





SYNTAX

Test-AzureDatabricksConnection [-ConnectionObject] <Object> [<CommonParameters>]





DESCRIPTION

This function will return $True if the defined connection object can successfully connect to an Azure Databricks

instance, or

$False if there's an error.





PARAMETERS

-ConnectionObject <Object>

An object that represents an Azure Databricks API connection where you want to stop your job.



Required? true

Position? 1

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:\\>Stop-AzureDatabricksJob -Connection $Connection -JobID 1



Stops job id 1 on the Azure Databricks instance defined in $Connection











RELATED LINKS