InfrastructureBackupValidator/BackupValidationTool.psd1 (34 lines of code) (raw):

@{ # Root module of this module. RootModule = 'BackupValidationTool.psm1' # Version number of this module. moduleVersion = '1.0.0.0' # Author of this module Author = 'Microsoft Corporation' # Company or vendor of this module CompanyName = 'Microsoft Corporation' # Copyright statement for this module Copyright = '(c) Microsoft Corporation. All rights reserved.' # Description of the functionality provided by this module Description = 'The BackupValidationTool module contains required functions for an automated backup validation process.' # Minimum version of the Windows PowerShell engine required by this module PowerShellVersion = '5.1' # Functions to export from this module FunctionsToExport = 'Validate-AzsBackup' # Dependencies of this module RequiredModules = @( (Join-Path $PSScriptRoot 'Unprotect-AzsBackup.psd1'), (Join-Path $PSScriptRoot 'IBCAdapterClientPkg\Microsoft.AzureStack.Fabric.Backup.Common.Client.Cmdlets.psd1') ) # 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 = @{ # Tags applied to this module. These help with module discovery in online galleries. Tags = @('Backup', 'Validate') # A URL to the license for this module. # LicenseUri = '' # ReleaseNotes of this module # ReleaseNotes = '' } # End of PSData hashtable } # End of PrivateData hashtable }