forked from treestryder/powershell_module_workdayapi
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathWorkdayApi.psd1
More file actions
45 lines (44 loc) · 1.49 KB
/
WorkdayApi.psd1
File metadata and controls
45 lines (44 loc) · 1.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
@{
RootModule = 'WorkdayApi.psm1'
ModuleVersion = '2.1.5'
GUID = 'bd4390dc-a8ad-4bce-8d69-f53ccf8e4163'
Author = 'Nathan Hartley & Darren J Robinson'
Copyright = '(c) 2019 . All rights reserved.'
Description = 'Provides a means to access the Workday SOAP API in a Powershell friendly manner.'
PowerShellVersion = '5.0'
FunctionsToExport = @(
'ConvertFrom-WorkdayWorkerXml',
'Export-WorkdayDocument',
'Get-WorkdayToAdData',
'Get-WorkdayReport',
'Get-WorkdayWorker',
'Get-WorkdayWorkerAdv'
'Get-WorkdayWorkerByIdLookupTable',
'Invoke-WorkdayRequest',
'Remove-WorkdayConfiguration',
'Set-WorkdayWorkerPhoto',
'Get-WorkdayWorkerPhoto',
'Get-WorkdayEndpoint',
'Set-WorkdayCredential',
'Set-WorkdayEndpoint',
'Save-WorkdayConfiguration',
'Get-WorkdayWorkerEmail',
'Set-WorkdayWorkerEmail',
'Update-WorkdayWorkerEmail',
'Get-WorkdayWorkerDocument',
'Set-WorkdayWorkerDocument',
'Get-WorkdayWorkerNationalId',
'Get-WorkdayWorkerOtherId',
'Remove-WorkdayWorkerOtherId',
'Set-WorkdayWorkerOtherId',
'Update-WorkdayWorkerOtherId',
'Get-WorkdayWorkerProvData',
'Get-WorkdayWorkerMgmtData',
'Get-WorkdayWorkerPhone',
'Set-WorkdayWorkerPhone',
'Update-WorkdayWorkerPhone',
'Start-WorkdayIntegration',
'Get-WorkdayIntegrationEvent',
'Get-WorkdayDate'
)
}