├── .devcontainer └── devcontainer.json ├── .flake8 ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── pypi-publish.yml │ └── unit-test.yml ├── .gitignore ├── .isort.cfg ├── .pre-commit-config.yaml ├── .pylintrc ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── codecov.yml ├── index.html ├── pages ├── assets │ ├── favicon.ico │ └── img │ │ ├── bg-masthead.jpg │ │ ├── bg-showcase-1.jpg │ │ ├── bg-showcase-2.jpg │ │ └── bg-showcase-3.png ├── css │ └── styles.css └── js │ └── scripts.js ├── pyproject.toml ├── setup.cfg ├── src ├── IntuneCD │ ├── __init__.py │ ├── __main__.py │ ├── backup │ │ ├── Entra │ │ │ ├── Applications.py │ │ │ ├── AuthenticationFlows.py │ │ │ ├── AuthenticationMethods.py │ │ │ ├── AuthorizationPolicy.py │ │ │ ├── B2B.py │ │ │ ├── DeviceRegistration.py │ │ │ ├── Domains.py │ │ │ ├── ExternalIdentities.py │ │ │ ├── GroupSettings.py │ │ │ ├── RoamingSettings.py │ │ │ ├── SSPR.py │ │ │ ├── SecurityDefaults.py │ │ │ └── __init__.py │ │ ├── Intune │ │ │ ├── APNs.py │ │ │ ├── Activationlock.py │ │ │ ├── AppConfiguration.py │ │ │ ├── AppProtection.py │ │ │ ├── AppleEnrollmentProfiles.py │ │ │ ├── Applications.py │ │ │ ├── AutopilotDevices.py │ │ │ ├── Compliance.py │ │ │ ├── CompliancePartner.py │ │ │ ├── ComplianceScripts.py │ │ │ ├── ConditionalAccess.py │ │ │ ├── CustomAttributes.py │ │ │ ├── DeviceCategories.py │ │ │ ├── DeviceCompliance.py │ │ │ ├── DeviceConfigurations.py │ │ │ ├── DeviceManagementSettings.py │ │ │ ├── EnrollmentConfigurations.py │ │ │ ├── EnrollmentStatusPage.py │ │ │ ├── Filters.py │ │ │ ├── GroupPolicyConfigurations.py │ │ │ ├── ManagedGooglePlay.py │ │ │ ├── ManagementIntents.py │ │ │ ├── ManagementPartner.py │ │ │ ├── NotificationTemplates.py │ │ │ ├── PowershellScripts.py │ │ │ ├── ProactiveRemediation.py │ │ │ ├── RemoteAssistancePartner.py │ │ │ ├── ReusableSettings.py │ │ │ ├── Roles.py │ │ │ ├── ScopeTags.py │ │ │ ├── SettingsCatalog.py │ │ │ ├── ShellScripts.py │ │ │ ├── VolumePurchaseProgram.py │ │ │ ├── WindowsDriverUpdates.py │ │ │ ├── WindowsEnrollmentProfile.py │ │ │ ├── WindowsFeatureUpdates.py │ │ │ ├── WindowsQualityUpdates.py │ │ │ └── __init__.py │ │ └── __init__.py │ ├── backup_entra.py │ ├── backup_intune.py │ ├── decorators.py │ ├── document_entra.py │ ├── document_intune.py │ ├── intunecdlib │ │ ├── BaseBackupModule.py │ │ ├── BaseGraphModule.py │ │ ├── BaseUpdateModule.py │ │ ├── IntuneCDBase.py │ │ ├── __init__.py │ │ ├── archive.py │ │ ├── assignment_report.py │ │ ├── documentation_functions.py │ │ ├── get_accesstoken.py │ │ ├── get_authparams.py │ │ ├── process_audit_data.py │ │ └── process_scope_tags.py │ ├── run_backup.py │ ├── run_documentation.py │ ├── run_update.py │ ├── update │ │ ├── Entra │ │ │ ├── AuthenticationFlows.py │ │ │ ├── AuthenticationMethodsConfigurations.py │ │ │ ├── AuthenticationMethodsPolicy.py │ │ │ ├── AuthorizationPolicy.py │ │ │ ├── B2B.py │ │ │ ├── DeviceRegistration.py │ │ │ ├── Domains.py │ │ │ ├── ExternalIdentitiesPolicy.py │ │ │ ├── GroupSettings.py │ │ │ ├── RoamingSettings.py │ │ │ ├── SSPR.py │ │ │ ├── SecurityDefaults.py │ │ │ └── __init__.py │ │ ├── Intune │ │ │ ├── AppConfiguration.py │ │ │ ├── AppProtection.py │ │ │ ├── AppleEnrollmentProfile.py │ │ │ ├── Compliance.py │ │ │ ├── ComplianceScripts.py │ │ │ ├── ConditionalAccess.py │ │ │ ├── CustomAttributes.py │ │ │ ├── DeviceCategories.py │ │ │ ├── DeviceCompliance.py │ │ │ ├── DeviceConfigurations.py │ │ │ ├── DeviceManagementSettings.py │ │ │ ├── EnrollmentConfigurations.py │ │ │ ├── EnrollmentStatusPage.py │ │ │ ├── Filters.py │ │ │ ├── GroupPolicyConfigurations.py │ │ │ ├── ManagementIntents.py │ │ │ ├── NotificationTemplate.py │ │ │ ├── PowerShellScripts.py │ │ │ ├── ProactiveRemediation.py │ │ │ ├── ReusableSettings.py │ │ │ ├── Roles.py │ │ │ ├── ScopeTags.py │ │ │ ├── SettingsCatalog.py │ │ │ ├── ShellScripts.py │ │ │ ├── WindowsDriverUpdates.py │ │ │ ├── WindowsEnrollmentProfile.py │ │ │ ├── WindowsFeatureUpdates.py │ │ │ ├── WindowsQualityUpdates.py │ │ │ └── __init__.py │ │ └── __init__.py │ ├── update_entra.py │ └── update_intune.py └── __init__.py ├── templates ├── _test_backup_template.py ├── backup_template.py └── update_template.py ├── test-requirements.txt └── tests ├── Backup ├── Entra │ └── __init__.py ├── Intune │ ├── __init__.py │ ├── test_APNs.py │ ├── test_ActivationLock.py │ ├── test_AppConfiguration.py │ ├── test_AppProtection.py │ ├── test_AppleEnrollmentProfiles.py │ ├── test_Applications.py │ ├── test_AutopilotDevices.py │ ├── test_Compliance.py │ ├── test_CompliancePartner.py │ ├── test_ComplianceScripts.py │ ├── test_ConditionalAccess.py │ ├── test_CustomAttributes.py │ ├── test_DeviceCategories.py │ ├── test_DeviceConfigurations.py │ ├── test_DeviceManagementSettings.py │ ├── test_EnrollmentConfigurations.py │ ├── test_EnrollmentStatusPage.py │ ├── test_Filters.py │ ├── test_GroupPolicyConfigurations.py │ ├── test_ManagedGooglePlay.py │ ├── test_ManagementPartner.py │ ├── test_NotificationTemplate.py │ ├── test_PowershellScripts.py │ ├── test_ProactiveRemediation.py │ ├── test_RemoteAssistancePartner.py │ ├── test_ReusableSettings.py │ ├── test_Roles.py │ ├── test_ScopeTags.py │ ├── test_SettingsCatalog.py │ ├── test_ShellScripts.py │ ├── test_VolumePurchaseProgram.py │ ├── test_WindowsDriverUpdates.py │ ├── test_WindowsEnrollmentProfile.py │ ├── test_WindowsFeatureUpdates.py │ └── test_WindowsQualityUpdates.py └── __init__.py ├── Update ├── Intune │ └── __init__.py └── __init__.py ├── __init__.py ├── test_archive.py ├── test_documentation_functions.py └── test_get_authparams.py /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: https://www.buymeacoffee.com/almenscorner 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/pypi-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/.github/workflows/pypi-publish.yml -------------------------------------------------------------------------------- /.github/workflows/unit-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/.github/workflows/unit-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/.gitignore -------------------------------------------------------------------------------- /.isort.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/.isort.cfg -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/.pylintrc -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/README.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/codecov.yml -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/index.html -------------------------------------------------------------------------------- /pages/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/pages/assets/favicon.ico -------------------------------------------------------------------------------- /pages/assets/img/bg-masthead.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/pages/assets/img/bg-masthead.jpg -------------------------------------------------------------------------------- /pages/assets/img/bg-showcase-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/pages/assets/img/bg-showcase-1.jpg -------------------------------------------------------------------------------- /pages/assets/img/bg-showcase-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/pages/assets/img/bg-showcase-2.jpg -------------------------------------------------------------------------------- /pages/assets/img/bg-showcase-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/pages/assets/img/bg-showcase-3.png -------------------------------------------------------------------------------- /pages/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/pages/css/styles.css -------------------------------------------------------------------------------- /pages/js/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/pages/js/scripts.js -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/setup.cfg -------------------------------------------------------------------------------- /src/IntuneCD/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/IntuneCD/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/__main__.py -------------------------------------------------------------------------------- /src/IntuneCD/backup/Entra/Applications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/backup/Entra/Applications.py -------------------------------------------------------------------------------- /src/IntuneCD/backup/Entra/AuthenticationFlows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/backup/Entra/AuthenticationFlows.py -------------------------------------------------------------------------------- /src/IntuneCD/backup/Entra/AuthenticationMethods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/backup/Entra/AuthenticationMethods.py -------------------------------------------------------------------------------- /src/IntuneCD/backup/Entra/AuthorizationPolicy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/backup/Entra/AuthorizationPolicy.py -------------------------------------------------------------------------------- /src/IntuneCD/backup/Entra/B2B.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/backup/Entra/B2B.py -------------------------------------------------------------------------------- /src/IntuneCD/backup/Entra/DeviceRegistration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/backup/Entra/DeviceRegistration.py -------------------------------------------------------------------------------- /src/IntuneCD/backup/Entra/Domains.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/backup/Entra/Domains.py -------------------------------------------------------------------------------- /src/IntuneCD/backup/Entra/ExternalIdentities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/backup/Entra/ExternalIdentities.py -------------------------------------------------------------------------------- /src/IntuneCD/backup/Entra/GroupSettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/backup/Entra/GroupSettings.py -------------------------------------------------------------------------------- /src/IntuneCD/backup/Entra/RoamingSettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/backup/Entra/RoamingSettings.py -------------------------------------------------------------------------------- /src/IntuneCD/backup/Entra/SSPR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/backup/Entra/SSPR.py -------------------------------------------------------------------------------- /src/IntuneCD/backup/Entra/SecurityDefaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/backup/Entra/SecurityDefaults.py -------------------------------------------------------------------------------- /src/IntuneCD/backup/Entra/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/IntuneCD/backup/Intune/APNs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/backup/Intune/APNs.py -------------------------------------------------------------------------------- /src/IntuneCD/backup/Intune/Activationlock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/backup/Intune/Activationlock.py -------------------------------------------------------------------------------- /src/IntuneCD/backup/Intune/AppConfiguration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/backup/Intune/AppConfiguration.py -------------------------------------------------------------------------------- /src/IntuneCD/backup/Intune/AppProtection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/backup/Intune/AppProtection.py -------------------------------------------------------------------------------- /src/IntuneCD/backup/Intune/AppleEnrollmentProfiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/backup/Intune/AppleEnrollmentProfiles.py -------------------------------------------------------------------------------- /src/IntuneCD/backup/Intune/Applications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/backup/Intune/Applications.py -------------------------------------------------------------------------------- /src/IntuneCD/backup/Intune/AutopilotDevices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/backup/Intune/AutopilotDevices.py -------------------------------------------------------------------------------- /src/IntuneCD/backup/Intune/Compliance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/backup/Intune/Compliance.py -------------------------------------------------------------------------------- /src/IntuneCD/backup/Intune/CompliancePartner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/backup/Intune/CompliancePartner.py -------------------------------------------------------------------------------- /src/IntuneCD/backup/Intune/ComplianceScripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/backup/Intune/ComplianceScripts.py -------------------------------------------------------------------------------- /src/IntuneCD/backup/Intune/ConditionalAccess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/backup/Intune/ConditionalAccess.py -------------------------------------------------------------------------------- /src/IntuneCD/backup/Intune/CustomAttributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/backup/Intune/CustomAttributes.py -------------------------------------------------------------------------------- /src/IntuneCD/backup/Intune/DeviceCategories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/backup/Intune/DeviceCategories.py -------------------------------------------------------------------------------- /src/IntuneCD/backup/Intune/DeviceCompliance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/backup/Intune/DeviceCompliance.py -------------------------------------------------------------------------------- /src/IntuneCD/backup/Intune/DeviceConfigurations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/backup/Intune/DeviceConfigurations.py -------------------------------------------------------------------------------- /src/IntuneCD/backup/Intune/DeviceManagementSettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/backup/Intune/DeviceManagementSettings.py -------------------------------------------------------------------------------- /src/IntuneCD/backup/Intune/EnrollmentConfigurations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/backup/Intune/EnrollmentConfigurations.py -------------------------------------------------------------------------------- /src/IntuneCD/backup/Intune/EnrollmentStatusPage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/backup/Intune/EnrollmentStatusPage.py -------------------------------------------------------------------------------- /src/IntuneCD/backup/Intune/Filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/backup/Intune/Filters.py -------------------------------------------------------------------------------- /src/IntuneCD/backup/Intune/GroupPolicyConfigurations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/backup/Intune/GroupPolicyConfigurations.py -------------------------------------------------------------------------------- /src/IntuneCD/backup/Intune/ManagedGooglePlay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/backup/Intune/ManagedGooglePlay.py -------------------------------------------------------------------------------- /src/IntuneCD/backup/Intune/ManagementIntents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/backup/Intune/ManagementIntents.py -------------------------------------------------------------------------------- /src/IntuneCD/backup/Intune/ManagementPartner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/backup/Intune/ManagementPartner.py -------------------------------------------------------------------------------- /src/IntuneCD/backup/Intune/NotificationTemplates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/backup/Intune/NotificationTemplates.py -------------------------------------------------------------------------------- /src/IntuneCD/backup/Intune/PowershellScripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/backup/Intune/PowershellScripts.py -------------------------------------------------------------------------------- /src/IntuneCD/backup/Intune/ProactiveRemediation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/backup/Intune/ProactiveRemediation.py -------------------------------------------------------------------------------- /src/IntuneCD/backup/Intune/RemoteAssistancePartner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/backup/Intune/RemoteAssistancePartner.py -------------------------------------------------------------------------------- /src/IntuneCD/backup/Intune/ReusableSettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/backup/Intune/ReusableSettings.py -------------------------------------------------------------------------------- /src/IntuneCD/backup/Intune/Roles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/backup/Intune/Roles.py -------------------------------------------------------------------------------- /src/IntuneCD/backup/Intune/ScopeTags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/backup/Intune/ScopeTags.py -------------------------------------------------------------------------------- /src/IntuneCD/backup/Intune/SettingsCatalog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/backup/Intune/SettingsCatalog.py -------------------------------------------------------------------------------- /src/IntuneCD/backup/Intune/ShellScripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/backup/Intune/ShellScripts.py -------------------------------------------------------------------------------- /src/IntuneCD/backup/Intune/VolumePurchaseProgram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/backup/Intune/VolumePurchaseProgram.py -------------------------------------------------------------------------------- /src/IntuneCD/backup/Intune/WindowsDriverUpdates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/backup/Intune/WindowsDriverUpdates.py -------------------------------------------------------------------------------- /src/IntuneCD/backup/Intune/WindowsEnrollmentProfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/backup/Intune/WindowsEnrollmentProfile.py -------------------------------------------------------------------------------- /src/IntuneCD/backup/Intune/WindowsFeatureUpdates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/backup/Intune/WindowsFeatureUpdates.py -------------------------------------------------------------------------------- /src/IntuneCD/backup/Intune/WindowsQualityUpdates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/backup/Intune/WindowsQualityUpdates.py -------------------------------------------------------------------------------- /src/IntuneCD/backup/Intune/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/IntuneCD/backup/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/IntuneCD/backup_entra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/backup_entra.py -------------------------------------------------------------------------------- /src/IntuneCD/backup_intune.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/backup_intune.py -------------------------------------------------------------------------------- /src/IntuneCD/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/decorators.py -------------------------------------------------------------------------------- /src/IntuneCD/document_entra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/document_entra.py -------------------------------------------------------------------------------- /src/IntuneCD/document_intune.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/document_intune.py -------------------------------------------------------------------------------- /src/IntuneCD/intunecdlib/BaseBackupModule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/intunecdlib/BaseBackupModule.py -------------------------------------------------------------------------------- /src/IntuneCD/intunecdlib/BaseGraphModule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/intunecdlib/BaseGraphModule.py -------------------------------------------------------------------------------- /src/IntuneCD/intunecdlib/BaseUpdateModule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/intunecdlib/BaseUpdateModule.py -------------------------------------------------------------------------------- /src/IntuneCD/intunecdlib/IntuneCDBase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/intunecdlib/IntuneCDBase.py -------------------------------------------------------------------------------- /src/IntuneCD/intunecdlib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/IntuneCD/intunecdlib/archive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/intunecdlib/archive.py -------------------------------------------------------------------------------- /src/IntuneCD/intunecdlib/assignment_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/intunecdlib/assignment_report.py -------------------------------------------------------------------------------- /src/IntuneCD/intunecdlib/documentation_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/intunecdlib/documentation_functions.py -------------------------------------------------------------------------------- /src/IntuneCD/intunecdlib/get_accesstoken.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/intunecdlib/get_accesstoken.py -------------------------------------------------------------------------------- /src/IntuneCD/intunecdlib/get_authparams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/intunecdlib/get_authparams.py -------------------------------------------------------------------------------- /src/IntuneCD/intunecdlib/process_audit_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/intunecdlib/process_audit_data.py -------------------------------------------------------------------------------- /src/IntuneCD/intunecdlib/process_scope_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/intunecdlib/process_scope_tags.py -------------------------------------------------------------------------------- /src/IntuneCD/run_backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/run_backup.py -------------------------------------------------------------------------------- /src/IntuneCD/run_documentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/run_documentation.py -------------------------------------------------------------------------------- /src/IntuneCD/run_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/run_update.py -------------------------------------------------------------------------------- /src/IntuneCD/update/Entra/AuthenticationFlows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/update/Entra/AuthenticationFlows.py -------------------------------------------------------------------------------- /src/IntuneCD/update/Entra/AuthenticationMethodsConfigurations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/update/Entra/AuthenticationMethodsConfigurations.py -------------------------------------------------------------------------------- /src/IntuneCD/update/Entra/AuthenticationMethodsPolicy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/update/Entra/AuthenticationMethodsPolicy.py -------------------------------------------------------------------------------- /src/IntuneCD/update/Entra/AuthorizationPolicy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/update/Entra/AuthorizationPolicy.py -------------------------------------------------------------------------------- /src/IntuneCD/update/Entra/B2B.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/update/Entra/B2B.py -------------------------------------------------------------------------------- /src/IntuneCD/update/Entra/DeviceRegistration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/update/Entra/DeviceRegistration.py -------------------------------------------------------------------------------- /src/IntuneCD/update/Entra/Domains.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/update/Entra/Domains.py -------------------------------------------------------------------------------- /src/IntuneCD/update/Entra/ExternalIdentitiesPolicy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/update/Entra/ExternalIdentitiesPolicy.py -------------------------------------------------------------------------------- /src/IntuneCD/update/Entra/GroupSettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/update/Entra/GroupSettings.py -------------------------------------------------------------------------------- /src/IntuneCD/update/Entra/RoamingSettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/update/Entra/RoamingSettings.py -------------------------------------------------------------------------------- /src/IntuneCD/update/Entra/SSPR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/update/Entra/SSPR.py -------------------------------------------------------------------------------- /src/IntuneCD/update/Entra/SecurityDefaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/update/Entra/SecurityDefaults.py -------------------------------------------------------------------------------- /src/IntuneCD/update/Entra/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/IntuneCD/update/Intune/AppConfiguration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/update/Intune/AppConfiguration.py -------------------------------------------------------------------------------- /src/IntuneCD/update/Intune/AppProtection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/update/Intune/AppProtection.py -------------------------------------------------------------------------------- /src/IntuneCD/update/Intune/AppleEnrollmentProfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/update/Intune/AppleEnrollmentProfile.py -------------------------------------------------------------------------------- /src/IntuneCD/update/Intune/Compliance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/update/Intune/Compliance.py -------------------------------------------------------------------------------- /src/IntuneCD/update/Intune/ComplianceScripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/update/Intune/ComplianceScripts.py -------------------------------------------------------------------------------- /src/IntuneCD/update/Intune/ConditionalAccess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/update/Intune/ConditionalAccess.py -------------------------------------------------------------------------------- /src/IntuneCD/update/Intune/CustomAttributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/update/Intune/CustomAttributes.py -------------------------------------------------------------------------------- /src/IntuneCD/update/Intune/DeviceCategories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/update/Intune/DeviceCategories.py -------------------------------------------------------------------------------- /src/IntuneCD/update/Intune/DeviceCompliance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/update/Intune/DeviceCompliance.py -------------------------------------------------------------------------------- /src/IntuneCD/update/Intune/DeviceConfigurations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/update/Intune/DeviceConfigurations.py -------------------------------------------------------------------------------- /src/IntuneCD/update/Intune/DeviceManagementSettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/update/Intune/DeviceManagementSettings.py -------------------------------------------------------------------------------- /src/IntuneCD/update/Intune/EnrollmentConfigurations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/update/Intune/EnrollmentConfigurations.py -------------------------------------------------------------------------------- /src/IntuneCD/update/Intune/EnrollmentStatusPage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/update/Intune/EnrollmentStatusPage.py -------------------------------------------------------------------------------- /src/IntuneCD/update/Intune/Filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/update/Intune/Filters.py -------------------------------------------------------------------------------- /src/IntuneCD/update/Intune/GroupPolicyConfigurations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/update/Intune/GroupPolicyConfigurations.py -------------------------------------------------------------------------------- /src/IntuneCD/update/Intune/ManagementIntents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/update/Intune/ManagementIntents.py -------------------------------------------------------------------------------- /src/IntuneCD/update/Intune/NotificationTemplate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/update/Intune/NotificationTemplate.py -------------------------------------------------------------------------------- /src/IntuneCD/update/Intune/PowerShellScripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/update/Intune/PowerShellScripts.py -------------------------------------------------------------------------------- /src/IntuneCD/update/Intune/ProactiveRemediation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/update/Intune/ProactiveRemediation.py -------------------------------------------------------------------------------- /src/IntuneCD/update/Intune/ReusableSettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/update/Intune/ReusableSettings.py -------------------------------------------------------------------------------- /src/IntuneCD/update/Intune/Roles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/update/Intune/Roles.py -------------------------------------------------------------------------------- /src/IntuneCD/update/Intune/ScopeTags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/update/Intune/ScopeTags.py -------------------------------------------------------------------------------- /src/IntuneCD/update/Intune/SettingsCatalog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/update/Intune/SettingsCatalog.py -------------------------------------------------------------------------------- /src/IntuneCD/update/Intune/ShellScripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/update/Intune/ShellScripts.py -------------------------------------------------------------------------------- /src/IntuneCD/update/Intune/WindowsDriverUpdates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/update/Intune/WindowsDriverUpdates.py -------------------------------------------------------------------------------- /src/IntuneCD/update/Intune/WindowsEnrollmentProfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/update/Intune/WindowsEnrollmentProfile.py -------------------------------------------------------------------------------- /src/IntuneCD/update/Intune/WindowsFeatureUpdates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/update/Intune/WindowsFeatureUpdates.py -------------------------------------------------------------------------------- /src/IntuneCD/update/Intune/WindowsQualityUpdates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/update/Intune/WindowsQualityUpdates.py -------------------------------------------------------------------------------- /src/IntuneCD/update/Intune/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/IntuneCD/update/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/IntuneCD/update_entra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/update_entra.py -------------------------------------------------------------------------------- /src/IntuneCD/update_intune.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/src/IntuneCD/update_intune.py -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/_test_backup_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/templates/_test_backup_template.py -------------------------------------------------------------------------------- /templates/backup_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/templates/backup_template.py -------------------------------------------------------------------------------- /templates/update_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/templates/update_template.py -------------------------------------------------------------------------------- /test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/test-requirements.txt -------------------------------------------------------------------------------- /tests/Backup/Entra/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/Backup/Intune/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/Backup/Intune/test_APNs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/tests/Backup/Intune/test_APNs.py -------------------------------------------------------------------------------- /tests/Backup/Intune/test_ActivationLock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/tests/Backup/Intune/test_ActivationLock.py -------------------------------------------------------------------------------- /tests/Backup/Intune/test_AppConfiguration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/tests/Backup/Intune/test_AppConfiguration.py -------------------------------------------------------------------------------- /tests/Backup/Intune/test_AppProtection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/tests/Backup/Intune/test_AppProtection.py -------------------------------------------------------------------------------- /tests/Backup/Intune/test_AppleEnrollmentProfiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/tests/Backup/Intune/test_AppleEnrollmentProfiles.py -------------------------------------------------------------------------------- /tests/Backup/Intune/test_Applications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/tests/Backup/Intune/test_Applications.py -------------------------------------------------------------------------------- /tests/Backup/Intune/test_AutopilotDevices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/tests/Backup/Intune/test_AutopilotDevices.py -------------------------------------------------------------------------------- /tests/Backup/Intune/test_Compliance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/tests/Backup/Intune/test_Compliance.py -------------------------------------------------------------------------------- /tests/Backup/Intune/test_CompliancePartner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/tests/Backup/Intune/test_CompliancePartner.py -------------------------------------------------------------------------------- /tests/Backup/Intune/test_ComplianceScripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/tests/Backup/Intune/test_ComplianceScripts.py -------------------------------------------------------------------------------- /tests/Backup/Intune/test_ConditionalAccess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/tests/Backup/Intune/test_ConditionalAccess.py -------------------------------------------------------------------------------- /tests/Backup/Intune/test_CustomAttributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/tests/Backup/Intune/test_CustomAttributes.py -------------------------------------------------------------------------------- /tests/Backup/Intune/test_DeviceCategories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/tests/Backup/Intune/test_DeviceCategories.py -------------------------------------------------------------------------------- /tests/Backup/Intune/test_DeviceConfigurations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/tests/Backup/Intune/test_DeviceConfigurations.py -------------------------------------------------------------------------------- /tests/Backup/Intune/test_DeviceManagementSettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/tests/Backup/Intune/test_DeviceManagementSettings.py -------------------------------------------------------------------------------- /tests/Backup/Intune/test_EnrollmentConfigurations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/tests/Backup/Intune/test_EnrollmentConfigurations.py -------------------------------------------------------------------------------- /tests/Backup/Intune/test_EnrollmentStatusPage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/tests/Backup/Intune/test_EnrollmentStatusPage.py -------------------------------------------------------------------------------- /tests/Backup/Intune/test_Filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/tests/Backup/Intune/test_Filters.py -------------------------------------------------------------------------------- /tests/Backup/Intune/test_GroupPolicyConfigurations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/tests/Backup/Intune/test_GroupPolicyConfigurations.py -------------------------------------------------------------------------------- /tests/Backup/Intune/test_ManagedGooglePlay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/tests/Backup/Intune/test_ManagedGooglePlay.py -------------------------------------------------------------------------------- /tests/Backup/Intune/test_ManagementPartner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/tests/Backup/Intune/test_ManagementPartner.py -------------------------------------------------------------------------------- /tests/Backup/Intune/test_NotificationTemplate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/tests/Backup/Intune/test_NotificationTemplate.py -------------------------------------------------------------------------------- /tests/Backup/Intune/test_PowershellScripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/tests/Backup/Intune/test_PowershellScripts.py -------------------------------------------------------------------------------- /tests/Backup/Intune/test_ProactiveRemediation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/tests/Backup/Intune/test_ProactiveRemediation.py -------------------------------------------------------------------------------- /tests/Backup/Intune/test_RemoteAssistancePartner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/tests/Backup/Intune/test_RemoteAssistancePartner.py -------------------------------------------------------------------------------- /tests/Backup/Intune/test_ReusableSettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/tests/Backup/Intune/test_ReusableSettings.py -------------------------------------------------------------------------------- /tests/Backup/Intune/test_Roles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/tests/Backup/Intune/test_Roles.py -------------------------------------------------------------------------------- /tests/Backup/Intune/test_ScopeTags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/tests/Backup/Intune/test_ScopeTags.py -------------------------------------------------------------------------------- /tests/Backup/Intune/test_SettingsCatalog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/tests/Backup/Intune/test_SettingsCatalog.py -------------------------------------------------------------------------------- /tests/Backup/Intune/test_ShellScripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/tests/Backup/Intune/test_ShellScripts.py -------------------------------------------------------------------------------- /tests/Backup/Intune/test_VolumePurchaseProgram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/tests/Backup/Intune/test_VolumePurchaseProgram.py -------------------------------------------------------------------------------- /tests/Backup/Intune/test_WindowsDriverUpdates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/tests/Backup/Intune/test_WindowsDriverUpdates.py -------------------------------------------------------------------------------- /tests/Backup/Intune/test_WindowsEnrollmentProfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/tests/Backup/Intune/test_WindowsEnrollmentProfile.py -------------------------------------------------------------------------------- /tests/Backup/Intune/test_WindowsFeatureUpdates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/tests/Backup/Intune/test_WindowsFeatureUpdates.py -------------------------------------------------------------------------------- /tests/Backup/Intune/test_WindowsQualityUpdates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/tests/Backup/Intune/test_WindowsQualityUpdates.py -------------------------------------------------------------------------------- /tests/Backup/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/Update/Intune/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/Update/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/test_archive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/tests/test_archive.py -------------------------------------------------------------------------------- /tests/test_documentation_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/tests/test_documentation_functions.py -------------------------------------------------------------------------------- /tests/test_get_authparams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almenscorner/IntuneCD/HEAD/tests/test_get_authparams.py --------------------------------------------------------------------------------