-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTM1ps.psd1
118 lines (84 loc) · 7.03 KB
/
TM1ps.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
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
# ======================================================================================================
# _____ _ _ ___ __
# | | | |\/| / | | |_) ( (`
# |_| |_| | |_| |_| _)_)
#
# ======================================================================================================
@{
# RootModule = ''
ModuleVersion = '0.0.1'
# CompatiblePSEditions = @()
GUID = '042f4656-e704-4e88-b0cb-a1832ec9f17c'
Author = 'Ifthen CHERMAK'
CompanyName = 'ichermak'
Copyright = '(c) 2019 Ifthen CHERMAK. All rights reserved.'
# Description = ''
PowerShellVersion = '5.1.1'
# PowerShellHostName = ''
# PowerShellHostVersion = ''
# DotNetFrameworkVersion = ''
# CLRVersion = ''
ProcessorArchitecture = 'None'
# RequiredModules = @()
# RequiredAssemblies = @('System.Net', 'System.Security')
# ScriptsToProcess = @()
# TypesToProcess = @('types.ps1xml')
# FormatsToProcess = @(format.ps1xml)
NestedModules = @(
'TM1ps_Common.psm1',
'TM1ps_Server.psm1',
'TM1ps_Application.psm1',
'TM1ps_Cube.psm1',
'TM1ps_View.psm1',
'TM1ps_Dimension.psm1',
'TM1ps_Hierarchy.psm1',
'TM1ps_Subset.psm1',
'TM1ps_Process.psm1',
'TM1ps_Chore.psm1'
)
FunctionsToExport = @(
'Get-Tm1Servers',
'Request-Tm1Login',
'Request-Tm1Logout',
'Request-Tm1Rest',
'Invoke-Tm1ExcelStringReplace',
'Get-Tm1ServerConfiguration',
'Get-Tm1Applications',
'Test-Tm1Application',
'Get-Tm1Cubes',
'Test-Tm1Cube',
'Get-Tm1Views',
'Test-Tm1View',
'Invoke-Tm1ViewCreateByMdx',
'Get-Tm1Dimensions',
'Test-Tm1Dimension',
'Get-Tm1Hierarchies',
'Test-Tm1Hierarchy',
'Get-Tm1Subsets',
'Test-Tm1Subset',
'Invoke-Tm1SubsetCreatebyMDX',
'Get-Tm1Processes',
'Test-Tm1Process',
'Invoke-Tm1Process',
'Get-Tm1Chores',
'Test-Tm1Chore',
'Invoke-Tm1Chore'
)
CmdletsToExport = @()
VariablesToExport = '*'
AliasesToExport = @()
# DscResourcesToExport = @()
# ModuleList = @()
# FileList = @()
PrivateData = @{
PSData = @{
Tags = @('tm1', 'planning analytics', 'powershell', 'ibm', 'rest-api')
LicenseUri = 'https://github.com/ichermak/TM1ps/blob/master/LICENSE'
ProjectUri = 'https://github.com/ichermak/TM1ps'
IconUri = 'https://github.com/ichermak/TM1ps/blob/master/Images/TM1ps.png'
ReleaseNotes = 'https://github.com/ichermak/TM1ps'
}
}
# HelpInfoURI = ''
DefaultCommandPrefix = ''
}