Skip to content

Commit

Permalink
update stubs
Browse files Browse the repository at this point in the history
  • Loading branch information
malauter committed Jan 2, 2024
1 parent 38f50b1 commit b382d73
Show file tree
Hide file tree
Showing 2 changed files with 134 additions and 3 deletions.
3 changes: 0 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,15 @@
* TeamsChannel
* Add error handling if GroupId of a team is null
FIXES [#3943](https://github.com/microsoft/Microsoft365DSC/issues/3943)
<<<<<<< HEAD
* EXOReportSubmissionPolicy
* Initial release
FIXES [#3690](https://github.com/microsoft/Microsoft365DSC/issues/3690)
=======
* TeamsFeedbackPolicy
* Added parameter descriptions for better documentation
* TeamsMobilityPolicy
* Added parameter descriptions for better documentation
* TeamsNetworkRoamingPolicy
* Added parameter descriptions for better documentation
>>>>>>> Dev

# 1.23.1227.1

Expand Down
134 changes: 134 additions & 0 deletions Tests/Unit/Stubs/Microsoft365.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -1353,6 +1353,15 @@ function Get-RemoteDomain
$ResultSize
)
}
function Get-ReportSubmissionPolicy
{
[CmdletBinding()]
param(
[Parameter()]
[System.Object]
$Identity
)
}
function Get-ResourceConfig
{
[CmdletBinding()]
Expand Down Expand Up @@ -4331,6 +4340,13 @@ function New-RemoteDomain
$DomainName
)
}
function New-ReportSubmissionPolicy
{
[CmdletBinding()]
param(

)
}
function New-RoleAssignmentPolicy
{
[CmdletBinding()]
Expand Down Expand Up @@ -6044,6 +6060,15 @@ function Remove-RemoteDomain
$Identity
)
}
function Remove-ReportSubmissionPolicy
{
[CmdletBinding()]
param(
[Parameter()]
[System.Object]
$Identity
)
}
function Remove-RoleAssignmentPolicy
{
[CmdletBinding()]
Expand Down Expand Up @@ -11356,6 +11381,115 @@ function Set-RemoteDomain
$UseSimpleDisplayName
)
}
function Set-ReportSubmissionPolicy
{
[CmdletBinding()]
param(
[Parameter()]
[System.String]
$Identity,

[Parameter()]
[System.Boolean]
$DisableQuarantineReportingOption,

[Parameter()]
[System.Boolean]
$EnableCustomNotificationSender,

[Parameter()]
[System.Boolean]
$EnableOrganizationBranding,

[Parameter()]
[System.Boolean]
$EnableReportToMicrosoft,

[Parameter()]
[System.Boolean]
$EnableThirdPartyAddress,

[Parameter()]
[System.Boolean]
$EnableUserEmailNotification,

[Parameter()]
[System.String]
$JunkReviewResultMessage,

[Parameter()]
[System.String]
$NotJunkReviewResultMessage,

[Parameter()]
[System.String]
$NotificationFooterMessage,

[Parameter()]
[System.String]
$NotificationSenderAddress,

[Parameter()]
[System.String]
$PhishingReviewResultMessage,

[Parameter()]
[System.String]
$PostSubmitMessage,

[Parameter()]
[System.Boolean]
$PostSubmitMessageEnabled,

[Parameter()]
[System.String]
$PostSubmitMessageTitle,

[Parameter()]
[System.String]
$PreSubmitMessage,

[Parameter()]
[System.Boolean]
$PreSubmitMessageEnabled,

[Parameter()]
[System.String]
$PreSubmitMessageTitle,

[Parameter()]
[System.String[]]
$ReportJunkAddresses = @(),

[Parameter()]
[System.Boolean]
$ReportJunkToCustomizedAddress,

[Parameter()]
[System.String[]]
$ReportNotJunkAddresses = @(),

[Parameter()]
[System.Boolean]
$ReportNotJunkToCustomizedAddress,

[Parameter()]
[System.String[]]
$ReportPhishAddresses = @(),

[Parameter()]
[System.Boolean]
$ReportPhishToCustomizedAddress,

[Parameter()]
[System.String[]]
$ThirdPartyReportAddresses = @(),

[Parameter()]
[System.Management.Automation.SwitchParameter]
$Confirm
)
}
function Set-ResourceConfig
{
[CmdletBinding()]
Expand Down

0 comments on commit b382d73

Please sign in to comment.