Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
105 changes: 53 additions & 52 deletions AzTable.psd1
Original file line number Diff line number Diff line change
@@ -1,52 +1,53 @@
@{

# ID used to uniquely identify this module
GUID = '0ed51f07-bcc5-429d-9322-0477168a0926'

# Author of this module
Author = 'Paulo Marques (MSFT)'

# Company or vendor of this module
CompanyName = 'Microsoft Corporation'

# Copyright statement for this module
Copyright = '© Microsoft Corporation. All rights reserved.'

# Description of the functionality provided by this module
Description = 'Sample functions to add/retrieve/update entities on Azure Storage Tables from PowerShell (This is the same as AzureRmStorageTable module but with a new module name). It requires latest PowerShell Az module installed. Instructions at https://docs.microsoft.com/en-us/powershell/azure/install-az-ps?view=azps-1.6.0. For documentation, please visit https://paulomarquesc.github.io/working-with-azure-storage-tables-from-powershell/.'

# HelpInfo URI of this module
HelpInfoUri = 'https://github.com/paulomarquesc/AzureRmStorageTable/tree/master/docs'

# Version number of this module
ModuleVersion = '2.1.0'

# Minimum version of the Windows PowerShell engine required by this module
PowerShellVersion = '4.0'

# Minimum version of the common language runtime (CLR) required by this module
CLRVersion = '2.0'

# Script module or binary module file associated with this manifest
#ModuleToProcess = ''

# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
NestedModules = @('AzureRmStorageTableCoreHelper.psm1')

FunctionsToExport = @( 'Add-AzTableRow',
'Get-AzTableRow',
'Get-AzTableRowAll',
'Get-AzTableRowByPartitionKeyRowKey',
'Get-AzTableRowByPartitionKey',
'Get-AzTableRowByColumnName',
'Get-AzTableRowByCustomFilter',
'Update-AzTableRow',
'Remove-AzTableRow',
'Get-AzTableTable'
)

VariablesToExport = ''

AliasesToExport = '*'

}
@{

# ID used to uniquely identify this module
GUID = '0ed51f07-bcc5-429d-9322-0477168a0926'

# Author of this module
Author = 'Paulo Marques (MSFT)'

# Company or vendor of this module
CompanyName = 'Microsoft Corporation'

# Copyright statement for this module
Copyright = '© Microsoft Corporation. All rights reserved.'

# Description of the functionality provided by this module
Description = 'Sample functions to add/retrieve/update entities on Azure Storage Tables from PowerShell (This is the same as AzureRmStorageTable module but with a new module name). It requires latest PowerShell Az module installed. Instructions at https://docs.microsoft.com/en-us/powershell/azure/install-az-ps?view=azps-1.6.0. For documentation, please visit https://paulomarquesc.github.io/working-with-azure-storage-tables-from-powershell/.'

# HelpInfo URI of this module
HelpInfoUri = 'https://github.com/paulomarquesc/AzureRmStorageTable/tree/master/docs'

# Version number of this module
ModuleVersion = '2.1.0'

# Minimum version of the Windows PowerShell engine required by this module
PowerShellVersion = '4.0'

# Minimum version of the common language runtime (CLR) required by this module
CLRVersion = '2.0'

# Script module or binary module file associated with this manifest
#ModuleToProcess = ''

# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
NestedModules = @('AzureRmStorageTableCoreHelper.psm1')

FunctionsToExport = @( 'Add-AzTableRow',
'Get-AzTableRow',
'Get-AzTableRowAll',
'Get-AzTableRowByPartitionKeyRowKey',
'Get-AzTableRowByPartitionKey',
'Get-AzTableRowByColumnName',
'Get-AzTableRowByCustomFilter',
'Update-AzTableRow',
'Remove-AzTableRow',
'Remove-AzTableRows',
'Get-AzTableTable'
)

VariablesToExport = ''

AliasesToExport = '*'

}
3 changes: 2 additions & 1 deletion AzureRmStorageTable.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@
'Get-AzTableRowByColumnName',
'Get-AzTableRowByCustomFilter',
'Update-AzTableRow',
'Remove-AzTableRow',
'Remove-AzTableRow',
'Remove-AzTableRows',
'Get-AzTableTable'
)

Expand Down
Loading