AMSoftware.Dataverse.PowerShell.Development.psm1
# PowerShell Module for Power Platform Dataverse # Copyright(C) 2024 AMSoftwareNL # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. # .EXTERNALHELP AMSoftware.Dataverse.PowerShell.Development.psm1-help.xml function Export-DataverseWebResource { [CmdletBinding()] param ( ) begin { throw [System.NotImplementedException]::new() } } # .EXTERNALHELP AMSoftware.Dataverse.PowerShell.Development.psm1-help.xml function Export-DataversePluginAssembly { [CmdletBinding()] param ( ) begin { throw [System.NotImplementedException]::new() } } # .EXTERNALHELP AMSoftware.Dataverse.PowerShell.Development.psm1-help.xml function Import-DataverseWebResource { [CmdletBinding()] param ( ) begin { throw [System.NotImplementedException]::new() } } # .EXTERNALHELP AMSoftware.Dataverse.PowerShell.Development.psm1-help.xml function Publish-DataverseComponent { [CmdletBinding()] param ( ) begin { throw [System.NotImplementedException]::new() } } # .EXTERNALHELP AMSoftware.Dataverse.PowerShell.Development.psm1-help.xml function Register-DataverseDataProvider { [CmdletBinding()] param ( ) begin { throw [System.NotImplementedException]::new() } } # .EXTERNALHELP AMSoftware.Dataverse.PowerShell.Development.psm1-help.xml function Register-DataversePlugin { [CmdletBinding()] param ( ) begin { throw [System.NotImplementedException]::new() } } # .EXTERNALHELP AMSoftware.Dataverse.PowerShell.Development.psm1-help.xml function Register-DataversePluginStep { [CmdletBinding()] param ( ) begin { throw [System.NotImplementedException]::new() } } # .EXTERNALHELP AMSoftware.Dataverse.PowerShell.Development.psm1-help.xml function Register-DataversePluginStepImage { [CmdletBinding()] param ( ) begin { throw [System.NotImplementedException]::new() } } # .EXTERNALHELP AMSoftware.Dataverse.PowerShell.Development.psm1-help.xml function Register-DataverseServiceEndpoint { [CmdletBinding()] param ( ) begin { throw [System.NotImplementedException]::new() } } # .EXTERNALHELP AMSoftware.Dataverse.PowerShell.Development.psm1-help.xml function Register-DataverseWebhook { [CmdletBinding()] param ( ) begin { throw [System.NotImplementedException]::new() } } # .EXTERNALHELP AMSoftware.Dataverse.PowerShell.Development.psm1-help.xml function Test-DataverseSolution { [CmdletBinding()] param ( ) begin { throw [System.NotImplementedException]::new() } } # .EXTERNALHELP AMSoftware.Dataverse.PowerShell.Development.psm1-help.xml function Test-DataverseSolutionComponent { [CmdletBinding()] param ( ) begin { throw [System.NotImplementedException]::new() } } # .EXTERNALHELP AMSoftware.Dataverse.PowerShell.Development.psm1-help.xml function Unregister-DataverseDataProvider { [CmdletBinding()] param ( ) begin { throw [System.NotImplementedException]::new() } } # .EXTERNALHELP AMSoftware.Dataverse.PowerShell.Development.psm1-help.xml function Unregister-DataversePlugin { [CmdletBinding()] param ( ) begin { throw [System.NotImplementedException]::new() } } # .EXTERNALHELP AMSoftware.Dataverse.PowerShell.Development.psm1-help.xml function Unregister-DataversePluginAssembly { [CmdletBinding()] param ( ) begin { throw [System.NotImplementedException]::new() } } # .EXTERNALHELP AMSoftware.Dataverse.PowerShell.Development.psm1-help.xml function Unregister-DataversePluginStep { [CmdletBinding()] param ( ) begin { throw [System.NotImplementedException]::new() } } # .EXTERNALHELP AMSoftware.Dataverse.PowerShell.Development.psm1-help.xml function Unregister-DataversePluginStepImage { [CmdletBinding()] param ( ) begin { throw [System.NotImplementedException]::new() } } # .EXTERNALHELP AMSoftware.Dataverse.PowerShell.Development.psm1-help.xml function Unregister-DataverseServiceEndpoint { [CmdletBinding()] param ( ) begin { throw [System.NotImplementedException]::new() } } |