The function builder was designed to help generate Table API functions easily.
It can be used for those wishing to generate functions for tables that are not listed in the module at present, custom tables, or to recreate existing functions if they are missing modified or custom properties.
The idea is to input a table name and it will generate the PS function automatically based on a template file in this repo & metadata pulled from ServiceNow.
The script itself is a bit rough and ready in it's current state (#29), but it works.
The legacy manual process
All Table API functions in this module follow the same framework, as such to create a new one the following manual steps would normally be required:
- Duplicate an existing Table API function of the same verb type. Example: Get-SNOWIncident
- Rename the file & function name reflective of the new table name
- Remove all existing parameters and add new parameters that match the relevant table
- Change the table name in the
Begin{}
block - Add the function to the module manifest
While relatively simple, this process still takes time, working out the properties of the target table, the types, mandatory values, display labels/aliases and so on.
- Clone this repo and navigate to
\PSSnow\functionBuilder
Import-Module "..\src\PSSnow.psd1" -Force
Set-SNOWAuth
with either credentials or OAuth- If you are using a developer instance, ensure its spun up!
- Run the command shown below these steps
add-Force
if you wish to replace an existing function of the same name. - Repeat the above step using the verbs
Set-
andNew-
if required.
TypicallyRemove-
is not used asRemove-SNOWObject
can be used against any returned record. - Your new functions will be generated under the
src\Public\table\
folder and added to the module manifest. - Edit the newly generated .ps1 function files, scan through the parameters and validate.
Remove any parameters that you feel are unnecessary and save.
Add any additional functionality to the begin or process blocks where required. - Run pester tests to ensure everything passes
- Re-import the module, set authentication and try the new functions
.\New-SNOWTableFunction -TableName "sys_user" -FunctionName "Get-SNOWUser" -AddToManifest -Verbose
⚠️ If a value is too long and provided to the ServiceNow Table API during New/Set functions it will be automatically cut without warning.
Currently parameter length validation is omitted by default.
The reasoning is that this likely varies from instance to instance depending on configuration and cannot be easily accounted for out of the box.
It is therefore available as a switch on the function builder (for individuals generating more customized versions of this module) but not included in the base module functions.
Existing pester tests should cover any newly added TableAPI functions.
Additional functionality added on top of the function builder generation will need to be accounted for in separate tests.