Skip to content

Commit e5c8268

Browse files
authored
Add pipeline input to remove function
1 parent 6a8b301 commit e5c8268

File tree

3 files changed

+400
-388
lines changed

3 files changed

+400
-388
lines changed

cosmos-db/cosmos-db.psd1

+76-76
Original file line numberDiff line numberDiff line change
@@ -7,119 +7,119 @@
77

88
@{
99

10-
# Script module or binary module file associated with this manifest.
11-
# RootModule = ''
10+
# Script module or binary module file associated with this manifest.
11+
# RootModule = ''
1212

13-
# Version number of this module.
14-
ModuleVersion = '1.8'
13+
# Version number of this module.
14+
ModuleVersion = '1.9'
1515

16-
# Supported PSEditions
17-
# CompatiblePSEditions = @()
16+
# Supported PSEditions
17+
# CompatiblePSEditions = @()
1818

19-
# ID used to uniquely identify this module
20-
GUID = '3b1286c3-b477-4233-a1b3-f8968ef02e45'
19+
# ID used to uniquely identify this module
20+
GUID = '3b1286c3-b477-4233-a1b3-f8968ef02e45'
2121

22-
# Author of this module
23-
Author = 'cmbrose'
22+
# Author of this module
23+
Author = 'cmbrose'
2424

25-
# Company or vendor of this module
26-
CompanyName = 'Unknown'
25+
# Company or vendor of this module
26+
CompanyName = 'Unknown'
2727

28-
# Copyright statement for this module
29-
Copyright = '(c) 2020 cmbrose. All rights reserved.'
28+
# Copyright statement for this module
29+
Copyright = '(c) 2020 cmbrose. All rights reserved.'
3030

31-
# Description of the functionality provided by this module
32-
Description = 'Powershell utility for Cosmos DB'
31+
# Description of the functionality provided by this module
32+
Description = 'Powershell utility for Cosmos DB'
3333

34-
# Minimum version of the Windows PowerShell engine required by this module
35-
# PowerShellVersion = ''
34+
# Minimum version of the Windows PowerShell engine required by this module
35+
# PowerShellVersion = ''
3636

37-
# Name of the Windows PowerShell host required by this module
38-
# PowerShellHostName = ''
37+
# Name of the Windows PowerShell host required by this module
38+
# PowerShellHostName = ''
3939

40-
# Minimum version of the Windows PowerShell host required by this module
41-
# PowerShellHostVersion = ''
40+
# Minimum version of the Windows PowerShell host required by this module
41+
# PowerShellHostVersion = ''
4242

43-
# Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
44-
# DotNetFrameworkVersion = ''
43+
# Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
44+
# DotNetFrameworkVersion = ''
4545

46-
# Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
47-
# CLRVersion = ''
46+
# Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
47+
# CLRVersion = ''
4848

49-
# Processor architecture (None, X86, Amd64) required by this module
50-
# ProcessorArchitecture = ''
49+
# Processor architecture (None, X86, Amd64) required by this module
50+
# ProcessorArchitecture = ''
5151

52-
# Modules that must be imported into the global environment prior to importing this module
53-
# RequiredModules = @()
52+
# Modules that must be imported into the global environment prior to importing this module
53+
# RequiredModules = @()
5454

55-
# Assemblies that must be loaded prior to importing this module
56-
# RequiredAssemblies = @()
55+
# Assemblies that must be loaded prior to importing this module
56+
# RequiredAssemblies = @()
5757

58-
# Script files (.ps1) that are run in the caller's environment prior to importing this module.
59-
# ScriptsToProcess = @()
58+
# Script files (.ps1) that are run in the caller's environment prior to importing this module.
59+
# ScriptsToProcess = @()
6060

61-
# Type files (.ps1xml) to be loaded when importing this module
62-
# TypesToProcess = @()
61+
# Type files (.ps1xml) to be loaded when importing this module
62+
# TypesToProcess = @()
6363

64-
# Format files (.ps1xml) to be loaded when importing this module
65-
# FormatsToProcess = @()
64+
# Format files (.ps1xml) to be loaded when importing this module
65+
# FormatsToProcess = @()
6666

67-
# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
68-
NestedModules = @('cosmos-db.psm1')
67+
# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
68+
NestedModules = @('cosmos-db.psm1')
6969

70-
# 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.
71-
FunctionsToExport = 'Get-CosmosDbRecord', 'Get-AllCosmosDbRecords',
72-
'Search-CosmosDbRecords', 'New-CosmosDbRecord',
73-
'Update-CosmosDbRecord', 'Remove-CosmosDbRecord',
74-
'Get-CosmosDbRecordContent', 'Use-CosmosDbInternalFlag'
70+
# 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.
71+
FunctionsToExport = 'Get-CosmosDbRecord', 'Get-AllCosmosDbRecords',
72+
'Search-CosmosDbRecords', 'New-CosmosDbRecord',
73+
'Update-CosmosDbRecord', 'Remove-CosmosDbRecord',
74+
'Get-CosmosDbRecordContent', 'Use-CosmosDbInternalFlag'
7575

76-
# 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.
77-
CmdletsToExport = '*'
76+
# 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.
77+
CmdletsToExport = '*'
7878

79-
# Variables to export from this module
80-
VariablesToExport = '*'
79+
# Variables to export from this module
80+
VariablesToExport = '*'
8181

82-
# 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.
83-
AliasesToExport = '*'
82+
# 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.
83+
AliasesToExport = '*'
8484

85-
# DSC resources to export from this module
86-
# DscResourcesToExport = @()
85+
# DSC resources to export from this module
86+
# DscResourcesToExport = @()
8787

88-
# List of all modules packaged with this module
89-
# ModuleList = @()
88+
# List of all modules packaged with this module
89+
# ModuleList = @()
9090

91-
# List of all files packaged with this module
92-
# FileList = @()
91+
# List of all files packaged with this module
92+
# FileList = @()
9393

94-
# 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.
95-
PrivateData = @{
94+
# 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.
95+
PrivateData = @{
9696

97-
PSData = @{
97+
PSData = @{
9898

99-
# Tags applied to this module. These help with module discovery in online galleries.
100-
# Tags = @()
99+
# Tags applied to this module. These help with module discovery in online galleries.
100+
# Tags = @()
101101

102-
# A URL to the license for this module.
103-
LicenseUri = 'https://github.com/cmbrose/cosmosdb-powershell/blob/main/LICENSE'
102+
# A URL to the license for this module.
103+
LicenseUri = 'https://github.com/cmbrose/cosmosdb-powershell/blob/main/LICENSE'
104104

105-
# A URL to the main website for this project.
106-
ProjectUri = 'https://github.com/cmbrose/cosmosdb-powershell'
105+
# A URL to the main website for this project.
106+
ProjectUri = 'https://github.com/cmbrose/cosmosdb-powershell'
107107

108-
# A URL to an icon representing this module.
109-
# IconUri = ''
108+
# A URL to an icon representing this module.
109+
# IconUri = ''
110110

111-
# ReleaseNotes of this module
112-
# ReleaseNotes = ''
111+
# ReleaseNotes of this module
112+
# ReleaseNotes = ''
113113

114-
} # End of PSData hashtable
114+
} # End of PSData hashtable
115115

116-
} # End of PrivateData hashtable
116+
} # End of PrivateData hashtable
117117

118-
# HelpInfo URI of this module
119-
HelpInfoURI = 'https://github.com/cmbrose/cosmosdb-powershell/blob/main/README.md'
118+
# HelpInfo URI of this module
119+
HelpInfoURI = 'https://github.com/cmbrose/cosmosdb-powershell/blob/main/README.md'
120120

121-
# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix.
122-
# DefaultCommandPrefix = ''
121+
# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix.
122+
# DefaultCommandPrefix = ''
123123

124124
}
125125

0 commit comments

Comments
 (0)