Skip to content
This repository was archived by the owner on Mar 8, 2024. It is now read-only.

Commit 162fcc2

Browse files
authored
PureStorageDbaTools manifest file
1 parent 66b8a5a commit 162fcc2

File tree

1 file changed

+95
-0
lines changed

1 file changed

+95
-0
lines changed

PureStorageDbaTools.psd1

Lines changed: 95 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
#
2+
# Module manifest for module 'PureStorageDbaTools'
3+
#
4+
# Generated by: Chris Adkin
5+
#
6+
# Generated on: 05/07/2018
7+
#
8+
9+
@{
10+
11+
# Script module or binary module file associated with this manifest.
12+
RootModule = 'PureStorageDbaTools.psm1'
13+
14+
# Version number of this module.
15+
ModuleVersion = '1.7.3.1'
16+
17+
# ID used to uniquely identify this module
18+
GUID = '190c8acb-d09f-4e24-99a6-5bb968373904'
19+
20+
# Author of this module
21+
Author = 'cadkin@purestorage.com'
22+
23+
# Company or vendor of this module
24+
CompanyName = 'Pure Storage'
25+
26+
# Copyright statement for this module
27+
Copyright = '(c) 2018 Pure Storage. All rights reserved. Available under the Apache 2.0 license'
28+
29+
# Description of the functionality provided by this module
30+
Description = 'Tools for refreshing SQL Server databases via FlashArray crash consistent snapshots'
31+
32+
# Minimum version of the Windows PowerShell engine required by this module
33+
# PowerShellVersion = ''
34+
35+
# Name of the Windows PowerShell host required by this module
36+
# PowerShellHostName = ''
37+
38+
# Minimum version of the Windows PowerShell host required by this module
39+
# PowerShellHostVersion = ''
40+
41+
# Minimum version of Microsoft .NET Framework required by this module
42+
# DotNetFrameworkVersion = ''
43+
44+
# Minimum version of the common language runtime (CLR) required by this module
45+
# CLRVersion = ''
46+
47+
# Processor architecture (None, X86, Amd64) required by this module
48+
# ProcessorArchitecture = ''
49+
50+
# Modules that must be imported into the global environment prior to importing this module
51+
RequiredModules = @('PureStoragePowerShellSDK', 'dbatools')
52+
53+
# Assemblies that must be loaded prior to importing this module
54+
# RequiredAssemblies = @()
55+
56+
# Script files (.ps1) that are run in the caller's environment prior to importing this module.
57+
# ScriptsToProcess = @()
58+
59+
# Type files (.ps1xml) to be loaded when importing this module
60+
# TypesToProcess = @()
61+
62+
# Format files (.ps1xml) to be loaded when importing this module
63+
# FormatsToProcess = @()
64+
65+
# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
66+
# NestedModules = @()
67+
68+
# Functions to export from this module
69+
FunctionsToExport = @('New-PfaDbSnapshot', 'Invoke-PfaDbRefresh', 'Enable-DataMasks')
70+
71+
# Cmdlets to export from this module
72+
CmdletsToExport = '*'
73+
74+
# Variables to export from this module
75+
VariablesToExport = '*'
76+
77+
# Aliases to export from this module
78+
AliasesToExport = '*'
79+
80+
# List of all modules packaged with this module
81+
# ModuleList = @()
82+
83+
# List of all files packaged with this module
84+
# FileList = @()
85+
86+
# Private data to pass to the module specified in RootModule/ModuleToProcess
87+
# PrivateData = ''
88+
89+
# HelpInfo URI of this module
90+
# HelpInfoURI = ''
91+
92+
# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix.
93+
# DefaultCommandPrefix = ''
94+
95+
}

0 commit comments

Comments
 (0)