full_path
stringlengths
31
232
filename
stringlengths
4
167
content
stringlengths
0
48.3M
PowerShellCorpus/PowerShellGallery/Posh-IC/0.0.5/Export-AttProfile.ps1
Export-AttProfile.ps1
<# # AUTHOR : Pierrick Lozach #> function Export-AttProfile() # {{{2 { # Documentation {{{3 <# .SYNOPSIS Exports an Interaction Attendant profile .DESCRIPTION Exports All or specific Interaction Attendant profiles .PARAMETER ProfileName The Interaction Attendant profile to export. If not specified, ...
PowerShellCorpus/PowerShellGallery/Posh-IC/0.0.5/Get-ICUsers.ps1
Get-ICUsers.ps1
<# # AUTHOR : Pierrick Lozach #> function Get-ICUsers() # {{{2 { # Documentation {{{3 <# .SYNOPSIS Gets a list of all users .DESCRIPTION Gets a list of all users .PARAMETER ICSession The Interaction Center Session #> # }}}3 [CmdletBinding()] Param( [Parameter(Mandatory=$true)] [Alias("S...
PowerShellCorpus/PowerShellGallery/Posh-IC/0.0.5/New-ICUsers.ps1
New-ICUsers.ps1
<# # AUTHOR : Pierrick Lozach #> function New-ICUsers() # {{{2 { # Documentation {{{3 <# .SYNOPSIS Creates new IC users .DESCRIPTION Creates new IC users. If passwords are ommitted, default value is '1234' .PARAMETER ICSession The Interaction Center Session .PARAMETER ICUsers Hashtable of user d...
PowerShellCorpus/PowerShellGallery/Posh-IC/0.0.5/New-ICWorkgroup.ps1
New-ICWorkgroup.ps1
<# # AUTHOR : Pierrick Lozach #> function New-ICWorkgroup() # {{{2 { # Documentation {{{3 <# .SYNOPSIS Creates a new CIC workgroup .DESCRIPTION Creates a new CIC workgroup .PARAMETER ICSession The Interaction Center Session .PARAMETER ICWorkgroup The Interaction Center Workgroup Identifier .PAR...
PowerShellCorpus/PowerShellGallery/Posh-IC/0.0.5/Get-ICSkill.ps1
Get-ICSkill.ps1
<# # AUTHOR : Pierrick Lozach #> function Get-ICSkill() # {{{2 { # Documentation {{{3 <# .SYNOPSIS Gets a skill .DESCRIPTION Gets a skill .PARAMETER ICSession The Interaction Center Session .PARAMETER ICSkill The Interaction Center Skill #> # }}}3 [CmdletBinding()] Param( [Parameter(...
PowerShellCorpus/PowerShellGallery/Posh-IC/0.0.5/New-ICConfigurationId.ps1
New-ICConfigurationId.ps1
<# # AUTHOR : Pierrick Lozach #> function New-ICConfigurationId() # {{{2 { # Documentation {{{3 <# .SYNOPSIS Creates a new ICWS ConfigurationId complex object .DESCRIPTION Creates a new ICWS ConfigurationId complex object. This is used when creating new users or workgroups. .PARAMETER ItemId The Int...
PowerShellCorpus/PowerShellGallery/Posh-IC/0.0.5/Remove-ICSkill.ps1
Remove-ICSkill.ps1
<# # AUTHOR : Pierrick Lozach #> function Remove-ICSkill() # {{{2 { # Documentation {{{3 <# .SYNOPSIS Removes a skill .DESCRIPTION Removes a skill .PARAMETER ICSession The Interaction Center Session .PARAMETER ICSkill The Interaction Center Skill #> # }}}3 [CmdletBinding()] Param( [P...
PowerShellCorpus/PowerShellGallery/Posh-IC/0.0.5/New-ICSession.ps1
New-ICSession.ps1
<# .SYNOPSIS Connects to an Interaction Center(c) server .DESCRIPTION Connects to an Interaction Center(c) server. If the CIC server is in a switchover the Cmdlet will automatically switch to the primary server If the CIC server uses Out of Server Session Managers, the Cmdlet will automatically use th...
PowerShellCorpus/PowerShellGallery/Posh-IC/0.0.5/Remove-ICSession.ps1
Remove-ICSession.ps1
<# # AUTHOR : Gildas Cherruel #> function Remove-ICSession() # {{{2 { # Documentation {{{3 <# .SYNOPSIS Disconnects from an Interaction Center server .DESCRIPTION Disconnects from an Interaction Center server .PARAMETER ICSession The Interaction Center Session #> # }}}3 [CmdletBinding()] Para...
PowerShellCorpus/PowerShellGallery/Posh-IC/0.0.5/__Add-Types.ps1
__Add-Types.ps1
$AssemblyPath = New-Item -Force -ItemType Directory -Path ([io.path]::combine($env:AppData, 'Interactive Intelligence', 'Posh-IC')) $TypeName = 'ININ.ConnectionState' # {{{ if (-not ([System.Management.Automation.PSTypeName] $TypeName).Type) { $TypeAssembly = Join-Path $AssemblyPath "${TypeName}.dll" Add-Typ...
PowerShellCorpus/PowerShellGallery/Posh-IC/0.0.5/Get-ICUser.ps1
Get-ICUser.ps1
<# # AUTHOR : Pierrick Lozach #> function Get-ICUser() # {{{2 { # Documentation {{{3 <# .SYNOPSIS Gets a user .DESCRIPTION Gets a user .PARAMETER ICSession The Interaction Center Session .PARAMETER ICUser The Interaction Center User #> # }}}3 [CmdletBinding()] Param( [Parameter(Manda...
PowerShellCorpus/PowerShellGallery/Posh-IC/0.0.5/Get-ICWorkgroups.ps1
Get-ICWorkgroups.ps1
<# # AUTHOR : Pierrick Lozach #> function Get-ICWorkgroups() # {{{2 { # Documentation {{{3 <# .SYNOPSIS Gets a list of all workgroups .DESCRIPTION Gets a list of all workgroups .PARAMETER ICSession The Interaction Center Session #> # }}}3 [CmdletBinding()] Param( [Parameter(Mandatory=$tr...
PowerShellCorpus/PowerShellGallery/Posh-IC/0.0.5/Get-ICUserStatus.ps1
Get-ICUserStatus.ps1
<# # AUTHOR : Gildas Cherruel #> function Get-ICUserStatus() # {{{2 { # Documentation {{{3 <# .SYNOPSIS Gets the status of the given user .DESCRIPTION Gets the status of the given user. If no user is given, the connected user will be used .PARAMETER ICSession The Interaction Center Session .PARAMET...
PowerShellCorpus/PowerShellGallery/Posh-IC/0.0.5/Export-IPAProcess.ps1
Export-IPAProcess.ps1
<# # AUTHOR : Pierrick Lozach #> function Export-IPAProcess() # {{{2 { # Documentation {{{3 <# .SYNOPSIS Exports an IPA process .DESCRIPTION Exports an IPA process from a currently running CIC server .PARAMETER ICSession The Interaction Center Session .PARAMETER Password The password to the logg...
PowerShellCorpus/PowerShellGallery/Posh-IC/0.0.5/Remove-ICWorkgroup.ps1
Remove-ICWorkgroup.ps1
<# # AUTHOR : Pierrick Lozach #> function Remove-ICWorkgroup() # {{{2 { # Documentation {{{3 <# .SYNOPSIS Removes a workgroup .DESCRIPTION Removes a workgroup .PARAMETER ICSession The Interaction Center Session .PARAMETER ICWorkgroup The Interaction Center Workgroup #> # }}}3 [CmdletBinding(...
PowerShellCorpus/PowerShellGallery/Posh-IC/0.0.5/Remove-ICUser.ps1
Remove-ICUser.ps1
<# # AUTHOR : Pierrick Lozach #> function Remove-ICUser() # {{{2 { # Documentation {{{3 <# .SYNOPSIS Removes a user .DESCRIPTION Removes a user .PARAMETER ICSession The Interaction Center Session .PARAMETER ICUser The Interaction Center User #> # }}}3 [CmdletBinding()] Param( [Parame...
PowerShellCorpus/PowerShellGallery/Posh-IC/0.0.5/New-ICSkill.ps1
New-ICSkill.ps1
<# # AUTHOR : Pierrick Lozach #> function New-ICSkill() # {{{2 { # Documentation {{{3 <# .SYNOPSIS Creates a new IC skill .DESCRIPTION Creates a new IC skill .PARAMETER ICSession The Interaction Center Session .PARAMETER ICSkill The Interaction Center Skill #> # }}}3 [CmdletBinding()] Par...
PowerShellCorpus/PowerShellGallery/Posh-IC/0.0.5/Get-IPAProcesses.ps1
Get-IPAProcesses.ps1
<# # AUTHOR : Pierrick Lozach #> function Get-IPAProcesses() # {{{2 { # Documentation {{{3 <# .SYNOPSIS Gets a list of all IPA processes .DESCRIPTION Gets a list of all IPA processes .PARAMETER ICSession The Interaction Center Session #> # }}}3 [CmdletBinding()] Param( [Parameter(Mandato...
PowerShellCorpus/PowerShellGallery/Posh-IC/0.0.5/New-ICUser.ps1
New-ICUser.ps1
<# # AUTHOR : Pierrick Lozach #> function New-ICUser() # {{{2 { # Documentation {{{3 <# .SYNOPSIS Creates a new IC user .DESCRIPTION Creates a new IC user. If password is ommitted, default value is '1234' .PARAMETER ICSession The Interaction Center Session .PARAMETER ICUser The Interaction Cente...
PowerShellCorpus/PowerShellGallery/Posh-IC/0.0.5/Get-IPAProcess.ps1
Get-IPAProcess.ps1
<# # AUTHOR : Pierrick Lozach #> function Get-IPAProcess() # {{{2 { # Documentation {{{3 <# .SYNOPSIS Gets an IPA process .DESCRIPTION Gets an IPA process .PARAMETER ICSession The Interaction Center Session .PARAMETER DefinitionId The process definition id of the process #> # }}}3 [CmdletBin...
PowerShellCorpus/PowerShellGallery/Posh-IC/0.0.5/Import-IPAProcess.ps1
Import-IPAProcess.ps1
<# # AUTHOR : Pierrick Lozach #> function Import-IPAProcess() # {{{2 { # Documentation {{{3 <# .SYNOPSIS Imports an IPA process .DESCRIPTION Imports an IPA process that is stored in a file .PARAMETER ICSession The Interaction Center Session .PARAMETER Password The password to the logged in user ...
PowerShellCorpus/PowerShellGallery/Posh-IC/0.0.5/Get-ICLicenseAllocations.ps1
Get-ICLicenseAllocations.ps1
<# # AUTHOR : Pierrick Lozach #> function Get-ICLicenseAllocations() # {{{2 { # Documentation {{{3 <# .SYNOPSIS Gets a list of all additional licenses .DESCRIPTION Gets a list of all additional licenses, as shown in the User "Licensing" tab .PARAMETER ICSession The Interaction Center Session #> # }...
PowerShellCorpus/PowerShellGallery/Posh-IC/0.0.5/Get-ICSkills.ps1
Get-ICSkills.ps1
<# # AUTHOR : Pierrick Lozach #> function Get-ICSkills() # {{{2 { # Documentation {{{3 <# .SYNOPSIS Gets a list of all skills .DESCRIPTION Gets a list of all skills .PARAMETER ICSession The Interaction Center Session #> # }}}3 [CmdletBinding()] Param( [Parameter(Mandatory=$true)] [Alias...
PowerShellCorpus/PowerShellGallery/Posh-IC/0.0.5/Start-IPAProcess.ps1
Start-IPAProcess.ps1
<# # AUTHOR : Pierrick Lozach #> function Start-IPAProcess() # {{{2 { # Documentation {{{3 <# .SYNOPSIS Launches an IPA process .DESCRIPTION Launches an IPA process. .PARAMETER ICSession The Interaction Center Session .PARAMETER DefinitionId The process definition id of the process that is to be...
PowerShellCorpus/PowerShellGallery/Posh-IC/0.0.5/Search-Registry.ps1
Search-Registry.ps1
# Search-Registry.ps1 # Written by Bill Stewart (bstewart@iname.com) #requires -version 2 <# .SYNOPSIS Searches the registry on one or more computers for a specified text pattern. .DESCRIPTION Searches the registry on one or more computers for a specified text pattern. Supports searching for any combinatio...
PowerShellCorpus/PowerShellGallery/Posh-IC/0.0.5/Get-ICSessionStatus.ps1
Get-ICSessionStatus.ps1
<# # AUTHOR : Gildas Cherruel #> function Get-ICSessionStatus() # {{{2 { # Documentation {{{3 <# .SYNOPSIS Gets the status of an ICSession .DESCRIPTION Gets the status of an ICSession .PARAMETER ICSession The Interaction Center Session #> # }}}3 [CmdletBinding()] Param( [Parameter(Mandat...
PowerShellCorpus/PowerShellGallery/xIISApplicationPoolIdentityType/1.0.0.2/DSCResources/xIISApplicationPoolIdentityType/test.ps1
test.ps1
Configuration X { Import-DscResource -module admin* Node localhost { xIISApplicationPoolIdentityType Pool1 { Pool = "Pool1" Identity = "xxxx" IdentityType = "SpecificUser" } xIISApplicationPoolIdentityType asd { ...
PowerShellCorpus/PowerShellGallery/xIISApplicationPoolIdentityType/1.0.0.2/DSCResources/xIISApplicationPoolIdentityType/Build.ps1
Build.ps1
$IdentityType = New-xDscResourceProperty -Name IdentityType -Type String -Attribute Required -ValidateSet "ApplicationPoolIdentity","LocalService","LocalSystem","NetworkService","SpecificUser" $Password = New-xDscResourceProperty -Name lIdentity -Type PSCredential -Attribute Write $Pool = New-xDscResourceProperty -N...
PowerShellCorpus/PowerShellGallery/PSApigeeEdge/0.2.15/Private/ConvertFrom-HashtableToAttrList.ps1
ConvertFrom-HashtableToAttrList.ps1
function ConvertFrom-HashtableToAttrList { <# .SYNOPSIS Convert a hashtable into an attr list, which is really an array of objects. .DESCRIPTION Converts a hashtable into an array of objects, each with a name and value. .PARAMETER Values The hashtable to convert. .PARAMETER Name...
PowerShellCorpus/PowerShellGallery/PSApigeeEdge/0.2.15/Private/Zip-DirectoryEx.ps1
Zip-DirectoryEx.ps1
function Using-Object { [CmdletBinding()] param ( [Parameter(Mandatory = $true)] [AllowEmptyString()] [AllowEmptyCollection()] [AllowNull()] [Object] $InputObject, [Parameter(Mandatory = $true)] [scriptblock] $ScriptBlock ) try ...
PowerShellCorpus/PowerShellGallery/PSApigeeEdge/0.2.15/Private/Join-Parts.ps1
Join-Parts.ps1
function Join-Parts { <# .SYNOPSIS Join strings with a specified separator. .DESCRIPTION Join strings with a specified separator. This strips out null values and any duplicate separator characters. See examples for clarification. .PARAMETER Separator Separator...
PowerShellCorpus/PowerShellGallery/PSApigeeEdge/0.2.15/Private/Resolve-Expiry.ps1
Resolve-Expiry.ps1
function Resolve-Expiry { <# .SYNOPSIS Resolve a string into a number of milliseconds from now. .DESCRIPTION Edge accepts expiry in terms of milliseconds-from-now. This function resolves strings like '120d' and '2016-12-10' into the correct number of milliseconds. Or, if you...
PowerShellCorpus/PowerShellGallery/PSApigeeEdge/0.2.15/Private/ConvertFrom-AttrListToHashTable.ps1
ConvertFrom-AttrListToHashTable.ps1
function ConvertFrom-AttrListToHashtable { <# .SYNOPSIS Convert an attr list, which is really an array of hashtable objects each with a name and value property, to a single hashtable. .DESCRIPTION Convert an attr list, which is really an array of hashtable objects each with a name and value pro...
PowerShellCorpus/PowerShellGallery/PSApigeeEdge/0.2.15/Private/Get-EdgeAssetDeployment.ps1
Get-EdgeAssetDeployment.ps1
Function Get-EdgeAssetDeployment { <# .SYNOPSIS Get the deployment status for an apiproxy or sharedflow in Apigee Edge #> [cmdletbinding()] param( [Parameter(Mandatory=$True)][string]$AssetType, [Parameter(Mandatory=$True)][string]$Name, [string]$Org, [string...
PowerShellCorpus/PowerShellGallery/PSApigeeEdge/0.2.15/Private/Get-EdgeTokenIsExpired.ps1
Get-EdgeTokenIsExpired.ps1
function Get-EdgeTokenIsExpired { [cmdletbinding()] PARAM( [System.Management.Automation.PSNoteProperty] $UserToken ) PROCESS { if ($PSBoundParameters['Debug']) { $DebugPreference = 'Continue' } if (!$usertoken) { throw [System.ArgumentNullException] "You must...
PowerShellCorpus/PowerShellGallery/PSApigeeEdge/0.2.15/Private/Get-EdgeAsset.ps1
Get-EdgeAsset.ps1
Function Get-EdgeAsset { [cmdletbinding()] param( [string]$AssetType, [string]$Name, [string]$Revision, [string]$Org ) if (!$PSBoundParameters['AssetType']) { throw [System.ArgumentNullException] "AssetType", "You must specify the -AssetType option." } $O...
PowerShellCorpus/PowerShellGallery/PSApigeeEdge/0.2.15/Private/ConvertFrom-StringToQuota.ps1
ConvertFrom-StringToQuota.ps1
function ConvertFrom-StringToQuota { <# .SYNOPSIS Convert a string into a quota. .DESCRIPTION Converts a string of the form '100pm' into a hashtable specifying the quota, quotaInterval, and quotaTimeUnit. Suffix strings must me pm ph pd or pM, for minute, hour, day, or month. ...
PowerShellCorpus/PowerShellGallery/PSApigeeEdge/0.2.15/Private/Write-EdgeTokenStash.ps1
Write-EdgeTokenStash.ps1
function Write-EdgeTokenStash { [cmdletbinding()] PARAM( [string] $User, $NewToken ) PROCESS { if ($PSBoundParameters['Debug']) { $DebugPreference = 'Continue' } $TokenStashFile = $MyInvocation.MyCommand.Module.PrivateData.Connection['TokenStash'] ...
PowerShellCorpus/PowerShellGallery/PSApigeeEdge/0.2.15/Private/Get-EdgeAssetRevision.ps1
Get-EdgeAssetRevision.ps1
Function Get-EdgeAssetRevision { <# .SYNOPSIS Get the list of revisions for an apiproxy or sharedflow from Apigee Edge. #> [cmdletbinding()] param( [Parameter(Mandatory=$True)][string]$AssetType, [Parameter(Mandatory=$True)][string]$Name, [string]$Org ) if (...
PowerShellCorpus/PowerShellGallery/PSApigeeEdge/0.2.15/Private/Get-EdgeBasicAuth.ps1
Get-EdgeBasicAuth.ps1
function Get-EdgeBasicAuth { [cmdletbinding()] PARAM( ) PROCESS { $SecurePass = $MyInvocation.MyCommand.Module.PrivateData.Connection['SecurePass'] if (!$SecurePass) { throw [System.ArgumentNullException] "There is no SecurePass stored. Have you called Set-EdgeConnection ?" ...
PowerShellCorpus/PowerShellGallery/PSApigeeEdge/0.2.15/Private/Resolve-PathSafe.ps1
Resolve-PathSafe.ps1
function Resolve-PathSafe { param( [string] $Path ) $ExecutionContext.SessionState.Path.GetUnresolvedProviderPathFromPSPath($Path) }
PowerShellCorpus/PowerShellGallery/PSApigeeEdge/0.2.15/Private/Deploy-EdgeAsset.ps1
Deploy-EdgeAsset.ps1
Function Deploy-EdgeAsset { <# .SYNOPSIS Deploy an apiproxy or sharedflow in Apigee Edge. #> [cmdletbinding()] param( [Parameter(Mandatory=$True)][string]$AssetType, [Parameter(Mandatory=$True)][string]$Name, [Parameter(Mandatory=$True)][string]$Env, [Parame...
PowerShellCorpus/PowerShellGallery/PSApigeeEdge/0.2.15/Private/Get-NowMilliseconds.ps1
Get-NowMilliseconds.ps1
Function Get-NowMilliseconds { PARAM([int]$Fudge=0) PROCESS { if ($PSBoundParameters['Debug']) { $DebugPreference = 'Continue' } $Now = if ($Fudge -and $Fudge -ne 0) { [DateTime]::UtcNow.AddMilliseconds($Fudge) } else { [DateTime]::UtcN...
PowerShellCorpus/PowerShellGallery/PSApigeeEdge/0.2.15/Private/UnDeploy-EdgeAsset.ps1
UnDeploy-EdgeAsset.ps1
Function UnDeploy-EdgeAsset { [cmdletbinding()] param( [Parameter(Mandatory=$True)][string]$AssetType, [Parameter(Mandatory=$True)][string]$Name, [Parameter(Mandatory=$True)][string]$Env, [Parameter(Mandatory=$True)][string]$Revision, [string]$Org ) if ($PSBoundP...
PowerShellCorpus/PowerShellGallery/PSApigeeEdge/0.2.15/Private/Apply-EdgeAuthorization.ps1
Apply-EdgeAuthorization.ps1
Function OkToTryRefresh { PARAM( [int] $Lifetime ) if (! $MyInvocation.MyCommand.Module.PrivateData.Connection['MostRecentRefresh'] ) { return $true; } # Refresh no more than once every ($Lifetime - 5 minutes). $MoratoriumPeriod = [TimeSpan]::FromSeconds($Lifetime) $MoratoriumPeriod = $...
PowerShellCorpus/PowerShellGallery/PSApigeeEdge/0.2.15/Private/ConvertFrom-HashtableToQueryString.ps1
ConvertFrom-HashtableToQueryString.ps1
function ConvertFrom-HashtableToQueryString { <# .SYNOPSIS Convert a hashtable into a query string .DESCRIPTION Converts a hashtable into a query string by joining the keys to the values, and then joining all the pairs together .PARAMETER values The hashtable to convert .P...
PowerShellCorpus/PowerShellGallery/PSApigeeEdge/0.2.15/Private/Read-EdgeTokenStash.ps1
Read-EdgeTokenStash.ps1
function Read-EdgeTokenStash { [cmdletbinding()] PARAM() PROCESS { if ($PSBoundParameters['Debug']) { $DebugPreference = 'Continue' } $TokenStashFile = $MyInvocation.MyCommand.Module.PrivateData.Connection['TokenStash'] if (!$TokenStashFile) { throw [S...
PowerShellCorpus/PowerShellGallery/PSApigeeEdge/0.2.15/Private/Delete-EdgeAsset.ps1
Delete-EdgeAsset.ps1
Function Delete-EdgeAsset { <# .SYNOPSIS Delete an apiproxy or sharedflow, or a revision of same, from Apigee Edge. #> [cmdletbinding()] PARAM( [Parameter(Mandatory=$True)][string]$AssetType, [Parameter(Mandatory=$True)][string]$Name, [string]$Revision, [stri...
PowerShellCorpus/PowerShellGallery/PSApigeeEdge/0.2.15/Public/Revoke-EdgeAppCredential.ps1
Revoke-EdgeAppCredential.ps1
Function Revoke-EdgeAppCredential { <# .SYNOPSIS Revoke an existing credential or apiproduct on a credential for a developer app, without removing it. .DESCRIPTION Revoke an existing credential for a developer app, without removing it. Or, revoke a specific API Product on a credenti...
PowerShellCorpus/PowerShellGallery/PSApigeeEdge/0.2.15/Public/Update-EdgeApiProduct.ps1
Update-EdgeApiProduct.ps1
Function Update-EdgeApiProduct { <# .SYNOPSIS Update a API Product in Apigee Edge. .DESCRIPTION Update a API Product in Apigee Edge. When invoking this cmdlet you need to specify all the data that you would like to retain the API Product. For example, not specifying a Descri...
PowerShellCorpus/PowerShellGallery/PSApigeeEdge/0.2.15/Public/Update-EdgeDevAppStatus.ps1
Update-EdgeDevAppStatus.ps1
Function Update-EdgeDevAppStatus { <# .SYNOPSIS Approve or Revoke an existing credential, or an apiproduct on a credential, for a developer app. Or the entire app. .DESCRIPTION Approve or Revoke an existing credential from a developer app. Or, approve or revoke a specific API Produc...
PowerShellCorpus/PowerShellGallery/PSApigeeEdge/0.2.15/Public/Create-EdgeDevApp.ps1
Create-EdgeDevApp.ps1
Function Create-EdgeDevApp { <# .SYNOPSIS Create a developer app in Apigee Edge. .DESCRIPTION Create a developer app in Apigee Edge. This will generate a single credential for the app, with a list of api Products and optionally an expiry. .PARAMETER AppName Required. T...
PowerShellCorpus/PowerShellGallery/PSApigeeEdge/0.2.15/Public/Create-EdgeKvm.ps1
Create-EdgeKvm.ps1
Function Create-EdgeKvm { <# .SYNOPSIS Create a named key-value map in Apigee Edge. .DESCRIPTION Create a named key-value map in Apigee Edge. .PARAMETER Name The name of the key-value map to create. It must be unique for the scope (organization or environment). .P...
PowerShellCorpus/PowerShellGallery/PSApigeeEdge/0.2.15/Public/Get-EdgeKvmEntry.ps1
Get-EdgeKvmEntry.ps1
Function Get-EdgeKvmEntry { <# .SYNOPSIS Get (read) an entry in a Key-Value Map (KVM) in Apigee Edge. .DESCRIPTION Get (read) an entry in a Key-Value Map (KVM) in Apigee Edge. The organization must be CPS-enabled. .PARAMETER Name Required. The name of the specific KVM ...
PowerShellCorpus/PowerShellGallery/PSApigeeEdge/0.2.15/Public/UnDeploy-EdgeApi.ps1
UnDeploy-EdgeApi.ps1
Function UnDeploy-EdgeApi { <# .SYNOPSIS UnDeploy an apiproxy in Apigee Edge. .DESCRIPTION UnDeploy a revision of an API proxy that is deployed. .PARAMETER Name Required. The name of the apiproxy to undeploy. .PARAMETER Env Required. The name of the environment fro...
PowerShellCorpus/PowerShellGallery/PSApigeeEdge/0.2.15/Public/Get-EdgeNewAdminToken.ps1
Get-EdgeNewAdminToken.ps1
Function Get-EdgeNewAdminToken { <# .SYNOPSIS Gets an OAuth token for Edge Administration. .DESCRIPTION Gets an OAuth token for Edge Administration. This works only with Edge SaaS. You must have previously called Set-EdgeConnection to specify the user + password. In fact thi...
PowerShellCorpus/PowerShellGallery/PSApigeeEdge/0.2.15/Public/Send-EdgeRequest.ps1
Send-EdgeRequest.ps1
Function Send-EdgeRequest { <# .SYNOPSIS Send a POST request to Apigee Edge admin endpoint. .DESCRIPTION Send a POST request to Apigee Edge admin endpoint. This can be used to create an object in Apigee Edge, to Update an object, Revoke a key, etc. .PARAMETER Collection ...
PowerShellCorpus/PowerShellGallery/PSApigeeEdge/0.2.15/Public/Revoke-EdgeDeveloper.ps1
Revoke-EdgeDeveloper.ps1
Function Revoke-EdgeDeveloper { <# .SYNOPSIS Revoke a developer in Apigee Edge. .DESCRIPTION Set the status of the developer to 'Inactive', which means none of the credentials belonging to this developer will be treated as valid, at runtime. .PARAMETER Name The email o...
PowerShellCorpus/PowerShellGallery/PSApigeeEdge/0.2.15/Public/Get-EdgeSharedFlowDeployment.ps1
Get-EdgeSharedFlowDeployment.ps1
Function Get-EdgeSharedFlowDeployment { <# .SYNOPSIS Get the deployment status for a sharedflow in Apigee Edge .DESCRIPTION Get the deployment status for a sharedflow in Apigee Edge .PARAMETER Name Required. The name of the sharedflow to inquire. .PARAMETER Revision ...
PowerShellCorpus/PowerShellGallery/PSApigeeEdge/0.2.15/Public/Clear-EdgeCache.ps1
Clear-EdgeCache.ps1
Function Clear-EdgeCache { <# .SYNOPSIS Clear the entries in a cache in Apigee Edge. .PARAMETER Name The name of the cache to clear. .PARAMETER Env The Edge environment that contains the named cache. .PARAMETER Org The Apigee Edge organization. The ...
PowerShellCorpus/PowerShellGallery/PSApigeeEdge/0.2.15/Public/Delete-EdgeKeystore.ps1
Delete-EdgeKeystore.ps1
Function Delete-EdgeKeystore { <# .SYNOPSIS Delete a keystore from Apigee Edge. .DESCRIPTION Delete a keystore from Apigee Edge. .PARAMETER Name Required. The name of the keystore to delete. .PARAMETER Env Required. The environment in which the keystore is ...
PowerShellCorpus/PowerShellGallery/PSApigeeEdge/0.2.15/Public/Find-EdgeApp.ps1
Find-EdgeApp.ps1
Function Find-EdgeApp { <# .SYNOPSIS Finds an Edge App given the API Key. .DESCRIPTION Finds an Edge App given the API Key. The result is the developer app that owns the credential with that API key. .PARAMETER ConsumerKey Required. The API key to find. .PARAMETER ...
PowerShellCorpus/PowerShellGallery/PSApigeeEdge/0.2.15/Public/Delete-EdgeApiProduct.ps1
Delete-EdgeApiProduct.ps1
Function Delete-EdgeApiProduct { <# .SYNOPSIS Delete an API Product from Apigee Edge. .DESCRIPTION Delete an API Product from Apigee Edge. .PARAMETER Name The name of the API Product to delete. .PARAMETER Org The Apigee Edge organization. The default is to...
PowerShellCorpus/PowerShellGallery/PSApigeeEdge/0.2.15/Public/Get-EdgeKvm.ps1
Get-EdgeKvm.ps1
Function Get-EdgeKvm { <# .SYNOPSIS Get one or more Key-Value Maps (KVMs) from Apigee Edge. .DESCRIPTION Get one or more Key-Value Maps (KVMs) from Apigee Edge. .PARAMETER Name Optional. The name of the specific KVM to retrieve. The default is to list all KVMs in scope ...
PowerShellCorpus/PowerShellGallery/PSApigeeEdge/0.2.15/Public/Delete-EdgeObject.ps1
Delete-EdgeObject.ps1
Function Delete-EdgeObject { <# .SYNOPSIS Delete one or more objects from Apigee Edge .DESCRIPTION Delete one or more objects from Apigee Edge, such as developers, apis, apiproducts .PARAMETER Collection Type of object to delete. Example: 'developers', 'apis', or 'apip...
PowerShellCorpus/PowerShellGallery/PSApigeeEdge/0.2.15/Public/Delete-EdgeDeveloper.ps1
Delete-EdgeDeveloper.ps1
Function Delete-EdgeDeveloper { <# .SYNOPSIS Delete an developer app from Apigee Edge. .DESCRIPTION Delete an developer app from Apigee Edge. .PARAMETER Name The id or email address of the developer to delete. .PARAMETER Org The Apigee Edge organization. The defaul...
PowerShellCorpus/PowerShellGallery/PSApigeeEdge/0.2.15/Public/Create-EdgeDeveloper.ps1
Create-EdgeDeveloper.ps1
Function Create-EdgeDeveloper { <# .SYNOPSIS Create a developer in Apigee Edge. .DESCRIPTION Create a developer in Apigee Edge. .PARAMETER Name The name to give to this new Developer. It must be unique in the organization. .PARAMETER Email The Email address of the ...
PowerShellCorpus/PowerShellGallery/PSApigeeEdge/0.2.15/Public/Get-EdgeOrganization.ps1
Get-EdgeOrganization.ps1
Function Get-EdgeOrganization { <# .SYNOPSIS Get information regarding an organization in Apigee Edge. .DESCRIPTION Get information regarding an organization in Apigee Edge. You might want to do this to query whether CPS is enabled on an org, for example. .PARAMETER Org ...
PowerShellCorpus/PowerShellGallery/PSApigeeEdge/0.2.15/Public/Get-EdgeObject.ps1
Get-EdgeObject.ps1
Function Get-EdgeObject { <# .SYNOPSIS Get one or more objects from Apigee Edge. .DESCRIPTION Get one or more objects from Apigee Edge, such as developers, apis, apiproducts. This is a lower-level cmdlet. You may want to try the higher-level cmdlets like Get-EdgeApi or Get-E...
PowerShellCorpus/PowerShellGallery/PSApigeeEdge/0.2.15/Public/UnDeploy-EdgeSharedFlow.ps1
UnDeploy-EdgeSharedFlow.ps1
Function UnDeploy-EdgeSharedFlow { <# .SYNOPSIS UnDeploy an sharedflow in Apigee Edge. .DESCRIPTION UnDeploy a revision of a sharedflow that is deployed. .PARAMETER Name Required. The name of the sharedflow to undeploy. .PARAMETER Env Required. The name of the envi...
PowerShellCorpus/PowerShellGallery/PSApigeeEdge/0.2.15/Public/Approve-EdgeDeveloper.ps1
Approve-EdgeDeveloper.ps1
Function Approve-EdgeDeveloper { <# .SYNOPSIS Approve a developer in Apigee Edge. .DESCRIPTION Set the status of the developer to 'Active', which means the credentials belonging to this developer will be treated as valid, at runtime. .PARAMETER Name The email or id of ...
PowerShellCorpus/PowerShellGallery/PSApigeeEdge/0.2.15/Public/Get-EdgeApiDeployment.ps1
Get-EdgeApiDeployment.ps1
Function Get-EdgeApiDeployment { <# .SYNOPSIS Get the deployment status for an apiproxy in Apigee Edge .DESCRIPTION Get the deployment status for an apiproxy in Apigee Edge .PARAMETER Name Required. The name of the apiproxy to inquire. .PARAMETER Revision Optional....
PowerShellCorpus/PowerShellGallery/PSApigeeEdge/0.2.15/Public/Delete-EdgeDevApp.ps1
Delete-EdgeDevApp.ps1
Function Delete-EdgeDevApp { <# .SYNOPSIS Delete an developer app from Apigee Edge. .DESCRIPTION Delete an developer app from Apigee Edge. .PARAMETER AppName Required. The name of the developer app to delete. .PARAMETER Name A synonym for AppName. .PAR...
PowerShellCorpus/PowerShellGallery/PSApigeeEdge/0.2.15/Public/Revoke-EdgeDevApp.ps1
Revoke-EdgeDevApp.ps1
Function Revoke-EdgeDevApp { <# .SYNOPSIS Revoke a developer app in Apigee Edge. .DESCRIPTION Set the status of the developer app to 'Revoked', which means none of the credentials will be treated as valid, at runtime. Or, alternatively, revoke a single credential within a de...
PowerShellCorpus/PowerShellGallery/PSApigeeEdge/0.2.15/Public/Get-EdgeApi.ps1
Get-EdgeApi.ps1
Function Get-EdgeApi { <# .SYNOPSIS Get one or more apiproxies from Apigee Edge. .DESCRIPTION Get one or more apiproxies from Apigee Edge. .PARAMETER Name Optional. The name of the apiproxy to retrieve. The default is to list all apiproxies. .PARAMETER Revision ...
PowerShellCorpus/PowerShellGallery/PSApigeeEdge/0.2.15/Public/Deploy-EdgeApi.ps1
Deploy-EdgeApi.ps1
Function Deploy-EdgeApi { <# .SYNOPSIS Deploy an apiproxy in Apigee Edge. .DESCRIPTION Deploy a revision of an API proxy that is not yet deployed. .PARAMETER Name Required. The name of the apiproxy to deploy. .PARAMETER Env Required. The name of the environment to ...
PowerShellCorpus/PowerShellGallery/PSApigeeEdge/0.2.15/Public/Get-EdgeDevApp.ps1
Get-EdgeDevApp.ps1
Function Get-EdgeDevApp { <# .SYNOPSIS Get one or more developer apps from Apigee Edge. .DESCRIPTION Get one or more developer apps from Apigee Edge. .PARAMETER AppId The id of the developer app to retrieve. The default is to list all developer app IDs. Do not s...
PowerShellCorpus/PowerShellGallery/PSApigeeEdge/0.2.15/Public/Delete-EdgeKvm.ps1
Delete-EdgeKvm.ps1
Function Delete-EdgeKvm { <# .SYNOPSIS Delete a key-value map from Apigee Edge. .DESCRIPTION Delete a key-value map from Apigee Edge. .PARAMETER Name Required. The name of the kvm to delete. .PARAMETER Env Optional. The environment within Apigee Edge with w...
PowerShellCorpus/PowerShellGallery/PSApigeeEdge/0.2.15/Public/Create-EdgeCache.ps1
Create-EdgeCache.ps1
Function Create-EdgeCache { <# .SYNOPSIS Create a named cache in Apigee Edge. .DESCRIPTION Create a named cache in Apigee Edge. .PARAMETER Name The name of the cache to create. It must be unique for the environment. .PARAMETER Env A string, the name of the environm...
PowerShellCorpus/PowerShellGallery/PSApigeeEdge/0.2.15/Public/Get-EdgeDeveloper.ps1
Get-EdgeDeveloper.ps1
Function Get-EdgeDeveloper { <# .SYNOPSIS Get one or more developers from Apigee Edge .DESCRIPTION Get one or more developers from Apigee Edge .PARAMETER Name Optional. The name of the developer to retrieve. This can be either the email address or the developerId. If yo...
PowerShellCorpus/PowerShellGallery/PSApigeeEdge/0.2.15/Public/Create-EdgeKeystore.ps1
Create-EdgeKeystore.ps1
Function Create-EdgeKeystore { <# .SYNOPSIS Create a keystore in Apigee Edge. .DESCRIPTION Create a keystore in Apigee Edge. A keystore holds a certificate and private key. .PARAMETER Name Required. The name to give to this new keystore. It must be unique in the environment. ...
PowerShellCorpus/PowerShellGallery/PSApigeeEdge/0.2.15/Public/Update-EdgeAppCredential.ps1
Update-EdgeAppCredential.ps1
Function Update-EdgeAppCredential { <# .SYNOPSIS Update a credential in Apigee Edge, by adding or removing API Products. .DESCRIPTION Update a credential in Apigee Edge, by adding or removing API Products. If you want to update the status of the credential see Revoke-EdgeAppCreden...
PowerShellCorpus/PowerShellGallery/PSApigeeEdge/0.2.15/Public/Import-EdgeApi.ps1
Import-EdgeApi.ps1
Function Import-EdgeApi { <# .SYNOPSIS Import an apiproxy from a zip file into Apigee Edge. .DESCRIPTION Import an apiproxy from a zip file or directory into Apigee Edge. .PARAMETER Name Required. The name to use for the apiproxy, once imported. .PARAMETER Source R...
PowerShellCorpus/PowerShellGallery/PSApigeeEdge/0.2.15/Public/Get-EdgeVhost.ps1
Get-EdgeVhost.ps1
Function Get-EdgeVhost { <# .SYNOPSIS Get one or more virtualhost objects from Apigee Edge .DESCRIPTION Get information about one or more virtualhosts from Apigee Edge .PARAMETER Env Required. The name of the environment to search for virtualhosts. .PARAMETER Name ...
PowerShellCorpus/PowerShellGallery/PSApigeeEdge/0.2.15/Public/Get-EdgeCache.ps1
Get-EdgeCache.ps1
Function Get-EdgeCache { <# .SYNOPSIS Get one or more cache objects from Apigee Edge .DESCRIPTION Get one or more caches from Apigee Edge .PARAMETER Env Required. The name of the environment to search for caches. .PARAMETER Name Optional. The name of the cache to r...
PowerShellCorpus/PowerShellGallery/PSApigeeEdge/0.2.15/Public/Deploy-EdgeSharedFlow.ps1
Deploy-EdgeSharedFlow.ps1
Function Deploy-EdgeSharedFlow { <# .SYNOPSIS Deploy a sharedflow in Apigee Edge. .DESCRIPTION Deploy a revision of a sharedflow that is not yet deployed. It must exist. .PARAMETER Name Required. The name of the sharedflow to deploy. .PARAMETER Env Required. The na...
PowerShellCorpus/PowerShellGallery/PSApigeeEdge/0.2.15/Public/Get-EdgeRefreshedAdminToken.ps1
Get-EdgeRefreshedAdminToken.ps1
Function Get-EdgeRefreshedAdminToken { <# .SYNOPSIS Gets an OAuth token for Edge Administration. .DESCRIPTION Gets an OAuth token for Edge Administration. This works only with Edge SaaS. You must have previously called Set-EdgeConnection to specify the user + password. .LINK ...
PowerShellCorpus/PowerShellGallery/PSApigeeEdge/0.2.15/Public/Approve-EdgeAppCredential.ps1
Approve-EdgeAppCredential.ps1
Function Approve-EdgeAppCredential { <# .SYNOPSIS Approve an existing credential, or an apiproduct on a credential, for a developer app. .DESCRIPTION Approve an existing credential from a developer app. Or, approve a specific API Product on a credential for a developer app. Approvin...
PowerShellCorpus/PowerShellGallery/PSApigeeEdge/0.2.15/Public/Delete-EdgeSharedFlow.ps1
Delete-EdgeSharedFlow.ps1
Function Delete-EdgeSharedFlow { <# .SYNOPSIS Delete a sharedflow, or a revision of a sharedflow, from Apigee Edge. .DESCRIPTION Delete a sharedflow, or a revision of a sharedflow, from Apigee Edge. .PARAMETER Name Required. The name of the sharedflow to delete. .P...
PowerShellCorpus/PowerShellGallery/PSApigeeEdge/0.2.15/Public/Get-EdgeSharedFlowRevision.ps1
Get-EdgeSharedFlowRevision.ps1
Function Get-EdgeSharedFlowRevision { <# .SYNOPSIS Get the list of revisions for a sharedflow from Apigee Edge. .DESCRIPTION Get the list of revisions for a sharedflow from Apigee Edge. .PARAMETER Name Required. The name of the sharedflow to retrieve. .PARAMETER Org ...
PowerShellCorpus/PowerShellGallery/PSApigeeEdge/0.2.15/Public/Delete-EdgeCache.ps1
Delete-EdgeCache.ps1
Function Delete-EdgeCache { <# .SYNOPSIS Delete a named cache from Apigee Edge. .DESCRIPTION Delete a named cache from Apigee Edge. .PARAMETER Name Required. The name of the cache to delete. .PARAMETER Env Required. The Edge environment that contains the named cach...
PowerShellCorpus/PowerShellGallery/PSApigeeEdge/0.2.15/Public/Delete-EdgeApi.ps1
Delete-EdgeApi.ps1
Function Delete-EdgeApi { <# .SYNOPSIS Delete an apiproxy, or a revision of an apiproxy, from Apigee Edge. .DESCRIPTION Delete an apiproxy, or a revision of an apiproxy, from Apigee Edge. .PARAMETER Name Required. The name of the apiproxy to delete. .PARAMETER Revi...
PowerShellCorpus/PowerShellGallery/PSApigeeEdge/0.2.15/Public/Approve-EdgeDevApp.ps1
Approve-EdgeDevApp.ps1
Function Approve-EdgeDevApp { <# .SYNOPSIS Approve a developer app, or a credential within an app. .DESCRIPTION Set the status of the developer app to 'Approved', which means the credentials will be treated as valid, at runtime. Or, alternatively, approve a single credential...
PowerShellCorpus/PowerShellGallery/PSApigeeEdge/0.2.15/Public/Put-EdgeAppCredential.ps1
Put-EdgeAppCredential.ps1
Function Put-EdgeAppCredential { <# .SYNOPSIS Put a new credential onto a developer app. .DESCRIPTION Put a credential on the list for a developer app. Explicitly specify the consumer Key and consumer Secret. .PARAMETER AppId Optional. The id of the developer app to retrieve. Y...
PowerShellCorpus/PowerShellGallery/PSApigeeEdge/0.2.15/Public/Remove-EdgeAppCredential.ps1
Remove-EdgeAppCredential.ps1
Function Remove-EdgeAppCredential { <# .SYNOPSIS Remove an existing credential from a developer app. .DESCRIPTION Remove an existing credential from a developer app. .PARAMETER AppName The name of the developer app from which the credential will be removed. .PARAMETER Name...
PowerShellCorpus/PowerShellGallery/PSApigeeEdge/0.2.15/Public/Get-EdgeAppCredential.ps1
Get-EdgeAppCredential.ps1
Function Get-EdgeAppCredential { <# .SYNOPSIS Get the list of credentials for a developer app. .DESCRIPTION Get the list of credentials for a developer app. You can also use the Get-EdgeDevApp cmdlet to inquire the entire app, and then examine the credentials property on the...
PowerShellCorpus/PowerShellGallery/PSApigeeEdge/0.2.15/Public/Add-EdgeAppCredential.ps1
Add-EdgeAppCredential.ps1
Function Add-EdgeAppCredential { <# .SYNOPSIS Add a new credential to an existing developer app. .DESCRIPTION Add a new credential to an existing developer app. .PARAMETER AppName The name of the developer app to which the credential will be added. .PARAMETER Name ...
PowerShellCorpus/PowerShellGallery/PSApigeeEdge/0.2.15/Public/Get-EdgeKeystore.ps1
Get-EdgeKeystore.ps1
Function Get-EdgeKeystore { <# .SYNOPSIS Get information about a keystore from Apigee Edge. .DESCRIPTION Get information about a keystore from Apigee Edge. .PARAMETER Name Optional. The name of the specific keystore to retrieve. The default is to list all keystores in t...
PowerShellCorpus/PowerShellGallery/PSApigeeEdge/0.2.15/Public/Get-EdgeApiRevision.ps1
Get-EdgeApiRevision.ps1
Function Get-EdgeApiRevision { <# .SYNOPSIS Get the list of revisions for an apiproxy from Apigee Edge. .DESCRIPTION Get the list of revisions for an apiproxy from Apigee Edge. .PARAMETER Name Required. The name of the apiproxy to retrieve. .PARAMETER Org Optional....
PowerShellCorpus/PowerShellGallery/PSApigeeEdge/0.2.15/Public/Export-EdgeApi.ps1
Export-EdgeApi.ps1
Function Export-EdgeApi { <# .SYNOPSIS Export an apiproxy from Apigee Edge, into a zip file. .DESCRIPTION Export an apiproxy from Apigee Edge, into a zip file. .PARAMETER Name Required. The name of the api proxy to export. .PARAMETER Revision Required. The revision...