Skip to content

Commit

Permalink
Merge pull request #5020 from microsoft/Dev
Browse files Browse the repository at this point in the history
Release 1.24.904.1
  • Loading branch information
NikCharlebois committed Sep 5, 2024
2 parents 567d4c8 + 92f5232 commit 9ca1123
Show file tree
Hide file tree
Showing 51 changed files with 8,608 additions and 104 deletions.
21 changes: 19 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# Change log for Microsoft365DSC

# 1.24.904.1

* EXOOwaMailboxPolicy
* Add support for AccountTransferEnabled parameter
* EXOSweepRule
* Initial Release.
* FabricAdminTenantSettings
* Initial Release.
* IntuneDeviceControlPolicyWindows10
* Initial Release
* M365DSCDRGUtil
* Fixes an issue where a Intune settings catalog DSC param was not handled
correctly when it was not specified.
FIXES [#5000](https://github.com/microsoft/Microsoft365DSC/issues/5000)
* Fixes an issue where the exported nested CIM instances had too many line breaks.
* Fixes an issue where Settings Catalog properties were not correctly handled.
* DEPENDENCIES
* Updated MSCloudLoginAssistant to version 1.1.20.

# 1.24.828.1

* AADAdministrativeUnit
Expand Down Expand Up @@ -58,8 +77,6 @@
* M365DSCUtil
* Fix `Compare-PSCustomObjectArrays` by allowing empty arrays as input
FIXES [#4952](https://github.com/microsoft/Microsoft365DSC/issues/4952)
* O365OrgSettings
* FIXES [#4741](https://github.com/microsoft/Microsoft365DSC/issues/4741)
* MISC
* Improve module updates and PowerShell Core support across the DSC
resources.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ function Get-TargetResource
[System.String]
$Name,

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

[Parameter()]
[ValidateSet('Allow', 'ForceSave', 'Block')]
[System.String]
Expand Down Expand Up @@ -434,6 +438,7 @@ function Get-TargetResource
{
$result = @{
Name = $OwaMailboxPolicy.Name
AccountTransferEnabled = $OwaMailboxPolicy.AccountTransferEnabled
ActionForUnknownFileAndMIMETypes = $OwaMailboxPolicy.ActionForUnknownFileAndMIMETypes
ActiveSyncIntegrationEnabled = $OwaMailboxPolicy.ActiveSyncIntegrationEnabled
AdditionalAccountsEnabled = $OwaMailboxPolicy.AdditionalAccountsEnabled
Expand Down Expand Up @@ -556,6 +561,10 @@ function Set-TargetResource
[System.String]
$Name,

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

[Parameter()]
[ValidateSet('Allow', 'ForceSave', 'Block')]
[System.String]
Expand Down Expand Up @@ -1015,6 +1024,10 @@ function Test-TargetResource
[System.String]
$Name,

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

[Parameter()]
[ValidateSet('Allow', 'ForceSave', 'Block')]
[System.String]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
class MSFT_EXOOwaMailboxPolicy : OMI_BaseResource
{
[Key, Description("The Name parameter specifies the unique name for the policy. The maximum length is 64 characters.")] String Name;
[Write, Description("The AccountTransferEnabled parameter specifies whether to enable or disable QR code sign-in. By default, QR code sign-in is enabled.")] Boolean AccountTransferEnabled;
[Write, Description("The ActionForUnknownFileAndMIMETypes parameter specifies how to handle file types that aren't specified in the Allow, Block, and Force Save lists for file types and MIME types"), ValueMap{"Allow","ForceSave","Block"}, Values{"Allow","ForceSave","Block"}] String ActionForUnknownFileAndMIMETypes;
[Write, Description("The ActiveSyncIntegrationEnabled parameter specifies whether to enable or disable Exchange ActiveSync settings in Outlook on the web. ")] Boolean ActiveSyncIntegrationEnabled;
[Write, Description("No description available.")] Boolean AdditionalAccountsEnabled;
Expand Down
Loading

0 comments on commit 9ca1123

Please sign in to comment.