DSCResources/cIntuneDeviceCompliancePolicyMacOS/cIntuneDeviceCompliancePolicyMacOS.schema.psm1
configuration cIntuneDeviceCompliancePolicyMacOS { param ( [Parameter()] [hashtable[]] $Items ) <# IntuneDeviceCompliancePolicyMacOS [String] #ResourceName { DisplayName = [string] [AccessTokens = [string[]]] [AdvancedThreatProtectionRequiredSecurityLevel = [string]{ High | Low | Medium | NotSet | Secured | Unavailable }] [ApplicationId = [string]] [ApplicationSecret = [PSCredential]] [Assignments = [MSFT_DeviceManagementConfigurationPolicyAssignments[]]] [CertificateThumbprint = [string]] [Credential = [PSCredential]] [DependsOn = [string[]]] [Description = [string]] [DeviceThreatProtectionEnabled = [bool]] [DeviceThreatProtectionRequiredSecurityLevel = [string]{ High | Low | Medium | NotSet | Secured | Unavailable }] [Ensure = [string]{ Absent | Present }] [FirewallBlockAllIncoming = [bool]] [FirewallEnabled = [bool]] [FirewallEnableStealthMode = [bool]] [GatekeeperAllowedAppSource = [string]{ anywhere | macAppStore | macAppStoreAndIdentifiedDevelopers | notConfigured }] [ManagedIdentity = [bool]] [OsMaximumBuildVersion = [string]] [OsMaximumVersion = [string]] [OsMinimumBuildVersion = [string]] [OsMinimumVersion = [string]] [PasswordBlockSimple = [bool]] [PasswordExpirationDays = [UInt32]] [PasswordMinimumCharacterSetCount = [UInt32]] [PasswordMinimumLength = [UInt32]] [PasswordMinutesOfInactivityBeforeLock = [UInt32]] [PasswordPreviousPasswordBlockCount = [UInt32]] [PasswordRequired = [bool]] [PasswordRequiredType = [string]{ Alphanumeric | DeviceDefault | Numeric }] [PsDscRunAsCredential = [PSCredential]] [StorageRequireEncryption = [bool]] [SystemIntegrityProtectionEnabled = [bool]] [TenantId = [string]] } #> Import-DscResource -ModuleName PSDesiredStateConfiguration Import-DscResource -ModuleName Microsoft365DSC $dscResourceName = 'IntuneDeviceCompliancePolicyMacOS' $param = $PSBoundParameters $param.Remove("InstanceName") $dscParameterKeys = 'DisplayName' -split ', ' foreach ($item in $Items) { if (-not $item.ContainsKey('Ensure')) { $item.Ensure = 'Present' } $keyValues = foreach ($key in $dscParameterKeys) { $item.$key } $executionName = $keyValues -join '_' $executionName = $executionName -replace "[\s()\\:*-+/{}```"']", '_' (Get-DscSplattedResource -ResourceName $dscResourceName -ExecutionName $executionName -Properties $item -NoInvoke).Invoke($item) } } |