-
Notifications
You must be signed in to change notification settings - Fork 1
/
Ubisecure.OAuth2.psd1
47 lines (46 loc) · 2.59 KB
/
Ubisecure.OAuth2.psd1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#
# Module manifest for module "Ubisecure.OAuth2"
#
@{
RootModule = "Ubisecure.OAuth2.psm1"
ModuleVersion = "1.3.0"
GUID = "96e72ae8-79d7-4728-a0e0-6f4b28409460"
Author = "petteri.stenius@ubisecure.com"
Description = "PowerShell OAuth 2.0 Client for Ubisecure SSO"
PowerShellVersion = "5.1"
CompatiblePSEditions = "Desktop","Core"
DefaultCommandPrefix = "OAuth"
FunctionsToExport = @(
"Add-Metadata",
"ConvertTo-HttpAuthorization",
"ConvertTo-HttpBasic",
"ConvertTo-HttpBearer",
"Get-AccessToken",
"Get-AuthorizationCode",
"Get-ClientConfigPath",
"Get-Metadata",
"Get-ModulePath",
"Get-ScopeFromHttpError",
"Get-TokenInfo",
"Get-UserInfo",
"New-BrowserRequest",
"New-ClientConfig",
"Start-Browser"
)
CmdletsToExport = @()
VariablesToExport = @(
"OAuthBrowserDefinitions"
)
AliasesToExport = @()
NestedModules = @(
"Get-CallerPreference.ps1",
"EmbeddedBrowser.ps1",
"LoopbackRedirection.ps1",
"BrowserDefinitions.ps1"
)
ScriptsToProcess = @()
RequiredModules = @(
@{"ModuleName"="Ubisecure.QueryString";"ModuleVersion"="1.3.0";"Guid"="80f2f884-f2e3-457f-b7c2-16e884ce9ba2"},
@{"ModuleName"="Ubisecure.HttpListener";"ModuleVersion"="1.2.0";"Guid"="f94e8814-3091-4ee4-bb63-660ae73471ba"}
)
}