├── .github ├── ISSUE_TEMPLATE │ ├── ask_question.md │ ├── bug_report.md │ ├── config.yml │ ├── documentation_issue.md │ └── feature_request.md └── workflows │ ├── cd.yml │ └── ci.yml ├── .gitignore ├── Build ├── build.ps1 └── psake.ps1 ├── CHANGELOG.md ├── Dockerfile ├── LICENSE ├── RELEASE.md ├── Readme.md ├── ServiceNow ├── Private │ ├── Get-ServiceNowAuth.ps1 │ ├── Invoke-ServiceNowRestMethod.ps1 │ ├── Invoke-TableIdLookup.ps1 │ ├── Test-ServiceNowURL.ps1 │ └── Update-ServiceNowDateTimeField.ps1 ├── Public │ ├── Add-ServiceNowAttachment.ps1 │ ├── Export-ServiceNowAttachment.ps1 │ ├── Export-ServiceNowRecord.ps1 │ ├── Get-ServiceNowAttachment.ps1 │ ├── Get-ServiceNowRecord.ps1 │ ├── Invoke-ServiceNowGraphQL.ps1 │ ├── New-ServiceNowChangeRequest.ps1 │ ├── New-ServiceNowChangeTask.ps1 │ ├── New-ServiceNowConfigurationItem.ps1 │ ├── New-ServiceNowIncident.ps1 │ ├── New-ServiceNowQuery.ps1 │ ├── New-ServiceNowRecord.ps1 │ ├── New-ServiceNowSession.ps1 │ ├── Remove-ServiceNowAttachment.ps1 │ ├── Remove-ServiceNowRecord.ps1 │ └── Update-ServiceNowRecord.ps1 ├── ServiceNow-Automation.json ├── ServiceNow.format.ps1xml ├── ServiceNow.psd1 ├── ServiceNow.psm1 └── config │ ├── MimeTypeMap.json │ └── main.json └── Tests ├── AddServiceNowAttachment.Tests.ps1 ├── GetServiceNowAttachment.Tests.ps1 ├── GetServiceNowAttachmentDetail.Tests.ps1 ├── RemoveServiceNowAttachment.Tests.ps1 ├── ServiceNow.Tests.ps1 └── Unit.GenericModule.Tests.ps1 /.github/ISSUE_TEMPLATE/ask_question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snow-Shell/servicenow-powershell/HEAD/.github/ISSUE_TEMPLATE/ask_question.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snow-Shell/servicenow-powershell/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation_issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snow-Shell/servicenow-powershell/HEAD/.github/ISSUE_TEMPLATE/documentation_issue.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snow-Shell/servicenow-powershell/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/cd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snow-Shell/servicenow-powershell/HEAD/.github/workflows/cd.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snow-Shell/servicenow-powershell/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.Pester.Defaults.json 2 | *.zip 3 | .DS_Store -------------------------------------------------------------------------------- /Build/build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snow-Shell/servicenow-powershell/HEAD/Build/build.ps1 -------------------------------------------------------------------------------- /Build/psake.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snow-Shell/servicenow-powershell/HEAD/Build/psake.ps1 -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snow-Shell/servicenow-powershell/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snow-Shell/servicenow-powershell/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snow-Shell/servicenow-powershell/HEAD/LICENSE -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snow-Shell/servicenow-powershell/HEAD/RELEASE.md -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snow-Shell/servicenow-powershell/HEAD/Readme.md -------------------------------------------------------------------------------- /ServiceNow/Private/Get-ServiceNowAuth.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snow-Shell/servicenow-powershell/HEAD/ServiceNow/Private/Get-ServiceNowAuth.ps1 -------------------------------------------------------------------------------- /ServiceNow/Private/Invoke-ServiceNowRestMethod.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snow-Shell/servicenow-powershell/HEAD/ServiceNow/Private/Invoke-ServiceNowRestMethod.ps1 -------------------------------------------------------------------------------- /ServiceNow/Private/Invoke-TableIdLookup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snow-Shell/servicenow-powershell/HEAD/ServiceNow/Private/Invoke-TableIdLookup.ps1 -------------------------------------------------------------------------------- /ServiceNow/Private/Test-ServiceNowURL.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snow-Shell/servicenow-powershell/HEAD/ServiceNow/Private/Test-ServiceNowURL.ps1 -------------------------------------------------------------------------------- /ServiceNow/Private/Update-ServiceNowDateTimeField.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snow-Shell/servicenow-powershell/HEAD/ServiceNow/Private/Update-ServiceNowDateTimeField.ps1 -------------------------------------------------------------------------------- /ServiceNow/Public/Add-ServiceNowAttachment.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snow-Shell/servicenow-powershell/HEAD/ServiceNow/Public/Add-ServiceNowAttachment.ps1 -------------------------------------------------------------------------------- /ServiceNow/Public/Export-ServiceNowAttachment.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snow-Shell/servicenow-powershell/HEAD/ServiceNow/Public/Export-ServiceNowAttachment.ps1 -------------------------------------------------------------------------------- /ServiceNow/Public/Export-ServiceNowRecord.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snow-Shell/servicenow-powershell/HEAD/ServiceNow/Public/Export-ServiceNowRecord.ps1 -------------------------------------------------------------------------------- /ServiceNow/Public/Get-ServiceNowAttachment.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snow-Shell/servicenow-powershell/HEAD/ServiceNow/Public/Get-ServiceNowAttachment.ps1 -------------------------------------------------------------------------------- /ServiceNow/Public/Get-ServiceNowRecord.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snow-Shell/servicenow-powershell/HEAD/ServiceNow/Public/Get-ServiceNowRecord.ps1 -------------------------------------------------------------------------------- /ServiceNow/Public/Invoke-ServiceNowGraphQL.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snow-Shell/servicenow-powershell/HEAD/ServiceNow/Public/Invoke-ServiceNowGraphQL.ps1 -------------------------------------------------------------------------------- /ServiceNow/Public/New-ServiceNowChangeRequest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snow-Shell/servicenow-powershell/HEAD/ServiceNow/Public/New-ServiceNowChangeRequest.ps1 -------------------------------------------------------------------------------- /ServiceNow/Public/New-ServiceNowChangeTask.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snow-Shell/servicenow-powershell/HEAD/ServiceNow/Public/New-ServiceNowChangeTask.ps1 -------------------------------------------------------------------------------- /ServiceNow/Public/New-ServiceNowConfigurationItem.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snow-Shell/servicenow-powershell/HEAD/ServiceNow/Public/New-ServiceNowConfigurationItem.ps1 -------------------------------------------------------------------------------- /ServiceNow/Public/New-ServiceNowIncident.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snow-Shell/servicenow-powershell/HEAD/ServiceNow/Public/New-ServiceNowIncident.ps1 -------------------------------------------------------------------------------- /ServiceNow/Public/New-ServiceNowQuery.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snow-Shell/servicenow-powershell/HEAD/ServiceNow/Public/New-ServiceNowQuery.ps1 -------------------------------------------------------------------------------- /ServiceNow/Public/New-ServiceNowRecord.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snow-Shell/servicenow-powershell/HEAD/ServiceNow/Public/New-ServiceNowRecord.ps1 -------------------------------------------------------------------------------- /ServiceNow/Public/New-ServiceNowSession.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snow-Shell/servicenow-powershell/HEAD/ServiceNow/Public/New-ServiceNowSession.ps1 -------------------------------------------------------------------------------- /ServiceNow/Public/Remove-ServiceNowAttachment.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snow-Shell/servicenow-powershell/HEAD/ServiceNow/Public/Remove-ServiceNowAttachment.ps1 -------------------------------------------------------------------------------- /ServiceNow/Public/Remove-ServiceNowRecord.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snow-Shell/servicenow-powershell/HEAD/ServiceNow/Public/Remove-ServiceNowRecord.ps1 -------------------------------------------------------------------------------- /ServiceNow/Public/Update-ServiceNowRecord.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snow-Shell/servicenow-powershell/HEAD/ServiceNow/Public/Update-ServiceNowRecord.ps1 -------------------------------------------------------------------------------- /ServiceNow/ServiceNow-Automation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snow-Shell/servicenow-powershell/HEAD/ServiceNow/ServiceNow-Automation.json -------------------------------------------------------------------------------- /ServiceNow/ServiceNow.format.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snow-Shell/servicenow-powershell/HEAD/ServiceNow/ServiceNow.format.ps1xml -------------------------------------------------------------------------------- /ServiceNow/ServiceNow.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snow-Shell/servicenow-powershell/HEAD/ServiceNow/ServiceNow.psd1 -------------------------------------------------------------------------------- /ServiceNow/ServiceNow.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snow-Shell/servicenow-powershell/HEAD/ServiceNow/ServiceNow.psm1 -------------------------------------------------------------------------------- /ServiceNow/config/MimeTypeMap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snow-Shell/servicenow-powershell/HEAD/ServiceNow/config/MimeTypeMap.json -------------------------------------------------------------------------------- /ServiceNow/config/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snow-Shell/servicenow-powershell/HEAD/ServiceNow/config/main.json -------------------------------------------------------------------------------- /Tests/AddServiceNowAttachment.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snow-Shell/servicenow-powershell/HEAD/Tests/AddServiceNowAttachment.Tests.ps1 -------------------------------------------------------------------------------- /Tests/GetServiceNowAttachment.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snow-Shell/servicenow-powershell/HEAD/Tests/GetServiceNowAttachment.Tests.ps1 -------------------------------------------------------------------------------- /Tests/GetServiceNowAttachmentDetail.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snow-Shell/servicenow-powershell/HEAD/Tests/GetServiceNowAttachmentDetail.Tests.ps1 -------------------------------------------------------------------------------- /Tests/RemoveServiceNowAttachment.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snow-Shell/servicenow-powershell/HEAD/Tests/RemoveServiceNowAttachment.Tests.ps1 -------------------------------------------------------------------------------- /Tests/ServiceNow.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snow-Shell/servicenow-powershell/HEAD/Tests/ServiceNow.Tests.ps1 -------------------------------------------------------------------------------- /Tests/Unit.GenericModule.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snow-Shell/servicenow-powershell/HEAD/Tests/Unit.GenericModule.Tests.ps1 --------------------------------------------------------------------------------