< Back

Add-DatabricksMemberToGroup

Sat Jan 11, 2020 9:48 am

NAME Add-DatabricksMemberToGroup



SYNOPSIS

Add Databricks user or group to a group.





SYNTAX

Add-DatabricksMemberToGroup [[-BearerToken] <String>] [[-Region] <String>] [-Member] <String> [-Parent] <String>

[<CommonParameters>]





DESCRIPTION

This command allows to add existing user or group to a group.





PARAMETERS

-BearerToken <String>

Your Databricks Bearer token to authenticate to your workspace (see User Settings in Databricks WebUI)



Required? false

Position? 1

Default value

Accept pipeline input? false

Accept wildcard characters? false



-Region <String>

Azure Region - must match the URL of your Databricks workspace, example northeurope



Required? false

Position? 2

Default value

Accept pipeline input? false

Accept wildcard characters? false



-Member <String>

Name of an exsisting user or a group.



Required? true

Position? 3

Default value

Accept pipeline input? false

Accept wildcard characters? false



-Parent <String>

Name of an existing parent group.



Required? true

Position? 4

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: Tadeusz Balcer



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



C:\\PS>Add-DatabricksUserToGroup -BearerToken $BearerToken -Region $Region -Name "user@yourdomain.com" -Parent

"developers"



This example adds user user@yourdomain.com to "developers" group











RELATED LINKS