Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mojoaar/psdatagerry
PowerShell module to work with DATAGERRY CMDB thru the Rest API.
https://github.com/mojoaar/psdatagerry
cmdb datagerry module opensource powershell
Last synced: about 10 hours ago
JSON representation
PowerShell module to work with DATAGERRY CMDB thru the Rest API.
- Host: GitHub
- URL: https://github.com/mojoaar/psdatagerry
- Owner: mojoaar
- License: gpl-3.0
- Created: 2021-03-23T06:08:47.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-03-25T16:26:48.000Z (over 3 years ago)
- Last Synced: 2023-10-20T01:56:54.598Z (about 1 year ago)
- Topics: cmdb, datagerry, module, opensource, powershell
- Language: PowerShell
- Homepage: https://datagerry.com
- Size: 29.3 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PSDATAGERRY - PowerShell Module
This PowerShell module provides a series of cmdlets for interacting with the [DATAGERRY Rest API](https://datagerry.com/). Invoke-RestMethod is used for all API calls.
## Requirements
Requires PowerShell 3.0 or above (this is when `Invoke-RestMethod` was introduced).
## Usage
Download or clone the latest files and place the module folder in your PowerShell profile directory (i.e. the `Modules` directory under wherever `$profile` points to in your PS console) and run:
`Import-Module PSDATAGERRY`
Once you've done this, all the cmdlets will be at your disposal, you can see a full list using `Get-Command -Module PSDATAGERRY`. Remember to run Set-DataGerryAuth before beginning to work in your environment.## Cmdlets
* Get-DataGerryObjects
* Get-DataGerryTypes
* Get-DataGerryUsers
* New-DataGerryObject
* Set-DataGerryAuth
* Update-DataGerryObject## Changelog
* 0.0.1 - 2021.03.25
* Initial release of module