-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathiscUtils.psm1
More file actions
9 lines (7 loc) · 808 Bytes
/
iscUtils.psm1
File metadata and controls
9 lines (7 loc) · 808 Bytes
1
2
3
4
5
6
7
8
9
#Get all function definition files.
$allFunctions = @(Get-ChildItem -Path $PSScriptRoot -Recurse -Include *.ps1)
#Dot source the files
foreach ($import in $allFunctions) {
. $import.FullName
}
Export-ModuleMember -Function 'Connect-ISC', 'Get-ISCAccessProfile', 'Get-ISCAccount', 'Get-ISCConnection', 'Get-ISCConnectorRule', 'Get-ISCEntitlement', 'Get-ISCIdentity', 'Get-ISCIdentityAttribute', 'Get-ISCIdentityAttributeList', 'Get-ISCPendingTaskList', 'Get-ISCSource', 'Get-ISCSourceSchema', 'Get-ISCTaskList', 'Get-ISCTransform', 'Get-ISCWorkflow', 'Get-ISCWorkflowExecution', 'Get-ISCWorkflowExecutionList', 'Invoke-ISCAccountAggregation', 'Invoke-ISCQuery', 'New-ISCTenant', 'Remove-ISCTenant', 'Set-ISCAccessProfile', 'Set-ISCEntitlement', 'Set-ISCTaskCompleted', 'Test-ISCConnection' -Alias @()