HornbillUserCreate.ps1
<#PSScriptInfo .VERSION 1.1.0 .GUID 89e1b09f-94e7-448b-8f86-b6211fbfaab2 .AUTHOR steve.goldthorpe@hornbill.com .COMPANYNAME Hornbill .TAGS hornbill powershell azure automation workflow runbook .LICENSEURI https://wiki.hornbill.com/index.php/The_Hornbill_Community_License_(HCL) .PROJECTURI https://github.com/hornbill/powershellHornbillAzureRunbooks .ICONURI https://wiki.hornbill.com/skins/common/images/HBLOGO.png .RELEASENOTES Removed requirement to provide instanceZone param Replaced userId input param with newId, and password with newPwd .DESCRIPTION Azure Automation Runbook to create a user on a Hornbill instance. #> #Requires -Module @{ModuleName = 'HornbillAPI'; ModuleVersion = '1.1.0'} #Requires -Module @{ModuleName = 'HornbillHelpers'; ModuleVersion = '1.1.1'} workflow Hornbill_UserCreate_Workflow { #Define Output Stream Type [OutputType([object])] # Define runbook input params Param ( # Instance connection params [Parameter (Mandatory= $true)] [string] $instanceName, [Parameter (Mandatory= $true)] [string] $instanceKey, # API Params [Parameter (Mandatory= $true)] [string] $newId, [Parameter (Mandatory= $true)] [string] $name, [Parameter (Mandatory= $true)] [string] $newPwd, [string] $userType, [string] $firstName, [string] $lastName, [string] $jobTitle, [string] $siteName, [string] $phone, [string] $email, [string] $mobile, [string] $availabilityStatus, [string] $absenceMessage, [string] $timeZone, [string] $language, [string] $dateTimeFormat, [string] $dateFormat, [string] $timeFormat, [string] $currencySymbol, [string] $countryCode ) # Define instance details Set-HB-Instance -Instance $instanceName -Key $instanceKey # Base64 encode password string $pwdb64 = ConvertTo-HB-B64Encode $newPwd # Get SiteID from Name $siteId = "" if($siteName -and $siteName -ne "") { $siteObj = Get-HB-SiteID $siteName $siteId = $siteObj.SiteID } Add-HB-Param "userId" $newId $false Add-HB-Param "name" $name $false Add-HB-Param "password" $pwdb64 $false Add-HB-Param "userType" $userType $false Add-HB-Param "firstName" $firstName $false Add-HB-Param "lastName" $lastName $false Add-HB-Param "jobTitle" $jobTitle $false Add-HB-Param "site" $siteId $false Add-HB-Param "phone" $phone $false Add-HB-Param "email" $email $false Add-HB-Param "mobile" $mobile $false Add-HB-Param "availabilityStatus" $availabilityStatus $false Add-HB-Param "absenceMessage" $absenceMessage $false Add-HB-Param "timeZone" $timeZone $false Add-HB-Param "language" $language $false Add-HB-Param "dateTimeFormat" $dateTimeFormat $false Add-HB-Param "dateFormat" $dateFormat $false Add-HB-Param "timeFormat" $timeFormat $false Add-HB-Param "currencySymbol" $currencySymbol $false Add-HB-Param "countryCode" $countryCode $false # Invoke XMLMC call, output returned as PSObject $xmlmcOutput = Invoke-HB-XMLMC "admin" "userCreate" # Build resultObject to write to output $resultObject = New-Object PSObject -Property @{ Status = $xmlmcOutput.status Error = $xmlmcOutput.error } if($resultObject.Status -ne "ok"){ Write-Error $resultObject } else { Write-Output $resultObject } } |