Roles.psm1
<# .SYNOPSIS The get role operation will retrieve a list of roles from your company. .DESCRIPTION The get roles operation will retrieve a list of roles from your company. This can be either all roles, or roles filtered by name or ID. .PARAMETER Name Specifies the name of an existing variable to retrieve, can be specified as an array of strings to retrieve multiple variables .PARAMETER Name Specifies the name of an existing variable to retrieve, can be specified as an array of strings to retrieve multiple variables .PARAMETER CompanyName The companyname that's used in the helloId URL to know which HelloID tenant to talk to. Required if not connected with Connect-HelloId. .PARAMETER ApiKey The Apikey to use for the api call. Required if not connected with Connect-HelloId. .PARAMETER ApiSecret The Apisecret belonging to the apikey, has to be a securestring. Required if not connected with Connect-HelloId. .EXAMPLE .EXAMPLE .INPUTS .OUTPUTS #> function Get-HidRole { [CmdletBinding(DefaultParameterSetName = 'guid',PositionalBinding = $false)] [Alias()] [OutputType([String])] Param ( # the name of an existing variable [Parameter(Mandatory = $false, ValueFromPipeline = $true, ValueFromPipelineByPropertyName = $true, ParameterSetName = "guid")] [ValidateNotNullOrEmpty()] [guid[]]$RoleGuid, # the name of an existing variable [Parameter(Mandatory = $false, ValueFromPipeline = $true, ValueFromPipelineByPropertyName = $true, ParameterSetName = "Name")] [ValidateNotNullOrEmpty()] [string[]]$Name, # Company name used in the URL [Parameter(Mandatory= $false)] [ValidateNotNullOrEmpty()] [string]$CompanyName, # Api key [Parameter(Mandatory= $false)] [ValidateNotNullOrEmpty()] [string]$ApiKey, # Api secret [Parameter(Mandatory= $false)] [ValidateNotNullOrEmpty()] [securestring]$ApiSecret ) begin { if ($PSBoundParameters.ContainsKey("CompanyName") -AND $PSBoundParameters.ContainsKey("ApiKey") -AND $PSBoundParameters.ContainsKey("ApiSecret") ){ Write-Verbose -Message "Using connectioninfo and credentials from parameter" #Create credential object for authentication $Cred = New-Object System.Management.Automation.PSCredential ($ApiKey, $ApiSecret) } elseif ($Global:HelloIdConnection.ApiCredentials) { Write-Verbose -Message "Using Global connectioninfo and credentials from Connect-HelloId " $Cred = $Global:HelloIdConnection.ApiCredentials $CompanyName = $Global:HelloIdConnection.CompanyName } else { throw "Error finding connectioninfo. Connect using Connect-HelloId, or specifie CompanyName, ApiKey and ApiSecret" } #Headers $headers = @{ "Content-Type" = "application/json" } } #End begin process { if ($PSBoundParameters.ContainsKey("RoleGuid")){ foreach ($guid in $RoleGuid){ $URI = "https://$CompanyName.helloid.com/api/v1/roles/$guid" $output = Invoke-RestMethod -Uri $URI -Method "GET" -Headers $headers -Credential $Cred -UseBasicParsing $output } } elseif ($PSBoundParameters.ContainsKey("Name")) { foreach ($item in $Name){ $URI = "https://$CompanyName.helloid.com/api/v1/roles/$item" $output = Invoke-RestMethod -Uri $URI -Method "GET" -Headers $headers -Credential $Cred -UseBasicParsing $output } } else { $URI = "https://$CompanyName.helloid.com/api/v1/roles" $output = Invoke-RestMethod -Uri $URI -Method "GET" -Headers $headers -Credential $Cred -UseBasicParsing $output } } #End process end { } #End end } #End function <# .SYNOPSIS The new role operation will create a new role .DESCRIPTION The new role cmdlet will create a new role in your tenant .PARAMETER Name Specifies the name of the role to create .PARAMETER Description Specifies the description of the role to create .PARAMETER UserNames The User names to add to the role .PARAMETER UserGuids The user Guids to add to the role .PARAMETER Rights Specifies the Rights to assign to the role .PARAMETER Enabled Role enabled true / false .PARAMETER Default Role is a default role true / false .PARAMETER CompanyName The companyname that's used in the helloId URL to know which HelloID tenant to talk to. Required if not connected with Connect-HelloId. .PARAMETER ApiKey The Apikey to use for the api call. Required if not connected with Connect-HelloId. .PARAMETER ApiSecret The Apisecret belonging to the apikey, has to be a securestring. Required if not connected with Connect-HelloId. .EXAMPLE .EXAMPLE .INPUTS .OUTPUTS #> function New-HidRole { [CmdletBinding(PositionalBinding = $false)] [Alias()] [OutputType([String])] Param ( # the name of an existing variable [Parameter(Mandatory = $false, ValueFromPipeline = $true, ValueFromPipelineByPropertyName = $true)] [ValidateNotNullOrEmpty()] [string]$Name, # description of the role [Parameter(Mandatory= $false)] [ValidateNotNullOrEmpty()] [string]$Description, # Usernames to add to the role [Parameter(Mandatory= $false)] [ValidateNotNullOrEmpty()] [string[]]$UserNames = @(), # UserGuids to add to the role [Parameter(Mandatory= $false)] [ValidateNotNullOrEmpty()] [guid[]]$UserGuids = @(), # Rights to assign to the role [Parameter(Mandatory= $false)] [ValidateNotNullOrEmpty()] [int[]]$Rights = @(), # Role enabled true / false [Parameter(Mandatory= $false)] [ValidateNotNullOrEmpty()] [bool]$Enabled = $true, # Default role true / false [Parameter(Mandatory= $false)] [ValidateNotNullOrEmpty()] [bool]$Default = $false, # Company name used in the URL [Parameter(Mandatory= $false)] [ValidateNotNullOrEmpty()] [string]$CompanyName, # Api key [Parameter(Mandatory= $false)] [ValidateNotNullOrEmpty()] [string]$ApiKey, # Api secret [Parameter(Mandatory= $false)] [ValidateNotNullOrEmpty()] [securestring]$ApiSecret ) begin { if ($PSBoundParameters.ContainsKey("CompanyName") -AND $PSBoundParameters.ContainsKey("ApiKey") -AND $PSBoundParameters.ContainsKey("ApiSecret") ){ Write-Verbose -Message "Using connectioninfo and credentials from parameter" #Create credential object for authentication $Cred = New-Object System.Management.Automation.PSCredential ($ApiKey, $ApiSecret) } elseif ($Global:HelloIdConnection.ApiCredentials) { Write-Verbose -Message "Using Global connectioninfo and credentials from Connect-HelloId " $Cred = $Global:HelloIdConnection.ApiCredentials $CompanyName = $Global:HelloIdConnection.CompanyName } else { throw "Error finding connectioninfo. Connect using Connect-HelloId, or specifie CompanyName, ApiKey and ApiSecret" } #Headers $headers = @{ "Content-Type" = "application/json" } #Variables $JsonUserNames = ConvertTo-Json $UserNames -Depth 15 $JsonUserGuids = ConvertTo-Json $UserGuids -Depth 15 $JsonRights = ConvertTo-Json $Rights -Depth 15 if (!($Description)){ $Description = $Name } } #End begin process { $sbBody = [System.Text.StringBuilder]::new() $null = $SbBody.AppendLine("{") $null = $SbBody.AppendLine("`"name`": `"$Name`",") $null = $SbBody.AppendLine("`"Description`": `"$Description`",") $null = $SbBody.AppendLine("`"IsEnabled`": $(($Enabled).ToString().ToLower()),") $null = $SbBody.AppendLine("`"IsDefault`": $(($Default).ToString().ToLower()),") $null = $SbBody.AppendLine("`"UserNames`": $JsonUserNames,") $null = $SbBody.AppendLine("`"UserGuids`": $JsonUserGuids,") $null = $SbBody.AppendLine("`"Rights`": $JsonRights") $null = $SbBody.AppendLine("}") Write-Debug "body is:`n $($SbBody.ToString())" $URI = "https://$CompanyName.helloid.com/api/v1/roles" $output = Invoke-RestMethod -Uri $URI -Method "POST" -Headers $headers -Credential $Cred -UseBasicParsing -Body $sbBody.tostring() $output } #End process end { } #End end } #End function <# .SYNOPSIS The set role operation will update a role .DESCRIPTION The set role cmdlet will update a role in your tenant .PARAMETER Name Specifies the name of an existing variable to retrieve, can be specified as an array of strings to retrieve multiple variables .PARAMETER Name Specifies the name of an existing variable to retrieve, can be specified as an array of strings to retrieve multiple variables .PARAMETER CompanyName The companyname that's used in the helloId URL to know which HelloID tenant to talk to. Required if not connected with Connect-HelloId. .PARAMETER ApiKey The Apikey to use for the api call. Required if not connected with Connect-HelloId. .PARAMETER ApiSecret The Apisecret belonging to the apikey, has to be a securestring. Required if not connected with Connect-HelloId. .EXAMPLE .EXAMPLE .INPUTS .OUTPUTS #> function Set-HidRole { [CmdletBinding(PositionalBinding = $false,DefaultParameterSetName = "guid")] [Alias()] [OutputType([String])] Param ( # the guid of an existing role to update [Parameter(Mandatory = $false, ValueFromPipeline = $true, ValueFromPipelineByPropertyName = $true, ParameterSetName = "guid")] [ValidateNotNullOrEmpty()] [guid]$RoleGuid, # the name of an existing role to update [Parameter(Mandatory = $false, ValueFromPipeline = $true, ValueFromPipelineByPropertyName = $true, ParameterSetName = "name")] [ValidateNotNullOrEmpty()] [string]$Name, # New name for the role [Parameter(Mandatory= $false)] [ValidateNotNullOrEmpty()] [string]$NewName, # Usernames to add to the role [Parameter(Mandatory= $false)] [ValidateNotNullOrEmpty()] [string]$Description, # Role enabled true / false [Parameter(Mandatory= $false)] [ValidateNotNullOrEmpty()] [bool]$Enabled, # Default role true / false [Parameter(Mandatory= $false)] [ValidateNotNullOrEmpty()] [bool]$Default, # Rights to assign to the role [Parameter(Mandatory= $false)] [ValidateNotNullOrEmpty()] [int[]]$Rights, # Company name used in the URL [Parameter(Mandatory= $false)] [ValidateNotNullOrEmpty()] [string]$CompanyName, # Api key [Parameter(Mandatory= $false)] [ValidateNotNullOrEmpty()] [string]$ApiKey, # Api secret [Parameter(Mandatory= $false)] [ValidateNotNullOrEmpty()] [securestring]$ApiSecret ) begin { if ($PSBoundParameters.ContainsKey("CompanyName") -AND $PSBoundParameters.ContainsKey("ApiKey") -AND $PSBoundParameters.ContainsKey("ApiSecret") ){ Write-Verbose -Message "Using connectioninfo and credentials from parameter" #Create credential object for authentication $Cred = New-Object System.Management.Automation.PSCredential ($ApiKey, $ApiSecret) } elseif ($Global:HelloIdConnection.ApiCredentials) { Write-Verbose -Message "Using Global connectioninfo and credentials from Connect-HelloId " $Cred = $Global:HelloIdConnection.ApiCredentials $CompanyName = $Global:HelloIdConnection.CompanyName } else { throw "Error finding connectioninfo. Connect using Connect-HelloId, or specifie CompanyName, ApiKey and ApiSecret" } #Headers $headers = @{ "Content-Type" = "application/json" } #Variables $JsonRights = ConvertTo-Json $Rights -Depth 15 if (!($Description)){ $Description = $Name } } #End begin process { $sbBody = [System.Text.StringBuilder]::new() $null = $SbBody.AppendLine("{") if ($PSBoundParameters.ContainsKey("NewName")) { $null = $SbBody.AppendLine("`"name`": `"$NewName`"") if ($PSBoundParameters.ContainsKey("Description") -or $PSBoundParameters.ContainsKey("Enabled") -or $PSBoundParameters.ContainsKey("Default") -or $PSBoundParameters.ContainsKey("Rights")){ $sbBody.Append(",") } } if ($PSBoundParameters.ContainsKey("Description")) { $null = $SbBody.AppendLine("`"Description`": `"$Description`"") if ($PSBoundParameters.ContainsKey("Enabled") -or $PSBoundParameters.ContainsKey("Default") -or $PSBoundParameters.ContainsKey("Rights")){ $sbBody.Append(",") } } if ($PSBoundParameters.ContainsKey("Enabled")) { $null = $SbBody.AppendLine("`"IsEnabled`": $(($Enabled).ToString().ToLower())") if ($PSBoundParameters.ContainsKey("Default") -or $PSBoundParameters.ContainsKey("Rights")){ $sbBody.Append(",") } } if ($PSBoundParameters.ContainsKey("Default")) { $null = $SbBody.AppendLine("`"IsDefault`": $(($Default).ToString().ToLower())") if ($PSBoundParameters.ContainsKey("Rights")){ $sbBody.Append(",") } } if ($PSBoundParameters.ContainsKey("Rights")) { $null = $SbBody.AppendLine("`"Rights`": $JsonRights") } $null = $SbBody.AppendLine("}") Write-Debug "body is:`n $($SbBody.ToString())" if ($PSBoundParameters.ContainsKey("Name")){ $URI = "https://$CompanyName.helloid.com/api/v1/roles/$Name" } elseif ($PSBoundParameters.ContainsKey("RoleGuid")) { $URI = "https://$CompanyName.helloid.com/api/v1/roles/$RoleGuid" } $output = Invoke-RestMethod -Uri $URI -Method "PUT" -Headers $headers -Credential $Cred -UseBasicParsing -Body $sbBody.tostring() $output } #End process end { } #End end } #End function <# .SYNOPSIS The assign role to user operation will assign a role to a user .DESCRIPTION The assign role to user operation will assign a role to a user .PARAMETER Name Specifies the name of an existing variable to retrieve, can be specified as an array of strings to retrieve multiple variables .PARAMETER Name Specifies the name of an existing variable to retrieve, can be specified as an array of strings to retrieve multiple variables .PARAMETER CompanyName The companyname that's used in the helloId URL to know which HelloID tenant to talk to. Required if not connected with Connect-HelloId. .PARAMETER ApiKey The Apikey to use for the api call. Required if not connected with Connect-HelloId. .PARAMETER ApiSecret The Apisecret belonging to the apikey, has to be a securestring. Required if not connected with Connect-HelloId. .EXAMPLE .EXAMPLE .INPUTS .OUTPUTS #> function New-HidRoleAssignment { [CmdletBinding(PositionalBinding = $false,DefaultParameterSetName = "guid")] [Alias()] [OutputType([String])] Param ( # the guid of an existing role to add users to [Parameter(Mandatory = $false, ValueFromPipeline = $true, ValueFromPipelineByPropertyName = $true, ParameterSetName = "guid")] [ValidateNotNullOrEmpty()] [guid]$RoleGuid, # Name of the role to add users to [Parameter(Mandatory = $false, ValueFromPipeline = $true, ValueFromPipelineByPropertyName = $false, ParameterSetName = "name")] [ValidateNotNullOrEmpty()] [string]$RoleName, # Usernames to add to the role [Parameter(Mandatory= $false)] [ValidateNotNullOrEmpty()] [string[]]$UserNames = @(), # UserGuids to add to the role [Parameter(Mandatory= $false)] [ValidateNotNullOrEmpty()] [guid[]]$UserGuids = @(), # Company name used in the URL [Parameter(Mandatory= $false)] [ValidateNotNullOrEmpty()] [string]$CompanyName, # Api key [Parameter(Mandatory= $false)] [ValidateNotNullOrEmpty()] [string]$ApiKey, # Api secret [Parameter(Mandatory= $false)] [ValidateNotNullOrEmpty()] [securestring]$ApiSecret ) begin { if ($PSBoundParameters.ContainsKey("CompanyName") -AND $PSBoundParameters.ContainsKey("ApiKey") -AND $PSBoundParameters.ContainsKey("ApiSecret") ){ Write-Verbose -Message "Using connectioninfo and credentials from parameter" #Create credential object for authentication $Cred = New-Object System.Management.Automation.PSCredential ($ApiKey, $ApiSecret) } elseif ($Global:HelloIdConnection.ApiCredentials) { Write-Verbose -Message "Using Global connectioninfo and credentials from Connect-HelloId " $Cred = $Global:HelloIdConnection.ApiCredentials $CompanyName = $Global:HelloIdConnection.CompanyName } else { throw "Error finding connectioninfo. Connect using Connect-HelloId, or specifie CompanyName, ApiKey and ApiSecret" } #Headers $headers = @{ "Content-Type" = "application/json" } #Variables $JsonUserNames = ConvertTo-Json $UserNames -Depth 15 $JsonUserGuids = ConvertTo-Json $UserGuids -Depth 15 } #End begin process { $sbBody = [System.Text.StringBuilder]::new() $null = $SbBody.AppendLine("{") $null = $SbBody.AppendLine("`"UserNames`": $JsonUserNames,") $null = $SbBody.AppendLine("`"UserGuids`": $JsonUserGuids") $null = $SbBody.AppendLine("}") Write-Debug "body is:`n $($SbBody.ToString())" if ($PSBoundParameters.ContainsKey("Name")){ $URI = "https://$CompanyName.helloid.com/api/v1/roles/$Name/users" } elseif ($PSBoundParameters.ContainsKey("RoleGuid")) { $URI = "https://$CompanyName.helloid.com/api/v1/roles/$RoleGuid/users" } $output = Invoke-RestMethod -Uri $URI -Method "POST" -Headers $headers -Credential $Cred -UseBasicParsing -Body $sbBody.tostring() $output } #End process end { } #End end } #End function |