Welcome to the Chocolatey Community Package Repository! The packages found in this section of the site are provided, maintained, and moderated by the community.
Moderation
Every version of each package undergoes a rigorous moderation process before it goes live that typically includes:
- Security, consistency, and quality checking
- Installation testing
- Virus checking through VirusTotal
- Human moderators who give final review and sign off
More detail at Security and Moderation.
Organizational Use
If you are an organization using Chocolatey, we want your experience to be fully reliable. Due to the nature of this publicly offered repository, reliability cannot be guaranteed. Packages offered here are subject to distribution rights, which means they may need to reach out further to the internet to the official locations to download files at runtime.
Fortunately, distribution rights do not apply for internal use. With any edition of Chocolatey (including the free open source edition), you can host your own packages and cache or internalize existing community packages.
Disclaimer
Your use of the packages on this site means you understand they are not supported or guaranteed in any way. Learn more...
- Passing
- Failing
- Pending
- Unknown / Exempted

Downloads:
1,290
Downloads of v 1.4.0:
546
Last Update:
01 Nov 2018
Package Maintainer(s):
Software Author(s):
- Andrew.Waite
Tags:
auth0 powershell module functions tools- Software Specific:
- Software Site
- Software License
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download

A0Toolkit
- Software Specific:
- Software Site
- Software License
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
1,290
Downloads of v 1.4.0:
546
Maintainer(s):
Software Author(s):
- Andrew.Waite
Edit Package
To edit the metadata for a package, please upload an updated version of the package.
Chocolatey's Community Package Repository currently does not allow updating package metadata on the website. This helps ensure that the package itself (and the source used to build the package) remains the one true source of package metadata.
This does require that you increment the package version.
All Checks are Passing
2 Passing Test
To install A0Toolkit, run the following command from the command line or from PowerShell:
To upgrade A0Toolkit, run the following command from the command line or from PowerShell:
To uninstall A0Toolkit, run the following command from the command line or from PowerShell:
NOTE: This applies to both open source and commercial editions of Chocolatey.
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://chocolatey.org/api/v2. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
- Download the Package Download
- Follow manual internalization instructions
-
Package Internalizer (C4B)
- Run
choco download a0toolkit --internalize --source=https://chocolatey.org/api/v2
(additional options) - Run
choco push --source="'http://internal/odata/repo'"
for package and dependencies - Automate package internalization
- Run
3. Enter your internal repository url
(this should look similar to https://chocolatey.org/api/v2)
4. Choose your deployment method:
choco upgrade a0toolkit -y --source="'STEP 3 URL'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade a0toolkit -y --source="'STEP 3 URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Ensure a0toolkit installed
win_chocolatey:
name: a0toolkit
state: present
version: 1.4.0
source: STEP 3 URL
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
Coming early 2020! Central Managment Reporting available now! More information...
chocolatey_package 'a0toolkit' do
action :install
version '1.4.0'
source 'STEP 3 URL'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
Chocolatey::Ensure-Package
(
Name: a0toolkit,
Version: 1.4.0,
Source: STEP 3 URL
);
Requires Otter Chocolatey Extension. See docs at https://inedo.com/den/otter/chocolatey.
cChocoPackageInstaller a0toolkit
{
Name = 'a0toolkit'
Ensure = 'Present'
Version = '1.4.0'
Source = 'STEP 3 URL'
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'a0toolkit':
provider => 'chocolatey',
ensure => '1.4.0',
source => 'STEP 3 URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
salt '*' chocolatey.install a0toolkit version="1.4.0" source="STEP 3 URL"
See docs at https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html.
5. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
This package was approved as a trusted package on 14 Jul 2020.
A0Toolkit provides custom Auth0 functions via a PowerShell module to support the Auth0 management API.
[CmdletBinding()]
param ( )
end
{
$modulePath = Join-Path $env:ProgramFiles WindowsPowerShell\Modules
$targetDirectory = Join-Path $modulePath A0Toolkit
$scriptRoot = Split-Path $MyInvocation.MyCommand.Path -Parent
$sourceDirectory = Join-Path $scriptRoot Tools
if ($PSVersionTable.PSVersion.Major -ge 5)
{
$manifestFile = Join-Path $sourceDirectory A0Toolkit.psd1
$manifest = Test-ModuleManifest -Path $manifestFile -WarningAction Ignore -ErrorAction Stop
$targetDirectory = Join-Path $targetDirectory $manifest.Version.ToString()
}
Update-Directory -Source $sourceDirectory -Destination $targetDirectory
$binPath = Join-Path $targetDirectory bin
Install-ChocolateyPath $binPath
if ($PSVersionTable.PSVersion.Major -lt 4)
{
$modulePaths = [Environment]::GetEnvironmentVariable('PSModulePath', 'Machine') -split ';'
if ($modulePaths -notcontains $modulePath)
{
Write-Verbose "Adding '$modulePath' to PSModulePath."
$modulePaths = @(
$modulePath
$modulePaths
)
$newModulePath = $modulePaths -join ';'
[Environment]::SetEnvironmentVariable('PSModulePath', $newModulePath, 'Machine')
$env:PSModulePath += ";$modulePath"
}
}
}
begin
{
function Update-Directory
{
[CmdletBinding()]
param (
[Parameter(Mandatory = $true)]
[string] $Source,
[Parameter(Mandatory = $true)]
[string] $Destination
)
$Source = $PSCmdlet.GetUnresolvedProviderPathFromPSPath($Source)
$Destination = $PSCmdlet.GetUnresolvedProviderPathFromPSPath($Destination)
if (-not (Test-Path -LiteralPath $Destination))
{
$null = New-Item -Path $Destination -ItemType Directory -ErrorAction Stop
}
try
{
$sourceItem = Get-Item -LiteralPath $Source -ErrorAction Stop
$destItem = Get-Item -LiteralPath $Destination -ErrorAction Stop
if ($sourceItem -isnot [System.IO.DirectoryInfo] -or $destItem -isnot [System.IO.DirectoryInfo])
{
throw 'Not Directory Info'
}
}
catch
{
throw 'Both Source and Destination must be directory paths.'
}
$sourceFiles = Get-ChildItem -Path $Source -Recurse |
Where-Object { -not $_.PSIsContainer }
foreach ($sourceFile in $sourceFiles)
{
$relativePath = Get-RelativePath $sourceFile.FullName -RelativeTo $Source
$targetPath = Join-Path $Destination $relativePath
$sourceHash = Get-FileHash -Path $sourceFile.FullName
$destHash = Get-FileHash -Path $targetPath
if ($sourceHash -ne $destHash)
{
$targetParent = Split-Path $targetPath -Parent
if (-not (Test-Path -Path $targetParent -PathType Container))
{
$null = New-Item -Path $targetParent -ItemType Directory -ErrorAction Stop
}
Write-Verbose "Updating file $relativePath to new version."
Copy-Item $sourceFile.FullName -Destination $targetPath -Force -ErrorAction Stop
}
}
$targetFiles = Get-ChildItem -Path $Destination -Recurse |
Where-Object { -not $_.PSIsContainer }
foreach ($targetFile in $targetFiles)
{
$relativePath = Get-RelativePath $targetFile.FullName -RelativeTo $Destination
$sourcePath = Join-Path $Source $relativePath
if (-not (Test-Path $sourcePath -PathType Leaf))
{
Write-Verbose "Removing unknown file $relativePath from module folder."
Remove-Item -LiteralPath $targetFile.FullName -Force -ErrorAction Stop
}
}
}
function Get-RelativePath
{
param ( [string] $Path, [string] $RelativeTo )
return $Path -replace "^$([regex]::Escape($RelativeTo))\\?"
}
function Get-FileHash
{
param ([string] $Path)
if (-not (Test-Path -LiteralPath $Path -PathType Leaf))
{
return $null
}
$item = Get-Item -LiteralPath $Path
if ($item -isnot [System.IO.FileSystemInfo])
{
return $null
}
$stream = $null
try
{
$sha = New-Object System.Security.Cryptography.SHA256CryptoServiceProvider
$stream = $item.OpenRead()
$bytes = $sha.ComputeHash($stream)
return [convert]::ToBase64String($bytes)
}
finally
{
if ($null -ne $stream) { $stream.Close() }
if ($null -ne $sha) { $sha.Clear() }
}
}
}
#
# Module manifest for module 'A0Toolkit'
#
# Generated by: Platform Engineering
#
# Generated on: 15/09/2017
#
@{
# Script module or binary module file associated with this manifest.
RootModule = 'A0Toolkit.psm1'
# Version number of this module.
ModuleVersion = '1.4.0'
# Supported PSEditions
# CompatiblePSEditions = @()
# ID used to uniquely identify this module
GUID = '091f41cf-ffe5-42bf-8bbc-64e48386ebf0'
# Author of this module
Author = 'Platform Engineering'
# Company or vendor of this module
CompanyName = 'Amido Ltd'
# Copyright statement for this module
Copyright = '(c) 2016 Platform Engineering. All rights reserved.'
# Description of the functionality provided by this module
# Description = 'A0Toolkit provides custom Auth0 functions via a PowerShell module to support the Auth0 management API.'
# Minimum version of the Windows PowerShell engine required by this module
# PowerShellVersion = '3.0'
# Name of the Windows PowerShell host required by this module
# PowerShellHostName = ''
# Minimum version of the Windows PowerShell host required by this module
# PowerShellHostVersion = ''
# Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
# DotNetFrameworkVersion = ''
# Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
# CLRVersion = ''
# Processor architecture (None, X86, Amd64) required by this module
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
# RequiredModules = @()
# Assemblies that must be loaded prior to importing this module
# RequiredAssemblies = @()
# Script files (.ps1) that are run in the caller's environment prior to importing this module.
# ScriptsToProcess = @()
# Type files (.ps1xml) to be loaded when importing this module
# TypesToProcess = @()
# Format files (.ps1xml) to be loaded when importing this module
# FormatsToProcess = @()
# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
# NestedModules = @()
# Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export.
FunctionsToExport = '*'
# Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export.
CmdletsToExport = '*'
# Variables to export from this module
VariablesToExport = '*'
# Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export.
AliasesToExport = '*'
# DSC resources to export from this module
# DscResourcesToExport = @()
# List of all modules packaged with this module
# ModuleList = @()
# List of all files packaged with this module
# FileList = @()
# Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell.
PrivateData = @{
PSData = @{
# Tags applied to this module. These help with module discovery in online galleries.
# Tags = @()
# A URL to the license for this module.
# LicenseUri = ''
# A URL to the main website for this project.
# ProjectUri = ''
# A URL to an icon representing this module.
# IconUri = ''
# ReleaseNotes of this module
# ReleaseNotes = ''
} # End of PSData hashtable
} # End of PrivateData hashtable
# HelpInfo URI of this module
# HelpInfoURI = ''
# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix.
# DefaultCommandPrefix = ''
}
$moduleRoot = Split-Path -Parent $MyInvocation.MyCommand.Path
# // Functions and Helpers //
$types = "Functions", "Functions\Private"
Foreach ($type in $types) {
If (Test-Path -Path ("{0}\{1}" -f $moduleRoot, $type)) {
Foreach ($function in Get-ChildItem -Path ("{0}\{1}\*.ps1" -f $moduleRoot, $type) -Exclude "*.Tests.ps1") {
. $function.FullName
If ($type -eq "Functions") {
Export-ModuleMember -Function $function.BaseName
}
}
}
}
Function Get-A0Client {
[CmdletBinding()]
param (
[Parameter(Mandatory=$false)]
[hashtable]$headers = @{"content-type" = "application/json"},
[Parameter(Mandatory=$true)]
[ValidateScript({
If ([uri]::IsWellFormedUriString($_,[urikind]::Absolute)) {Return $true}
})]
[string]$baseURL,
[Parameter(Mandatory=$false)]
[string]$apiVersion = "v2",
[Parameter(Mandatory=$false)]
[string]$clientId
)
Write-Host ("Running function: {0}" -f $MyInvocation.MyCommand.Name) -ForegroundColor Yellow
# // building path //
If ([string]::IsNullOrEmpty($clientId)) {
$path = ("api/{0}/clients" -f $apiVersion)
} Else {
$path = ("api/{0}/clients/{1}" -f $apiVersion, $clientId)
}
# // using splatting //
$params = @{
"uri" = "{0}/{1}" -f $baseURL, $path
"method" = "GET"
"headers" = $headers
}
Write-Verbose ("Parameters:`n{0}`nHeaders:`n{1}" -f ($params | Out-String), ($params.headers | Out-String))
# //sending request //
Try {
$response = Invoke-WebRequest @params -UseBasicParsing -ErrorAction Stop
}
Catch {
New-ExceptionDetail -exception $_ -parameters $params
Throw $_.Exception
}
Return $response
}
Function Get-A0ClientGrant {
[CmdletBinding()]
param (
[Parameter(Mandatory=$false)]
[hashtable]$headers = @{"content-type" = "application/json"},
[Parameter(Mandatory=$true)]
[ValidateScript({
If ([uri]::IsWellFormedUriString($_,[urikind]::Absolute)) {Return $true}
})]
[string]$baseURL,
[Parameter(Mandatory=$false)]
[string]$apiVersion = "v2"
)
Write-Host ("Running function: {0}" -f $MyInvocation.MyCommand.Name) -ForegroundColor Yellow
# // building path //
$path = ("api/{0}/client-grants" -f $apiVersion)
# // using splatting //
$params = @{
"uri" = "{0}/{1}" -f $baseURL, $path
"method" = "GET"
"headers" = $headers
"body" = $body | Convertto-Json
}
Write-Verbose ("Parameters:`n{0}`nHeaders:`n{1}`nBody:`n{2}" -f ($params | Out-String), ($params.headers | Out-String), $params.body)
# //sending request //
Try {
$response = Invoke-WebRequest @params -UseBasicParsing -ErrorAction Stop
}
Catch {
New-ExceptionDetail -exception $_ -parameters $params
Throw $_.Exception
}
Return $response
}
Function Get-A0Connection {
[CmdletBinding()]
param (
[Parameter(Mandatory=$false)]
[hashtable]$headers = @{"content-type" = "application/json"},
[Parameter(Mandatory=$true)]
[ValidateScript({
If ([uri]::IsWellFormedUriString($_,[urikind]::Absolute)) {Return $true}
})]
[string]$baseURL,
[Parameter(Mandatory=$false)]
[string]$apiVersion = "v2",
[Parameter(Mandatory=$false)]
[string]$connectionId
)
Write-Host ("Running function: {0}" -f $MyInvocation.MyCommand.Name) -ForegroundColor Yellow
# building path //
If ([string]::IsNullOrEmpty($connectionId)) {
$path = ("api/{0}/connections" -f $apiVersion)
} Else {
$path = ("api/{0}/connections/{1}" -f $apiVersion, $connectionId)
}
# // using splatting //
$params = @{
"uri" = "{0}/{1}" -f $baseURL, $path
"method" = "GET"
"headers" = $headers
}
Write-Verbose ("Parameters:`n{0}`nHeaders:`n{1}" -f ($params | Out-String), ($params.headers | Out-String))
# //sending request //
Try {
$response = Invoke-WebRequest @params -UseBasicParsing -ErrorAction Stop
}
Catch {
New-ExceptionDetail -exception $_ -parameters $params
Throw $_.Exception
}
Return $response
}
Function Get-A0EmailProvider {
[CmdletBinding()]
param (
[Parameter(Mandatory=$false)]
[hashtable]$headers = @{"content-type" = "application/json"},
[Parameter(Mandatory=$true)]
[ValidateScript({
If ([uri]::IsWellFormedUriString($_,[urikind]::Absolute)) {Return $true}
})]
[string]$baseURL,
[Parameter(Mandatory=$false)]
[string]$apiVersion = "v2"
)
Write-Host ("Running function: {0}" -f $MyInvocation.MyCommand.Name) -ForegroundColor Yellow
# // building path //
$path = ("api/{0}/emails/provider" -f $apiVersion)
# // using splatting //
$params = @{
"uri" = "{0}/{1}" -f $baseURL, $path
"method" = "GET"
"headers" = $headers
}
Write-Verbose ("Parameters:`n{0}`nHeaders:`n{1}" -f ($params | Out-String), ($params.headers | Out-String))
# //sending request //
Try {
$response = Invoke-WebRequest @params -UseBasicParsing -ErrorAction Stop
}
Catch {
$response = $_ | ConvertFrom-Json -ErrorAction Continue
# // catching 404 for when there are no email providers //
Switch ($response.statusCode) {
404 {
Write-Warning ("Status code {0} ({1}) {2}" -f $response.statusCode, $response.error, $response.message)
Return
}
}
New-ExceptionDetail -exception $_ -parameters $params
Throw $_.Exception
}
Return $response
}
Function Get-A0EmailTemplate {
[CmdletBinding()]
param (
[Parameter(Mandatory=$false)]
[hashtable]$headers = @{"content-type" = "application/json"},
[Parameter(Mandatory=$true)]
[ValidateScript({
If ([uri]::IsWellFormedUriString($_,[urikind]::Absolute)) {Return $true}
})]
[string]$baseURL,
[Parameter(Mandatory=$false)]
[string]$apiVersion = "v2",
[Parameter(Mandatory=$true)]
[string]$templateName
)
Write-Host ("Running function: {0}" -f $MyInvocation.MyCommand.Name) -ForegroundColor Yellow
# // building path //
$path = ("api/{0}/email-templates/{1}" -f $apiVersion, $templateName)
# // using splatting //
$params = @{
"uri" = "{0}/{1}" -f $baseURL, $path
"method" = "GET"
"headers" = $headers
}
Write-Verbose ("Parameters:`n{0}`nHeaders:`n{1}" -f ($params | Out-String), ($params.headers | Out-String))
# //sending request //
Try {
$response = Invoke-WebRequest @params -UseBasicParsing -ErrorAction Stop
}
Catch {
New-ExceptionDetail -exception $_ -parameters $params
Throw $_.Exception
}
Return $response
}
Function Get-A0ResourceServer {
[CmdletBinding()]
param (
[Parameter(Mandatory=$false)]
[hashtable]$headers = @{"content-type" = "application/json"},
[Parameter(Mandatory=$true)]
[ValidateScript({
If ([uri]::IsWellFormedUriString($_,[urikind]::Absolute)) {Return $true}
})]
[string]$baseURL,
[Parameter(Mandatory=$false)]
[string]$apiVersion = "v2",
[Parameter(Mandatory=$false)]
[string]$resourceServerId
)
Write-Host ("Running function: {0}" -f $MyInvocation.MyCommand.Name) -ForegroundColor Yellow
# building path //
If ([string]::IsNullOrEmpty($connectionId)) {
$path = ("api/{0}/resource-servers" -f $apiVersion)
} Else {
$path = ("api/{0}/resource-servers/{1}" -f $apiVersion, $connectionId)
}
# // using splatting //
$params = @{
"uri" = "{0}/{1}" -f $baseURL, $path
"method" = "GET"
"headers" = $headers
}
Write-Verbose ("Parameters:`n{0}`nHeaders:`n{1}" -f ($params | Out-String), ($params.headers | Out-String))
# //sending request //
Try {
$response = Invoke-WebRequest @params -UseBasicParsing -ErrorAction Stop
}
Catch {
New-ExceptionDetail -exception $_ -parameters $params
Throw $_.Exception
}
Return $response
}
Function Get-A0RuleConfig {
[CmdletBinding()]
param (
[Parameter(Mandatory=$false)]
[hashtable]$headers = @{"content-type" = "application/json"},
[Parameter(Mandatory=$true)]
[ValidateScript({
If ([uri]::IsWellFormedUriString($_,[urikind]::Absolute)) {Return $true}
})]
[string]$baseURL,
[Parameter(Mandatory=$false)]
[string]$apiVersion = "v2"
)
Write-Host ("Running function: {0}" -f $MyInvocation.MyCommand.Name) -ForegroundColor Yellow
# // building path //
$path = ("api/{0}/rules-configs" -f $apiVersion)
# // using splatting //
$params = @{
"uri" = "{0}/{1}" -f $baseURL, $path
"method" = "GET"
"headers" = $headers
}
Write-Verbose ("Parameters:`n{0}`nHeaders:`n{1}" -f ($params | Out-String), ($params.headers | Out-String))
# //sending request //
Try {
$response = Invoke-WebRequest @params -UseBasicParsing -ErrorAction Stop
}
Catch {
New-ExceptionDetail -exception $_ -parameters $params
Throw $_.Exception
}
Return $response
}
Function New-A0ClientGrant {
[CmdletBinding()]
param (
[Parameter(Mandatory=$false)]
[hashtable]$headers = @{"content-type" = "application/json"},
[Parameter(Mandatory=$true)]
[ValidateScript({
If ([uri]::IsWellFormedUriString($_,[urikind]::Absolute)) {Return $true}
})]
[string]$baseURL,
[Parameter(Mandatory=$false)]
[string]$apiVersion = "v2",
[Parameter(Mandatory=$true)]
[pscustomobject]$payload
)
Write-Host ("Running function: {0}" -f $MyInvocation.MyCommand.Name) -ForegroundColor Yellow
# // building path //
$path = ("api/{0}/client-grants" -f $apiVersion)
# // building request body //
$body = $payload
# // using splatting //
$params = @{
"uri" = "{0}/{1}" -f $baseURL, $path
"method" = "POST"
"headers" = $headers
"body" = $body | Convertto-Json
}
Write-Verbose ("Parameters:`n{0}`nHeaders:`n{1}`nBody:`n{2}" -f ($params | Out-String), ($params.headers | Out-String), $params.body)
# //sending request //
Try {
$response = Invoke-WebRequest @params -UseBasicParsing -ErrorAction Stop
}
Catch {
New-ExceptionDetail -exception $_ -parameters $params
Throw $_.Exception
}
Return $response
}
Function New-A0Connection {
[CmdletBinding()]
param (
[Parameter(Mandatory=$false)]
[hashtable]$headers = @{"content-type" = "application/json"},
[Parameter(Mandatory=$true)]
[ValidateScript({
If ([uri]::IsWellFormedUriString($_,[urikind]::Absolute)) {Return $true}
})]
[string]$baseURL,
[Parameter(Mandatory=$false)]
[string]$apiVersion = "v2",
[Parameter(Mandatory=$true)]
[pscustomobject]$payload
)
Write-Host ("Running function: {0}" -f $MyInvocation.MyCommand.Name) -ForegroundColor Yellow
# // building path //
$path = ("api/{0}/connections" -f $apiVersion)
# // building request body //
$body = $payload
# // using splatting //
$params = @{
"uri" = "{0}/{1}" -f $baseURL, $path
"method" = "POST"
"headers" = $headers
"body" = $body | Convertto-Json
}
Write-Verbose ("Parameters:`n{0}`nHeaders:`n{1}`nBody:`n{2}" -f ($params | Out-String), ($params.headers | Out-String), $params.body)
# //sending request //
Try {
$response = Invoke-WebRequest @params -UseBasicParsing -ErrorAction Stop
}
Catch {
New-ExceptionDetail -exception $_ -parameters $params
Throw $_.Exception
}
Return $response
}
Function New-A0EmailProvider {
[CmdletBinding()]
param (
[Parameter(Mandatory=$false)]
[hashtable]$headers = @{"content-type" = "application/json"},
[Parameter(Mandatory=$true)]
[ValidateScript({
If ([uri]::IsWellFormedUriString($_,[urikind]::Absolute)) {Return $true}
})]
[string]$baseURL,
[Parameter(Mandatory=$false)]
[string]$apiVersion = "v2",
[Parameter(Mandatory=$true)]
[pscustomobject]$payload
)
Write-Host ("Running function: {0}" -f $MyInvocation.MyCommand.Name) -ForegroundColor Yellow
# // building path //
$path = ("api/{0}/emails/provider" -f $apiVersion)
# // building request body //
$body = $payload
# // using splatting //
$params = @{
"uri" = "{0}/{1}" -f $baseURL, $path
"method" = "POST"
"headers" = $headers
"body" = $body | Convertto-Json
}
Write-Verbose ("Parameters:`n{0}`nHeaders:`n{1}`nBody:`n{2}" -f ($params | Out-String), ($params.headers | Out-String), $params.body)
# //sending request //
Try {
$response = Invoke-WebRequest @params -UseBasicParsing -ErrorAction Stop
}
Catch {
New-ExceptionDetail -exception $_ -parameters $params
Throw $_.Exception
}
Return $response
}
Function New-A0Token {
[CmdletBinding()]
param (
[Parameter(Mandatory=$false)]
[hashtable]$headers = @{"content-type" = "application/json"},
[Parameter(Mandatory=$true)]
[ValidateScript({
If ([uri]::IsWellFormedUriString($_,[urikind]::Absolute)) {Return $true}
})]
[string]$baseURL,
[Parameter(Mandatory=$false)]
[string]$apiVersion = "v2",
[Parameter(Mandatory=$false)]
[pscustomobject]$payload,
[Parameter(Mandatory=$true)]
[string]$clientId,
[Parameter(Mandatory=$true)]
[string]$clientSecret,
[Parameter(Mandatory=$false)]
[ValidateSet("client_credentials")]
[string]$grantType = "client_credentials"
)
Write-Host ("Running function: {0}" -f $MyInvocation.MyCommand.Name) -ForegroundColor Yellow
# // building path //
$path = "oauth/token"
# // building request body //
If (-not $payload) {
$body = @{
"audience" = ("{0}/{1}/" -f $baseURL, ("api/{0}" -f $apiVersion))
"client_id" = $clientId
"client_secret" = $clientSecret
"grant_type" = $grantType
}
} Else {
$body = $payload
}
# // using splatting //
$params = @{
"uri" = "{0}/{1}" -f $baseURL, $path
"method" = "POST"
"headers" = $headers
"body" = $body | Convertto-Json
}
Write-Verbose ("Parameters:`n{0}`nHeaders:`n{1}`nBody:`n{2}" -f ($params | Out-String), ($params.headers | Out-String), $params.body)
# //sending request //
Try {
$response = Invoke-WebRequest @params -UseBasicParsing -ErrorAction Stop
}
Catch {
New-ExceptionDetail -exception $_ -parameters $params
Throw $_.Exception
}
Return $response
}
Function New-ExceptionDetail {
[CmdletBinding()]
param (
[Parameter(Mandatory=$true)]
[System.Management.Automation.ErrorRecord]$exception,
[Parameter(Mandatory=$true)]
[hashtable]$parameters
)
Write-Host ("Running function: {0}" -f $MyInvocation.MyCommand.Name) -ForegroundColor Yellow
Write-Warning ("{0}`nHEADERS{1}`nBODY`n{2}`n" -f ($parameters | Out-String), ($parameters.headers | Out-String), $parameters.body)
Write-Warning $exception
}
Function Remove-A0Client {
[CmdletBinding()]
param (
[Parameter(Mandatory=$false)]
[hashtable]$headers = @{"content-type" = "application/json"},
[Parameter(Mandatory=$true)]
[ValidateScript({
If ([uri]::IsWellFormedUriString($_,[urikind]::Absolute)) {Return $true}
})]
[string]$baseURL,
[Parameter(Mandatory=$false)]
[string]$apiVersion = "v2",
[Parameter(Mandatory=$true)]
[string]$clientId
)
Write-Host ("Running function: {0}" -f $MyInvocation.MyCommand.Name) -ForegroundColor Yellow
# // building path //
$path = ("api/{0}/clients/{1}" -f $apiVersion, $clientId)
# // using splatting //
$params = @{
"uri" = "{0}/{1}" -f $baseURL, $path
"method" = "DELETE"
"headers" = $headers
}
Write-Verbose ("Parameters:`n{0}`nHeaders:`n{1}" -f ($params | Out-String), ($params.headers | Out-String))
# //sending request //
Try {
$response = Invoke-WebRequest @params -UseBasicParsing -ErrorAction Stop
}
Catch {
New-ExceptionDetail -exception $_ -parameters $params
Throw $_.Exception
}
Return $response
}
Function Remove-A0ClientGrant {
[CmdletBinding()]
param (
[Parameter(Mandatory=$false)]
[hashtable]$headers = @{"content-type" = "application/json"},
[Parameter(Mandatory=$true)]
[ValidateScript({
If ([uri]::IsWellFormedUriString($_,[urikind]::Absolute)) {Return $true}
})]
[string]$baseURL,
[Parameter(Mandatory=$false)]
[string]$apiVersion = "v2",
[Parameter(Mandatory=$true)]
[string]$grantId
)
Write-Host ("Running function: {0}" -f $MyInvocation.MyCommand.Name) -ForegroundColor Yellow
# // building path //
$path = ("api/{0}/client-grants/{1}" -f $apiVersion, $grantId)
# // using splatting //
$params = @{
"uri" = "{0}/{1}" -f $baseURL, $path
"method" = "DELETE"
"headers" = $headers
}
Write-Verbose ("Parameters:`n{0}`nHeaders:`n{1}" -f ($params | Out-String), ($params.headers | Out-String))
# //sending request //
Try {
$response = Invoke-WebRequest @params -UseBasicParsing -ErrorAction Stop
}
Catch {
New-ExceptionDetail -exception $_ -parameters $params
Throw $_.Exception
}
Return $response
}
Function Remove-A0Connection {
[CmdletBinding()]
param (
[Parameter(Mandatory=$false)]
[hashtable]$headers = @{"content-type" = "application/json"},
[Parameter(Mandatory=$true)]
[ValidateScript({
If ([uri]::IsWellFormedUriString($_,[urikind]::Absolute)) {Return $true}
})]
[string]$baseURL,
[Parameter(Mandatory=$false)]
[string]$apiVersion = "v2",
[Parameter(Mandatory=$true)]
[string]$connectionId
)
Write-Host ("Running function: {0}" -f $MyInvocation.MyCommand.Name) -ForegroundColor Yellow
# // building path //
$path = ("api/{0}/connections/{1}" -f $apiVersion, $connectionId)
# // using splatting //
$params = @{
"uri" = "{0}/{1}" -f $baseURL, $path
"method" = "DELETE"
"headers" = $headers
}
Write-Verbose ("Parameters:`n{0}`nHeaders:`n{1}`nBody:`n{2}" -f ($params | Out-String), ($params.headers | Out-String), $params.body)
# //sending request //
Try {
$response = Invoke-WebRequest @params -UseBasicParsing -ErrorAction Stop
}
Catch {
New-ExceptionDetail -exception $_ -parameters $params
Throw $_.Exception
}
Return $response
}
Function Remove-A0ResourceServer {
[CmdletBinding()]
param (
[Parameter(Mandatory=$false)]
[hashtable]$headers = @{"content-type" = "application/json"},
[Parameter(Mandatory=$true)]
[ValidateScript({
If ([uri]::IsWellFormedUriString($_,[urikind]::Absolute)) {Return $true}
})]
[string]$baseURL,
[Parameter(Mandatory=$false)]
[string]$apiVersion = "v2",
[Parameter(Mandatory=$true)]
[string]$resourceServerId
)
Write-Host ("Running function: {0}" -f $MyInvocation.MyCommand.Name) -ForegroundColor Yellow
# // building path //
$path = ("api/{0}/resource-servers/{1}" -f $apiVersion, $resourceServerId)
# // using splatting //
$params = @{
"uri" = "{0}/{1}" -f $baseURL, $path
"method" = "DELETE"
"headers" = $headers
}
Write-Verbose ("Parameters:`n{0}`nHeaders:`n{1}" -f ($params | Out-String), ($params.headers | Out-String))
# //sending request //
Try {
$response = Invoke-WebRequest @params -UseBasicParsing -ErrorAction Stop
}
Catch {
New-ExceptionDetail -exception $_ -parameters $params
Throw $_.Exception
}
Return $response
}
Function Remove-A0RuleConfig {
[CmdletBinding()]
param (
[Parameter(Mandatory=$false)]
[hashtable]$headers = @{"content-type" = "application/json"},
[Parameter(Mandatory=$true)]
[ValidateScript({
If ([uri]::IsWellFormedUriString($_,[urikind]::Absolute)) {Return $true}
})]
[string]$baseURL,
[Parameter(Mandatory=$false)]
[string]$apiVersion = "v2",
[Parameter(Mandatory=$true)]
[string]$key
)
Write-Host ("Running function: {0}" -f $MyInvocation.MyCommand.Name) -ForegroundColor Yellow
# // building path //
$path = ("api/{0}/rules-configs/{1}" -f $apiVersion, $key)
# // using splatting //
$params = @{
"uri" = "{0}/{1}" -f $baseURL, $path
"method" = "DELETE"
"headers" = $headers
}
Write-Verbose ("Parameters:`n{0}`nHeaders:`n{1}" -f ($params | Out-String), ($params.headers | Out-String))
# //sending request //
Try {
$response = Invoke-WebRequest @params -UseBasicParsing -ErrorAction Stop
}
Catch {
New-ExceptionDetail -exception $_ -parameters $params
Throw $_.Exception
}
Return $response
}
Function Set-A0Client {
[CmdletBinding()]
param (
[Parameter(Mandatory=$false)]
[hashtable]$headers = @{"content-type" = "application/json"},
[Parameter(Mandatory=$true)]
[ValidateScript({
If ([uri]::IsWellFormedUriString($_,[urikind]::Absolute)) {Return $true}
})]
[string]$baseURL,
[Parameter(Mandatory=$false)]
[string]$apiVersion = "v2",
[Parameter(Mandatory=$true)]
[string]$clientId,
[Parameter(Mandatory=$true)]
[pscustomobject]$payload
)
Write-Host ("Running function: {0}" -f $MyInvocation.MyCommand.Name) -ForegroundColor Yellow
# // building path //
$path = ("api/{0}/clients/{1}" -f $apiVersion, $clientId)
# // building request body //
$body = $payload
# // using splatting //
$params = @{
"uri" = "{0}/{1}" -f $baseURL, $path
"method" = "PATCH"
"headers" = $headers
"body" = $body | Convertto-Json
}
Write-Verbose ("Parameters:`n{0}`nHeaders:`n{1}`nBody:`n{2}" -f ($params | Out-String), ($params.headers | Out-String), $params.body)
# //sending request //
Try {
$response = Invoke-WebRequest @params -UseBasicParsing -ErrorAction Stop
}
Catch {
New-ExceptionDetail -exception $_ -parameters $params
Throw $_.Exception
}
Return $response
}
Function Set-A0ClientGrant {
[CmdletBinding()]
param (
[Parameter(Mandatory=$false)]
[hashtable]$headers = @{"content-type" = "application/json"},
[Parameter(Mandatory=$true)]
[ValidateScript({
If ([uri]::IsWellFormedUriString($_,[urikind]::Absolute)) {Return $true}
})]
[string]$baseURL,
[Parameter(Mandatory=$false)]
[string]$apiVersion = "v2",
[Parameter(Mandatory=$true)]
[string]$grantId,
[Parameter(Mandatory=$true)]
[pscustomobject]$payload
)
Write-Host ("Running function: {0}" -f $MyInvocation.MyCommand.Name) -ForegroundColor Yellow
# // building path //
$path = ("api/{0}/client-grants/{1}" -f $apiVersion, $grantId)
# // building request body //
$body = $payload
# // using splatting //
$params = @{
"uri" = "{0}/{1}" -f $baseURL, $path
"method" = "PATCH"
"headers" = $headers
"body" = $body | Convertto-Json
}
Write-Verbose ("Parameters:`n{0}`nHeaders:`n{1}`nBody:`n{2}" -f ($params | Out-String), ($params.headers | Out-String), $params.body)
# //sending request //
Try {
$response = Invoke-WebRequest @params -UseBasicParsing -ErrorAction Stop
}
Catch {
New-ExceptionDetail -exception $_ -parameters $params
Throw $_.Exception
}
Return $response
}
Function Set-A0Connection {
[CmdletBinding()]
param (
[Parameter(Mandatory=$false)]
[hashtable]$headers = @{"content-type" = "application/json"},
[Parameter(Mandatory=$true)]
[ValidateScript({
If ([uri]::IsWellFormedUriString($_,[urikind]::Absolute)) {Return $true}
})]
[string]$baseURL,
[Parameter(Mandatory=$false)]
[string]$apiVersion = "v2",
[Parameter(Mandatory=$true)]
[string]$connectionId,
[Parameter(Mandatory=$true)]
[pscustomobject]$payload
)
Write-Host ("Running function: {0}" -f $MyInvocation.MyCommand.Name) -ForegroundColor Yellow
# // building path //
$path = ("api/{0}/connections/{1}" -f $apiVersion, $connectionId)
# // building request body //
$body = $payload
# // using splatting //
$params = @{
"uri" = "{0}/{1}" -f $baseURL, $path
"method" = "PATCH"
"headers" = $headers
"body" = $body | Convertto-Json
}
Write-Verbose ("Parameters:`n{0}`nHeaders:`n{1}`nBody:`n{2}" -f ($params | Out-String), ($params.headers | Out-String), $params.body)
# //sending request //
Try {
$response = Invoke-WebRequest @params -UseBasicParsing -ErrorAction Stop
}
Catch {
New-ExceptionDetail -exception $_ -parameters $params
Throw $_.Exception
}
Return $response
}
Function Set-A0EmailProvider {
[CmdletBinding()]
param (
[Parameter(Mandatory=$false)]
[hashtable]$headers = @{"content-type" = "application/json"},
[Parameter(Mandatory=$true)]
[ValidateScript({
If ([uri]::IsWellFormedUriString($_,[urikind]::Absolute)) {Return $true}
})]
[string]$baseURL,
[Parameter(Mandatory=$false)]
[string]$apiVersion = "v2",
[Parameter(Mandatory=$true)]
[pscustomobject]$payload
)
Write-Host ("Running function: {0}" -f $MyInvocation.MyCommand.Name) -ForegroundColor Yellow
# // building //
$path = ("api/{0}/emails/provider" -f $apiVersion)
# // building request body //
$body = $payload
# // using splatting //
$params = @{
"uri" = "{0}/{1}" -f $baseURL, $path
"method" = "PATCH"
"headers" = $headers
"body" = $body | Convertto-Json
}
Write-Verbose ("Parameters:`n{0}`nHeaders:`n{1}`nBody:`n{2}" -f ($params | Out-String), ($params.headers | Out-String), $params.body)
# //sending request //
Try {
$response = Invoke-WebRequest @params -UseBasicParsing -ErrorAction Stop
}
Catch {
New-ExceptionDetail -exception $_ -parameters $params
Throw $_.Exception
}
Return $response
}
Function Set-A0EmailTemplate {
[CmdletBinding()]
param (
[Parameter(Mandatory=$false)]
[hashtable]$headers = @{"content-type" = "application/json"},
[Parameter(Mandatory=$true)]
[ValidateScript({
If ([uri]::IsWellFormedUriString($_,[urikind]::Absolute)) {Return $true}
})]
[string]$baseURL,
[Parameter(Mandatory=$false)]
[string]$apiVersion = "v2",
[Parameter(Mandatory=$true)]
[string]$templateName,
[Parameter(Mandatory=$true)]
[pscustomobject]$payload
)
Write-Host ("Running function: {0}" -f $MyInvocation.MyCommand.Name) -ForegroundColor Yellow
# // building path //
$path = ("api/{0}/email-templates/{1}" -f $apiVersion, $templateName)
# // building request body //
$body = $payload
# // using splatting //
$params = @{
"uri" = "{0}/{1}" -f $baseURL, $path
"method" = "PUT"
"headers" = $headers
"body" = $body | Convertto-Json
}
Write-Verbose ("Parameters:`n{0}`nHeaders:`n{1}`nBody:`n{2}" -f ($params | Out-String), ($params.headers | Out-String), $params.body)
# //sending request //
Try {
$response = Invoke-WebRequest @params -UseBasicParsing -ErrorAction Stop
}
Catch {
New-ExceptionDetail -exception $_ -parameters $params
Throw $_.Exception
}
Return $response
}
Function Set-A0RuleConfig {
[CmdletBinding()]
param (
[Parameter(Mandatory=$false)]
[hashtable]$headers = @{"content-type" = "application/json"},
[Parameter(Mandatory=$true)]
[ValidateScript({
If ([uri]::IsWellFormedUriString($_,[urikind]::Absolute)) {Return $true}
})]
[string]$baseURL,
[Parameter(Mandatory=$false)]
[string]$apiVersion = "v2",
[Parameter(Mandatory=$true)]
[string]$key,
[Parameter(Mandatory=$true)]
[string]$value
)
Write-Host ("Running function: {0}" -f $MyInvocation.MyCommand.Name) -ForegroundColor Yellow
# // building path //
$path = ("api/{0}/rules-configs/{1}" -f $apiVersion, $key)
# // building request body //
$body = "{`"value`": `"$value`"}"
# // using splatting //
$params = @{
"uri" = "{0}/{1}" -f $baseURL, $path
"method" = "PUT"
"headers" = $headers
"body" = $body
}
Write-Verbose ("Parameters:`n{0}`nHeaders:`n{1}`nBody:`n{2}" -f ($params | Out-String), ($params.headers | Out-String), $params.body)
# //sending request //
Try {
$response = Invoke-WebRequest @params -UseBasicParsing -ErrorAction Stop
}
Catch {
New-ExceptionDetail -exception $_ -parameters $params
Throw $_.Exception
}
Return $response
}
Function Set-A0Tenant {
[CmdletBinding()]
param (
[Parameter(Mandatory=$false)]
[hashtable]$headers = @{"content-type" = "application/json"},
[Parameter(Mandatory=$true)]
[ValidateScript({
If ([uri]::IsWellFormedUriString($_,[urikind]::Absolute)) {Return $true}
})]
[string]$baseURL,
[Parameter(Mandatory=$false)]
[string]$apiVersion = "v2",
[Parameter(Mandatory=$true)]
[pscustomobject]$payload
)
Write-Host ("Running function: {0}" -f $MyInvocation.MyCommand.Name) -ForegroundColor Yellow
# //building path //
$path = ("api/{0}/tenants/settings" -f $apiVersion)
# // building request body //
$body = $payload
# // using splatting //
$params = @{
"uri" = "{0}/{1}" -f $baseURL, $path
"method" = "PATCH"
"headers" = $headers
"body" = $body | Convertto-Json
}
Write-Verbose ("Parameters:`n{0}`nHeaders:`n{1}`nBody:`n{2}" -f ($params | Out-String), ($params.headers | Out-String), $params.body)
# //sending request //
Try {
$response = Invoke-WebRequest @params -UseBasicParsing -ErrorAction Stop
}
Catch {
New-ExceptionDetail -exception $_ -parameters $params
Throw $_.Exception
}
Return $response
}
Log in or click on link to see number of positives.
- a0toolkit.1.4.0.nupkg (47c070e1d6d9) - ## / 60
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Version | Downloads | Last Updated | Status |
---|---|---|---|
A0Toolkit 1.4.0 | 546 | Thursday, November 1, 2018 | Approved |
A0Toolkit 1.3.0 | 108 | Wednesday, October 24, 2018 | Approved |
A0Toolkit 1.2.0 | 165 | Sunday, August 26, 2018 | Approved |
A0Toolkit 1.1.0 | 178 | Friday, July 6, 2018 | Approved |
A0Toolkit 1.0.0 | 293 | Friday, September 15, 2017 | Approved |
This package has no dependencies.
Ground Rules:
- This discussion is only about A0Toolkit and the A0Toolkit package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or A0Toolkit, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.