forked from dsccommunity/SqlServerDsc
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSqlServerDsc.Common.psd1
More file actions
70 lines (57 loc) · 2.51 KB
/
Copy pathSqlServerDsc.Common.psd1
File metadata and controls
70 lines (57 loc) · 2.51 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
@{
RootModule = 'SqlServerDsc.Common.psm1'
# Version number of this module.
ModuleVersion = '1.0.0'
# ID used to uniquely identify this module
GUID = 'b8e5084a-07a8-4135-8a26-00614e56ba71'
# Author of this module
Author = 'DSC Community'
# Company or vendor of this module
CompanyName = 'DSC Community'
# Copyright statement for this module
Copyright = 'Copyright the DSC Community contributors. All rights reserved.'
# Description of the functionality provided by this module
Description = 'Functions used by the DSC resources in SqlServerDsc.'
# 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 = @(
'Format-Path'
'Copy-ItemWithRobocopy'
'Invoke-InstallationMediaCopy'
'Connect-UncPath'
'Disconnect-UncPath'
'Start-SqlSetupProcess'
'Connect-SQL'
'Connect-SQLAnalysis'
'Get-SqlInstanceMajorVersion'
'Restart-SqlService'
'Restart-ReportingServicesService'
'Update-AvailabilityGroupReplica'
'Test-LoginEffectivePermissions'
'Test-AvailabilityReplicaSeedingModeAutomatic'
'Get-PrimaryReplicaServerObject'
'Test-ImpersonatePermissions'
'Split-FullSqlInstanceName'
'Test-ClusterPermissions'
'Test-ActiveNode'
'Invoke-SqlScript'
'Get-ServiceAccount'
'Find-ExceptionByNumber'
'Compare-ResourcePropertyState'
'Test-DscPropertyState'
'Import-Assembly'
'ConvertTo-ServerInstanceName'
'Get-FilePathMajorVersion'
'Test-FeatureFlag'
)
# 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 = @()
# 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 = @{
} # End of PSData hashtable
} # End of PrivateData hashtable
}