KeDo_CosmosSQLAPI.psd1

#
# Module manifest for module 'KeDo_CosmosRESTAPI'
#

@{
    #* Module Statics
    ModuleVersion     = '0.1.2'
    GUID              = 'c6f2d58f-bf42-44f2-b97f-2d0f3597419b'
    
    #* Copyright stuff
    Author            = 'Ken Dobrunz'
    Copyright         = 'Ken Dobrunz // Ken.Dobrunz@skaylink.com & Ken@Dobrunz.tech'
    Description       = 'PowerShell helper to use Azure CosmosDB REST API (Core / SQL API)'
    HelpInfoURI       = 'http://kensmagic.site'
    
    #* Module files & co.
    # RootModule = ''
    
    NestedModules     = @(
        "Get-CDBDocument.psm1"
        "New-CDBAuthHeader.psm1"
        "New-CDBDocument.psm1"
        "Remove-CDBDocument.psm1"
        "Update-CDBDocument.psm1"
    )
    
    RequiredModules   = @()
    
    #* Export
    # FunctionsToExport = @()
    CmdletsToExport   = @()
    VariablesToExport = ''
    AliasesToExport   = @()
    
    # Private data to pass to the nested modules
    PrivateData       = @{
        PSData = @{
        }
    }
    
}