forked from augiaugi/OpenStackPowerShellModule
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOpenStack.psd1
More file actions
83 lines (56 loc) · 2.03 KB
/
OpenStack.psd1
File metadata and controls
83 lines (56 loc) · 2.03 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
@{
# Script module or binary module file associated with this manifest.
RootModule = 'OpenStack.psm1'
# Version number of this module.
ModuleVersion = '1.1'
# Supported PSEditions
# CompatiblePSEditions = @()
# ID used to uniquely identify this module
GUID = 'c44f9c8c-684f-4c28-96f9-ac26bb4188db'
# Author of this module
Author = 'Augustin Ziegler'
# Company or vendor of this module
CompanyName = ''
# Copyright statement for this module
Copyright = ''
# Description of the functionality provided by this module
Description = 'PowerShell Module to manage OpenStack.'
# Minimum version of the Windows PowerShell engine required by this module
PowerShellVersion = ''
# Name of Required PowerShell Host
PowerShellHostName = ''
# Minimum Host Version Required
PowerShellHostVersion = ''
# Minimum .NET Framework-Version
DotNetFrameworkVersion = ''
# Minimum CLR (Common Language Runtime) Version
CLRVersion = ''
# Processor Architecture Required (X86, Amd64, IA64)
ProcessorArchitecture = ''
# Required Modules (will load before this module loads)
RequiredModules = @()
# Required Assemblies
RequiredAssemblies = @()
# PowerShell Scripts (.ps1) that need to be executed before this module loads
ScriptsToProcess = @()
# Type files (.ps1xml) that need to be loaded when this module loads
TypesToProcess = @()
# Format files (.ps1xml) that need to be loaded when this module loads
FormatsToProcess = @()
#
NestedModules = @()
# List of exportable functions
FunctionsToExport = '*'
# List of exportable cmdlets
CmdletsToExport = '*'
# List of exportable variables
VariablesToExport = '*'
# List of exportable aliases
AliasesToExport = '*'
# List of all modules contained in this module
ModuleList = @()
# List of all files contained in this module
FileList = @()
# Private data that needs to be passed to this module
PrivateData = ''
}