FabricApiTools.psd1

@{
    RootModule = 'FabricApiTools.psm1'
    ModuleVersion = '0.11'
    GUID = '2d377551-9834-4049-a9d6-61d8b3f3b046'
    Author = 'Artur Starosta'
    CompanyName = 'Your Company'
    Copyright = 'Copyright © Your Company'
    Description = 'A brief description of your PowerShell module.'
    PowerShellVersion = '5.1'
    FunctionsToExport = @(
                        'Set-FabricApiAuthToken',
                        'Get-FabricWorkspace',
                        'Deploy-ReportProject',
                        'Deploy-SemanticModelProject',
                        'Update-SqlConnections',
                        'Get-FabricLakehouse',
                        'Update-DatasetParameter',
                        'Get-FabricSemanticModel',
                        'Start-DeploymentStage'
    )
    CmdletsToExport = @()
    VariablesToExport = @('FabricApiUrl', 'FabricResourceUrl','PbiApiUrl','PbiResourceUrl')
    AliasesToExport = @()
    NestedModules = @()
    RequiredModules = @()
    RequiredAssemblies = @()
    FileList = @()
    DscResourcesToExport = @()
    PrivateData       = @{

        PSData = @{

            # Prerelease string of this module
            # Prerelease = ''

            # Flag to indicate whether the module requires explicit user acceptance for install/update/save
            # RequireLicenseAcceptance = $false

            # External dependent modules of this module
            ExternalModuleDependencies = @('Az.Accounts')

        } # End of PSData hashtable

    } # End of PrivateData hashtable
}