3.1 changes
This commit is contained in:
7
.gitignore
vendored
Normal file
7
.gitignore
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
.vs/
|
||||
.vscode/
|
||||
.git/
|
||||
/CloudAPIPowerShellManagement.Log
|
||||
/CloudAPIPowerShellManagement.Lo_
|
||||
/Documentation/Get-LanguageStrings.ps1
|
||||
|
||||
4471
CloudAPIPowerShellManagement-DESKTOP-UCPS639.log
Normal file
4471
CloudAPIPowerShellManagement-DESKTOP-UCPS639.log
Normal file
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@@ -8,6 +8,9 @@ public static extern IntPtr GetConsoleWindow();
|
||||
[DllImport("user32.dll")]
|
||||
public static extern bool ShowWindow(IntPtr hWnd, Int32 nCmdShow);
|
||||
|
||||
[DllImport("user32.dll")]
|
||||
public static extern bool SetForegroundWindow(IntPtr hWnd);
|
||||
|
||||
[DllImport("kernel32.dll", SetLastError = true)]
|
||||
public static extern bool SetConsoleIcon(IntPtr hIcon);
|
||||
|
||||
|
||||
25
Core.psm1
25
Core.psm1
@@ -6,7 +6,7 @@ Core UI and Settings fatures for the CloudAPIPowerShellManager solution
|
||||
This module handles the WPF UI
|
||||
|
||||
.NOTES
|
||||
Version: 3.0.0
|
||||
Version: 3.1.0
|
||||
Author: Mikael Karlsson
|
||||
#>
|
||||
|
||||
@@ -671,6 +671,27 @@ function Remove-Property
|
||||
}
|
||||
}
|
||||
|
||||
function Get-GridCheckboxColumn
|
||||
{
|
||||
param($bindingProperty = "IsSelected")
|
||||
|
||||
$binding = [System.Windows.Data.Binding]::new($bindingProperty)
|
||||
$binding.UpdateSourceTrigger = [System.Windows.Data.UpdateSourceTrigger]::PropertyChanged
|
||||
$column = [System.Windows.Controls.DataGridTemplateColumn]::new()
|
||||
$fef = [System.Windows.FrameworkElementFactory]::new([System.Windows.Controls.CheckBox])
|
||||
$binding.Mode = [System.Windows.Data.BindingMode]::TwoWay
|
||||
$fef.SetValue([System.Windows.Controls.CheckBox]::IsCheckedProperty,$binding)
|
||||
$dt = [System.Windows.DataTemplate]::new()
|
||||
$dt.VisualTree = $fef
|
||||
$column.CellTemplate = $dt
|
||||
$header = [System.Windows.Controls.CheckBox]::new()
|
||||
$header.Margin = [System.Windows.Thickness]::new(-4,0,0,0) # Align header checkbox with the row checkboxes
|
||||
$header.ToolTip = "Select/deselect all items"
|
||||
$column.Header = $header
|
||||
|
||||
$column
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region Reg functions
|
||||
@@ -1225,6 +1246,8 @@ function Show-View
|
||||
Write-Log "Activated View $($viewObject.ViewInfo.Title)"
|
||||
& $viewObject.ViewInfo.Activated
|
||||
}
|
||||
|
||||
Invoke-ModuleFunction "Invoke-ViewActivated"
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
148
Documentation.md
Normal file
148
Documentation.md
Normal file
@@ -0,0 +1,148 @@
|
||||
# Documentation
|
||||
|
||||
The script can document most of the profiles and policies in Intune. The output can either be CSV or Word. Documenting to Word can either be to an existing Word template or empty document. There are many options for the documentation e.g. Language, Header styles, Table styles, managing not configured items etc.
|
||||
|
||||
The idea behind the documentation method in the script is to output the information as close to the Endpoint Manager portal as possible. Some of the objects has a different property name or value in the Summary text vs Edit mode in the portal. The documentation will then use the Edit mode information when possible. Some policies and profiles might have a slightly different order that the portal.
|
||||
|
||||
The objects can be documented in three ways:
|
||||
|
||||
* One or more objects of a single object type
|
||||
|
||||
Document one or more objects by selecting them and click the Documentation button
|
||||
|
||||
* Selected objects of multiple object types
|
||||
|
||||
Add objects via the Documentation button, Add to list and then document all selected objects via the Bulk menu
|
||||
|
||||
* All objects
|
||||
|
||||
Document all supported objects. Initiated in the Bulk menu
|
||||
|
||||
Documentation is a very complex process. There are multiple types of objects, different languages, different types of properties etc. The best output is often based on a personal opinion. Some parts can be configured but not everything can be personalized. The output of most properties is simple, there is a name and a value. This is not the case for some properties e.g. a firewall rule. The firewall rule is itself a table with lots of possible values. The documentation will add the multi-property values with a property separator, comma is the default setting. There are also properties that contains multiple values. These will be added with an object separator, new line as default. The separators can be changed e.g. it might be better to use | as a object separator when documenting to a CSV.
|
||||
|
||||
**Note:** The word document might need some manual post updates. Tables are auto generated but they might have to be tweaked for personal preferences.
|
||||
|
||||
Please read the [Deep Dive](#deep-dive) section below for a detailed description of the documentation process.
|
||||
|
||||
**Language Support**
|
||||
|
||||
The script can document the objects in any language supported by Intune.
|
||||
|
||||
Note that some profiles and properties does not have language support. These will be documented in English.
|
||||
|
||||
**Known Issues**
|
||||
|
||||
This is the first version of the documentation support.
|
||||
|
||||
* There are over 100 different object types. Not all are supported and not all supported object types are tested and verified.
|
||||
|
||||
* Property based profiles might be missing some properties. Some properties in the translation files are generated at runtime. Support for these properties are added in the custom documentation provider
|
||||
|
||||
* Some complex type properties are not translated in this version e.g. the screen layout of apps on the iPhone.
|
||||
|
||||
* The script will generate warning that properties are missing. This could be caused by multiple reasons
|
||||
|
||||
* The property must be added to the custom documentation provider
|
||||
|
||||
Note that one missing property can cause other properties from not being documented.
|
||||
|
||||
* The property does not exist until it is configured e.g. privacy settings in the Win 10 Device Restrictions profile.
|
||||
|
||||
* Property based profiles uses generated translation and static language files. These files needs to be generated and uploaded when new functionality is released in Intune
|
||||
|
||||
* Some Endpoint Security polices are NOT deviceManagementIntent objects. They are actually Settings Catalog objects and they will be listed with the Settings Catalog items e.g. *Antivirus - Windows 10 and Windows Server (ConfigMgr)* policies
|
||||
|
||||
* Some Endpoint Security/Settings Catalog items is not translated based on Graph API in the portal e.g. *Antivirus - Windows 10 and Windows Server (ConfigMgr)* policies. These will be documented based on Graph API information which might be different compared to the portal
|
||||
|
||||
Please create an [Issue](https://github.com/Micke-K/IntuneManagement/issues) if properties are documented incorrectly or missing.
|
||||
|
||||
# Deep Dive
|
||||
|
||||
The documentation is based on a two step process
|
||||
|
||||
* Gather information about the object
|
||||
|
||||
This will collection all the information about the object and add it to a PowerShell object in the code
|
||||
|
||||
* Send the information to the selected output type
|
||||
|
||||
This will send all the information gathered about the object to the selected output provider
|
||||
|
||||
These steps are then repeated for each object that is being documented.
|
||||
|
||||
An output provider then has an initial (PreProcess) and finish (PostProcess) step e.g. the Word provider will create a word document in the initial task, document all properties and then update content tables, word properties and save the document in the finish task.
|
||||
|
||||
**Object Types**
|
||||
|
||||
Intune has multiple object types, over 100 different profile/policy types. These could be objects based on a static set of properties e.g. Configuration Profiles, Compliance Policies etc. or it could be settings based objects like Settings Catalog, Endpoint Security policies and Administrative Templates. The settings based policies only store information about the configured settings and not all settings available for the object.
|
||||
|
||||
**Settings Based Objects**
|
||||
|
||||
All the documentation for Settings objects is done via Microsoft Graph. The Graph APIs contains all the information about property types, enum and language strings etc.
|
||||
|
||||
Language strings for column headers and basic information are documented from the static language files
|
||||
|
||||
**Property Based Objects**
|
||||
|
||||
Property based objects are very complex to document. These objects can be documented in different ways;
|
||||
|
||||
* Generated json files
|
||||
* Manually created json files
|
||||
* PowerShell function
|
||||
* Or a combination of PowerShell and manually created json files
|
||||
|
||||
Json files for translating property objects to documentation is located in the Documentation\ObjectInfo folder. All files that start with a # is manually created. These can either be based on the object type (@OData.Type) or the Object Type Id (specified in the EndpointManager.psm1 file). Files that does not start with a # are automatically generated and the `ObjectCategories.json` file contains the mapping between the Intune object and associated json files. One object type can be associated with multiple files. Each file represents one category of the object.
|
||||
|
||||
The generated files sometimes requires additional manually created properties. These could be properties in the UI that has a Yes/No, Enabled/Not Configured etc. trigger associated with a specific value. These properties must be manually added to the object before the documentation. The `DocumentationCustom.psm1` file takes care of this. This file is also used for overriding the documentation of specific values and other custom required processing.
|
||||
|
||||
The json files contains a definition of each property to document. This includes information like type e.g. Boolean (Yes/No, Allow/Block, Enabled/Disabled etc.), Options, DataTable etc. The script will use these files to translate each property into PSCustomObject that is then used by the output provider. The functionality of these files has been extended to enhance the documentation options for the manually created files. Data types of 100 or above is custom functionality. All data types below 100 is based on the same functionality as in the Intune portal. The data type engine in the script is created based on best effort of the generated json files.
|
||||
|
||||
The `DocumentationCustom.psm1` file also takes care of custom documentation for some object types e.g. Conditional Access. App Configuration policies etc. These objects are documented via a PowerShell function in the script.
|
||||
|
||||
**Language Support**
|
||||
|
||||
The Settings based objects get their language strings from Graph APIs with a few exemptions.
|
||||
|
||||
The property based objects uses static language files. Each language file is generated based on multiple language files. Not all the language information is included in these files to reduce the output size. This could reduce the possibility to create custom documentation with multi language support.
|
||||
|
||||
These files will have to be re-generated when new functionality is released in Intune.
|
||||
|
||||
**Scripts for Generated Files**
|
||||
|
||||
The scripts that automatically generates language files, translation files, object info etc. are not included in the release. These scripts are currently not in a state that they can be released. The best would be if Microsoft released all the required information in Graph. A deep dive into graph suggests that it might be possible in the future since some information about the generated files are there but with some properties missing or missing. The information can't be accessed unless an API is called that gets the definition for all the profiles at the same time.
|
||||
|
||||
## Extending The Documentation
|
||||
|
||||
The documentation can be extended in multiple ways.
|
||||
|
||||
* Documentation Provider
|
||||
* Documentation Output Provider
|
||||
|
||||
The two methods can be used to customize the documentation in every possible way e.g. an Excel provider can easily be created to support excel as an output type, a PowerShell module can be created to translate any unsupported property.
|
||||
|
||||
The priority order for object documentation is:
|
||||
|
||||
* Script function in the documentation provider module
|
||||
* Json file based on OData.Type
|
||||
* Json file based on Object Type
|
||||
* Generated json files
|
||||
* Settings Objects
|
||||
|
||||
**Documentation Provider**
|
||||
|
||||
The documentation provider takes care of the collection information about the object. The `DocumentationCustom.psm1`file is an example of this. This file has examples of custom translation of properties for json files and examples of custom translation of objects via a PowerShell functions.
|
||||
|
||||
Documentation providers has a Priority property. This defines in what order the providers will be triggered. The provider with the lowest priority number will be executed first. The included custom documentation provider has a priority number of 1000. The information gathering of the provider can be overridden by creating a custom documentation provider with a lower priority number.
|
||||
|
||||
**Documentation Output Provider**
|
||||
|
||||
Once the script has finished gathering all the data of an object, it sends it to the Documentation Output provider. This will then document it to the specific output type of the provider. Word and CSV are included. There is also a "None" provider as included. This will only add the gathered information in the UI. This is used for quick information or when building the translation files. This is also used by the comparison functionality.
|
||||
|
||||
The`DocumentationWord.psm1` and `DocumentationWordOptions.xaml` files are example on how to create an output provider. The xaml file contains the configuration options in the UI. The psm1 file registers the provider and builds the Word document based on the gathered information.
|
||||
|
||||
**Translation Files**
|
||||
|
||||
Translation files can be created for objects that don't support documentation at the moment. Some of them would require a combination of a json file and adding additional properties via PowerShell. The files are read when the documentation is triggered so they can be updated and tested without restarting the script.
|
||||
|
||||
Do **NOT** update the generated files. These are automatically generated and will be reversed in every release.
|
||||
|
||||
BIN
Documentation/AppTypes.json
Normal file
BIN
Documentation/AppTypes.json
Normal file
Binary file not shown.
149
Documentation/Category-en.json
Normal file
149
Documentation/Category-en.json
Normal file
@@ -0,0 +1,149 @@
|
||||
{
|
||||
"airPlay": "AirPlay",
|
||||
"airPrint": "AirPrint",
|
||||
"androidDefenderAtp": "Microsoft Defender for Endpoint",
|
||||
"androidDeviceOwnerApplications": "Applications",
|
||||
"androidForWorkPassword": "Device password",
|
||||
"appManagement": "Allow or Block apps",
|
||||
"applicationGuard": "Microsoft Defender Application Guard",
|
||||
"applicationRestrictions": "Restricted Apps",
|
||||
"applicationVisibility": "Show or Hide Apps",
|
||||
"applications": "App Store",
|
||||
"applicationsAndGames": "App Store, Doc Viewing, Gaming",
|
||||
"applicationsAndGoogle": "Google Play Store",
|
||||
"appsAndExperience": "Apps and experience",
|
||||
"associatedDomains": "Associated domains",
|
||||
"autonomousSingleAppMode": "Autonomous Single App Mode",
|
||||
"azureOperationalInsights": "Azure operational insights",
|
||||
"bitLocker": "Windows Encryption",
|
||||
"browser": "Browser",
|
||||
"builtinApps": "Built-in Apps",
|
||||
"cellular": "Cellular",
|
||||
"cloudAndStorage": "Cloud and Storage",
|
||||
"cloudPrint": "Cloud Printer",
|
||||
"complianceEmailProfile": "Email",
|
||||
"connectedDevices": "Connected Devices",
|
||||
"connectivity": "Cellular and connectivity",
|
||||
"contentCaching": "Content caching",
|
||||
"controlPanelAndSettings": "Control Panel and Settings",
|
||||
"credentialGuard": "Microsoft Defender Credential Guard",
|
||||
"customCompliance": "Custom Compliance",
|
||||
"customConfiguration": "Custom Configuration Profile",
|
||||
"customOMASettings": "Custom OMA-URI Settings",
|
||||
"customPreferences": "Preference file",
|
||||
"defender": "Microsoft Defender Antivirus",
|
||||
"defenderAntivirus": "Microsoft Defender Antivirus",
|
||||
"defenderExploitGuard": "Microsoft Defender Exploit Guard",
|
||||
"defenderFirewall": "Microsoft Defender Firewall",
|
||||
"defenderLocalSecurityOptions": "Local device security options",
|
||||
"defenderSecurityCenter": "Microsoft Defender Security Center",
|
||||
"deliveryOptimization": "Delivery Optimization",
|
||||
"derivedCredentialAuthenticationConfiguration": "Derived credential",
|
||||
"deviceExperience": "Device experience",
|
||||
"deviceFirmwareConfigurationInterface": "Device Firmware Configuration Interface",
|
||||
"deviceGuard": "Microsoft Defender Application Control",
|
||||
"deviceHealth": "Device Health",
|
||||
"devicePassword": "Device password",
|
||||
"deviceProperties": "Device Properties",
|
||||
"deviceRestrictions": "General",
|
||||
"deviceSecurity": "System security",
|
||||
"display": "Display",
|
||||
"domainJoin": "Domain Join",
|
||||
"domains": "Domains",
|
||||
"edgeBrowser": "Microsoft Edge Legacy (Version 45 and earlier)",
|
||||
"edgeBrowserSmartScreen": "Microsoft Defender SmartScreen",
|
||||
"edgeKiosk": "Microsoft Edge kiosk mode",
|
||||
"editionUpgrade": "Edition Upgrade",
|
||||
"education": "Education",
|
||||
"educationDeviceCerts": "Device certificates",
|
||||
"educationStudentCerts": "Student certificates",
|
||||
"educationTakeATest": "Take a Test",
|
||||
"educationTeacherCerts": "Teacher certificates",
|
||||
"emailProfile": "Email",
|
||||
"enterpriseDataProtection": "Windows Information Protection",
|
||||
"expeditedCheckin": "Mobile device management configuration",
|
||||
"extensibleSingleSignOn": "Single sign-on app extension",
|
||||
"filevault": "FileVault",
|
||||
"firewall": "Firewall",
|
||||
"games": "Games",
|
||||
"gatekeeper": "Gatekeeper",
|
||||
"healthMonitoring": "Health monitoring",
|
||||
"homeScreenLayout": "Home Screen Layout",
|
||||
"iOSWallpaper": "Wallpaper",
|
||||
"importedPFX": "PKCS Imported Certificate",
|
||||
"iosDefenderAtp": "Microsoft Defender for Endpoint",
|
||||
"iosKiosk": "Kiosk",
|
||||
"kernelExtensions": "Kernel extensions",
|
||||
"keyboardAndDictionary": "Keyboard and Dictionary",
|
||||
"kiosk": "Kiosk",
|
||||
"kioskAndroidEnterprise": "Dedicated devices",
|
||||
"kioskConfiguration": "Kiosk",
|
||||
"kioskConfigurationV2": "Kiosk",
|
||||
"kioskWebBrowser": "Kiosk web browser",
|
||||
"lockScreenMessage": "Lock Screen Message",
|
||||
"lockedScreenExperience": "Locked Screen Experience",
|
||||
"logging": "Reporting and Telemetry",
|
||||
"loginItems": "Login items",
|
||||
"loginWindow": "Login window",
|
||||
"macDefenderAtp": "Microsoft Defender for Endpoint",
|
||||
"maintenance": "Maintenance",
|
||||
"malware": "Malware",
|
||||
"messaging": "Messaging",
|
||||
"networkBoundary": "Network boundary",
|
||||
"networkProxy": "Network proxy",
|
||||
"notifications": "App Notifications",
|
||||
"pKCS": "PKCS Certificate",
|
||||
"password": "Password",
|
||||
"personalProfile": "Personal profile",
|
||||
"personalization": "Personalization",
|
||||
"policyOverride": "Override Group Policy",
|
||||
"powerSettings": "Power Settings",
|
||||
"printer": "Printer",
|
||||
"privacy": "Privacy",
|
||||
"privacyPerApp": "Per-app privacy exceptions",
|
||||
"privacyPreferences": "Privacy preferences",
|
||||
"projection": "Projection",
|
||||
"sCCMCompliance": "Configuration Manager Compliance",
|
||||
"sCEP": "SCEP Certificate",
|
||||
"sCEPProperties": "SCEP Certificate",
|
||||
"sMode": "Mode switch (Windows Insider only)",
|
||||
"safari": "Safari",
|
||||
"search": "Search",
|
||||
"session": "Session",
|
||||
"sharedDevice": "Shared iPad",
|
||||
"sharedPCAccountManager": "Shared multi-user device",
|
||||
"singleSignOn": "Single Sign On",
|
||||
"smartScreen": "Microsoft Defender SmartScreen",
|
||||
"softwareUpdates": "Settings",
|
||||
"start": "Start",
|
||||
"systemExtensions": "System extensions",
|
||||
"systemSecurity": "System Security",
|
||||
"trustedCert": "Trusted Certificate",
|
||||
"updates": "Updates",
|
||||
"userRights": "User Rights",
|
||||
"usersAndAccounts": "Users and Accounts",
|
||||
"vPN": "Base VPN",
|
||||
"vPNApps": "Automatic VPN",
|
||||
"vPNAppsAndTrafficRules": "Apps and Traffic Rules",
|
||||
"vPNConditionalAccess": "Conditional Access",
|
||||
"vPNConnectivity": "Connectivity",
|
||||
"vPNDNSTriggers": "DNS Settings",
|
||||
"vPNIKEv2": "IKEv2 settings",
|
||||
"vPNProxy": "Proxy",
|
||||
"vPNSplitTunneling": "Split Tunneling",
|
||||
"vPNTrustedNetwork": "Trusted Network Detection",
|
||||
"webContentFilter": "Web Content Filter",
|
||||
"wiFi": "Wi-Fi",
|
||||
"win10Wifi": "Wi-Fi",
|
||||
"windowsAtp": "Microsoft Defender for Endpoint",
|
||||
"windowsDefenderATP": "Microsoft Defender for Endpoint",
|
||||
"windowsHelloForBusiness": "Windows Hello for Business",
|
||||
"windowsSpotlight": "Windows Spotlight",
|
||||
"wiredNetwork": "Wired network",
|
||||
"wireless": "Wireless",
|
||||
"wirelessProjection": "Wireless projection",
|
||||
"workProfile": "Work profile settings",
|
||||
"workProfilePassword": "Work profile password",
|
||||
"xboxServices": "Xbox services",
|
||||
"zebraMx": "MX profile (Zebra only)"
|
||||
}
|
||||
146
Documentation/CategoryId.json
Normal file
146
Documentation/CategoryId.json
Normal file
@@ -0,0 +1,146 @@
|
||||
{
|
||||
"0": "AirPlay",
|
||||
"1": "AirPrint",
|
||||
"2": "AndroidDeviceOwnerApplications",
|
||||
"3": "ApplicationGuard",
|
||||
"4": "ApplicationRestrictions",
|
||||
"5": "ApplicationVisibility",
|
||||
"6": "Applications",
|
||||
"7": "ApplicationsAndGames",
|
||||
"8": "ApplicationsAndGoogle",
|
||||
"9": "AppManagement",
|
||||
"10": "AppsAndExperience",
|
||||
"11": "AssociatedDomains",
|
||||
"12": "AutonomousSingleAppMode",
|
||||
"13": "AzureOperationalInsights",
|
||||
"14": "BitLocker",
|
||||
"15": "Browser",
|
||||
"16": "BuiltinApps",
|
||||
"17": "Cellular",
|
||||
"18": "CloudAndStorage",
|
||||
"19": "CloudPrint",
|
||||
"20": "ConnectedDevices",
|
||||
"21": "Connectivity",
|
||||
"22": "ContentCaching",
|
||||
"23": "ControlPanelAndSettings",
|
||||
"24": "CredentialGuard",
|
||||
"25": "CustomConfiguration",
|
||||
"26": "CustomOMASettings",
|
||||
"27": "CustomPreferences",
|
||||
"28": "Defender",
|
||||
"29": "DefenderExclusions",
|
||||
"30": "DefenderExploitGuard",
|
||||
"31": "DefenderSecurityCenter",
|
||||
"32": "DefenderLocalSecurityOptions",
|
||||
"33": "DefenderFirewall",
|
||||
"34": "DeliveryOptimization",
|
||||
"35": "DerivedCredentialAuthenticationConfiguration",
|
||||
"36": "DeviceHealth",
|
||||
"37": "DeviceAccount",
|
||||
"38": "DeviceGuard",
|
||||
"39": "DevicePassword",
|
||||
"40": "DeviceProperties",
|
||||
"41": "DeviceRestrictions",
|
||||
"42": "DeviceSecurity",
|
||||
"43": "DeviceExperience",
|
||||
"44": "Display",
|
||||
"45": "Domains",
|
||||
"46": "EditionUpgrade",
|
||||
"47": "SMode",
|
||||
"48": "EdgeBrowser",
|
||||
"49": "EdgeBrowserSmartScreen",
|
||||
"50": "EnterpriseDataProtection",
|
||||
"51": "EducationTeacherCerts",
|
||||
"52": "EducationStudentCerts",
|
||||
"53": "EducationTakeATest",
|
||||
"54": "EmailProfile",
|
||||
"55": "ExpeditedCheckin",
|
||||
"56": "ExtensibleSingleSignOn",
|
||||
"57": "FileVault",
|
||||
"58": "Firewall",
|
||||
"59": "Gatekeeper",
|
||||
"60": "HealthMonitoring",
|
||||
"61": "HomeScreenLayout",
|
||||
"62": "ComplianceEmailProfile",
|
||||
"63": "IosEducation",
|
||||
"64": "IOSWallpaper",
|
||||
"65": "ImportedPFX",
|
||||
"66": "KernelExtensions",
|
||||
"67": "KeyboardAndDictionary",
|
||||
"68": "Kiosk",
|
||||
"69": "KioskAndroidEnterprise",
|
||||
"70": "KioskConfiguration",
|
||||
"71": "KioskConfigurationV2",
|
||||
"72": "KioskWebBrowser",
|
||||
"73": "EdgeKiosk",
|
||||
"74": "LockedScreenExperience",
|
||||
"75": "LockScreenMessage",
|
||||
"76": "Logging",
|
||||
"77": "LoginItems",
|
||||
"78": "LoginWindow",
|
||||
"79": "Malware",
|
||||
"80": "Maintenance",
|
||||
"81": "Messaging",
|
||||
"82": "NetworkProxy",
|
||||
"83": "NetworkBoundary",
|
||||
"84": "Notifications",
|
||||
"85": "Password",
|
||||
"86": "Personalization",
|
||||
"87": "PersonalProfile",
|
||||
"88": "PKCS",
|
||||
"89": "PolicyOverride",
|
||||
"90": "PowerSettings",
|
||||
"91": "Printer",
|
||||
"92": "Privacy",
|
||||
"93": "PrivacyPerApp",
|
||||
"94": "PrivacyPreferences",
|
||||
"95": "Projection",
|
||||
"96": "SCEPProperties",
|
||||
"97": "SharedDevice",
|
||||
"98": "SharedPCAccountManager",
|
||||
"99": "SingleSignOn",
|
||||
"100": "Search",
|
||||
"101": "Session",
|
||||
"102": "SmartScreen",
|
||||
"103": "SoftwareUpdates",
|
||||
"104": "Start",
|
||||
"105": "SystemExtensions",
|
||||
"106": "SystemSecurity",
|
||||
"107": "SCCMCompliance",
|
||||
"108": "TrustedCert",
|
||||
"109": "Unsupported",
|
||||
"110": "Updates",
|
||||
"111": "UsersAndAccounts",
|
||||
"112": "WiFi",
|
||||
"113": "Win10Wifi",
|
||||
"114": "WindowsAtp",
|
||||
"115": "WindowsSpotlight",
|
||||
"116": "Wireless",
|
||||
"117": "WirelessProjection",
|
||||
"118": "WorkProfile",
|
||||
"119": "WorkProfilePassword",
|
||||
"120": "VPN",
|
||||
"121": "VPNApps",
|
||||
"122": "VPNConnectivity",
|
||||
"123": "VPNSplitTunneling",
|
||||
"124": "VPNAppsAndTrafficRules",
|
||||
"125": "VPNConditionalAccess",
|
||||
"126": "VPNDNSTriggers",
|
||||
"127": "VPNIKEv2",
|
||||
"128": "VPNProxy",
|
||||
"129": "VPNTrustedNetwork",
|
||||
"130": "WebContentFilter",
|
||||
"131": "XboxServices",
|
||||
"132": "DomainJoin",
|
||||
"133": "WindowsDefenderAtp",
|
||||
"134": "WindowsHelloForBusiness",
|
||||
"135": "DeviceFirmwareConfigurationInterface",
|
||||
"136": "ZebraMx",
|
||||
"137": "AndroidDefenderAtp",
|
||||
"138": "MacDefenderAtp",
|
||||
"139": "UserRights",
|
||||
"140": "WiredNetwork",
|
||||
"141": "DefenderAntivirus",
|
||||
"142": "CustomCompliance",
|
||||
"143": "IosDefenderAtp"
|
||||
}
|
||||
122
Documentation/Languages.json
Normal file
122
Documentation/Languages.json
Normal file
@@ -0,0 +1,122 @@
|
||||
[
|
||||
{
|
||||
"Name": "en",
|
||||
"EnglishName": "English",
|
||||
"NativeName": "English",
|
||||
"FullName": "en-us"
|
||||
},
|
||||
{
|
||||
"Name": "de",
|
||||
"EnglishName": "German",
|
||||
"NativeName": "Deutsch",
|
||||
"FullName": "de-de"
|
||||
},
|
||||
{
|
||||
"Name": "es",
|
||||
"EnglishName": "Spanish",
|
||||
"NativeName": "Español",
|
||||
"FullName": "es-es"
|
||||
},
|
||||
{
|
||||
"Name": "fr",
|
||||
"EnglishName": "French",
|
||||
"NativeName": "Français",
|
||||
"FullName": "fr-fr"
|
||||
},
|
||||
{
|
||||
"Name": "it",
|
||||
"EnglishName": "Italian",
|
||||
"NativeName": "Italiano",
|
||||
"FullName": "it-it"
|
||||
},
|
||||
{
|
||||
"Name": "hu",
|
||||
"EnglishName": "Hungarian",
|
||||
"NativeName": "Magyar",
|
||||
"FullName": "hu-hu"
|
||||
},
|
||||
{
|
||||
"Name": "nl",
|
||||
"EnglishName": "Dutch",
|
||||
"NativeName": "Nederlands",
|
||||
"FullName": "nl-nl"
|
||||
},
|
||||
{
|
||||
"Name": "pl",
|
||||
"EnglishName": "Polish",
|
||||
"NativeName": "Polski",
|
||||
"FullName": "pl-pl"
|
||||
},
|
||||
{
|
||||
"Name": "pt",
|
||||
"EnglishName": "Portuguese",
|
||||
"NativeName": "Português",
|
||||
"FullName": "pt-br"
|
||||
},
|
||||
{
|
||||
"Name": "sv",
|
||||
"EnglishName": "Swedish",
|
||||
"NativeName": "Svenska",
|
||||
"FullName": "sv-se"
|
||||
},
|
||||
{
|
||||
"Name": "tr",
|
||||
"EnglishName": "Turkish",
|
||||
"NativeName": "Türkçe",
|
||||
"FullName": "tr-tr"
|
||||
},
|
||||
{
|
||||
"Name": "cs",
|
||||
"EnglishName": "Czech",
|
||||
"NativeName": "Čeština",
|
||||
"FullName": "cs-cz"
|
||||
},
|
||||
{
|
||||
"Name": "ru",
|
||||
"EnglishName": "Russian",
|
||||
"NativeName": "Русский",
|
||||
"FullName": "ru-ru"
|
||||
},
|
||||
{
|
||||
"Name": "zh",
|
||||
"EnglishName": "Chinese",
|
||||
"NativeName": "中文",
|
||||
"FullName": "zh-cn"
|
||||
},
|
||||
{
|
||||
"Name": "zh-hans",
|
||||
"EnglishName": "Chinese (Simplified)",
|
||||
"NativeName": "中文(简体)",
|
||||
"FullName": "zh-cn"
|
||||
},
|
||||
{
|
||||
"Name": "zh-chs",
|
||||
"EnglishName": "Chinese (Simplified) Legacy",
|
||||
"NativeName": "中文(简体) 旧版",
|
||||
"FullName": "zh-cn"
|
||||
},
|
||||
{
|
||||
"Name": "zh-hant",
|
||||
"EnglishName": "Chinese (Traditional)",
|
||||
"NativeName": "中文(繁體)",
|
||||
"FullName": "zh-tw"
|
||||
},
|
||||
{
|
||||
"Name": "zh-cht",
|
||||
"EnglishName": "Chinese (Traditional) Legacy",
|
||||
"NativeName": "中文(繁體) 舊版",
|
||||
"FullName": "zh-tw"
|
||||
},
|
||||
{
|
||||
"Name": "ja",
|
||||
"EnglishName": "Japanese",
|
||||
"NativeName": "日本語",
|
||||
"FullName": "ja-jp"
|
||||
},
|
||||
{
|
||||
"Name": "ko",
|
||||
"EnglishName": "Korean",
|
||||
"NativeName": "한국어",
|
||||
"FullName": "ko-kr"
|
||||
}
|
||||
]
|
||||
BIN
Documentation/ObjectCategories.json
Normal file
BIN
Documentation/ObjectCategories.json
Normal file
Binary file not shown.
56
Documentation/ObjectInfo/#AppConfigEdgeApp.json
Normal file
56
Documentation/ObjectInfo/#AppConfigEdgeApp.json
Normal file
@@ -0,0 +1,56 @@
|
||||
[
|
||||
{
|
||||
"nameResourceKey": "applicationConfiguration",
|
||||
"descriptionResourceKey": "",
|
||||
"dataType": 8,
|
||||
"booleanActions": 0
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "EdgeAppConfig.ApplicationProxyRedirection.title",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "com.microsoft.intune.mam.managedbrowser.AppProxyRedirection",
|
||||
"dataType": 0,
|
||||
"booleanActions": 102,
|
||||
"category": "TACSettings.edgeSettings"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "EdgeAppConfig.HomepageURL.title",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "com.microsoft.intune.mam.managedbrowser.homepage",
|
||||
"dataType": 20,
|
||||
"booleanActions": 0,
|
||||
"category": "TACSettings.edgeSettings"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "EdgeAppConfig.Bookmarks.header",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "com.microsoft.intune.mam.managedbrowser.bookmarks",
|
||||
"dataType": 20,
|
||||
"booleanActions": 0,
|
||||
"category": "TACSettings.edgeSettings"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "EdgeAppConfig.AllowedURLs.title",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "com.microsoft.intune.mam.managedbrowser.AllowListURLs",
|
||||
"dataType": 20,
|
||||
"booleanActions": 0,
|
||||
"category": "TACSettings.edgeSettings"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "EdgeAppConfig.BlockedURLs.title",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "com.microsoft.intune.mam.managedbrowser.BlockListURLs",
|
||||
"dataType": 20,
|
||||
"booleanActions": 0,
|
||||
"category": "TACSettings.edgeSettings"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "EdgeAppConfig.PersonalContext.label",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "com.microsoft.intune.mam.managedbrowser.AllowTransitionOnBlock",
|
||||
"dataType": 0,
|
||||
"booleanActions": 102,
|
||||
"category": "TACSettings.edgeSettings"
|
||||
}
|
||||
]
|
||||
444
Documentation/ObjectInfo/#AppConfigOutlookApp.json
Normal file
444
Documentation/ObjectInfo/#AppConfigOutlookApp.json
Normal file
@@ -0,0 +1,444 @@
|
||||
[
|
||||
{
|
||||
"nameResourceKey": "applicationConfiguration",
|
||||
"descriptionResourceKey": "",
|
||||
"dataType": 8,
|
||||
"booleanActions": 0
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OutlookAppConfig.allowFocusedInboxTitle",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "com.microsoft.outlook.Mail.FocusedInbox",
|
||||
"dataType": 0,
|
||||
"booleanActions": 109,
|
||||
"category": "TACSettings.outlookSettings"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OutlookAppConfig.allowBiometricsTitle",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "com.microsoft.outlook.Auth.Biometric",
|
||||
"dataType": 0,
|
||||
"booleanActions": 109,
|
||||
"category": "TACSettings.outlookSettings"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OutlookAppConfig.allowUserChangeTitle",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "com.microsoft.outlook.Auth.Biometric.UserChangeAllowed",
|
||||
"dataType": 0,
|
||||
"booleanActions": 109,
|
||||
"unconfiguredValue": true,
|
||||
"allowMissing": true,
|
||||
"category": "TACSettings.outlookSettings",
|
||||
"Condition": {
|
||||
"Expressions": [
|
||||
{
|
||||
"property": "com.microsoft.outlook.Auth.Biometric",
|
||||
"value": "true"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OutlookAppConfig.allowSaveContactsTitle",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "com.microsoft.outlook.Contacts.LocalSyncEnabled",
|
||||
"dataType": 0,
|
||||
"booleanActions": 109,
|
||||
"category": "TACSettings.outlookSettings"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OutlookAppConfig.allowUserChangeTitle",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "com.microsoft.outlook.Contacts.LocalSyncEnabled.UserChangeAllowed",
|
||||
"dataType": 0,
|
||||
"booleanActions": 109,
|
||||
"unconfiguredValue": true,
|
||||
"allowMissing": true,
|
||||
"category": "TACSettings.outlookSettings",
|
||||
"Condition": {
|
||||
"Expressions": [
|
||||
{
|
||||
"property": "com.microsoft.outlook.Contacts.LocalSyncEnabled",
|
||||
"value": "true"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OutlookAppConfig.allowExternalRecipientsMailTipTitle",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "com.microsoft.outlook.Mail.ExternalRecipientsToolTipEnabled",
|
||||
"dataType": 0,
|
||||
"booleanActions": 109,
|
||||
"category": "TACSettings.outlookSettings"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OutlookAppConfig.blockExternalImagesTitle",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "com.microsoft.outlook.Mail.BlockExternalImagesEnabled",
|
||||
"dataType": 0,
|
||||
"booleanActions": 109,
|
||||
"category": "TACSettings.outlookSettings"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OutlookAppConfig.allowUserChangeTitle",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "com.microsoft.outlook.Mail.BlockExternalImagesEnabled.UserChangeAllowed",
|
||||
"dataType": 0,
|
||||
"booleanActions": 109,
|
||||
"unconfiguredValue": true,
|
||||
"allowMissing": true,
|
||||
"category": "TACSettings.outlookSettings",
|
||||
"Condition": {
|
||||
"Expressions": [
|
||||
{
|
||||
"property": "com.microsoft.outlook.Mail.BlockExternalImagesEnabled",
|
||||
"value": "true"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OutlookAppConfig.allowDefaultAppSignatureTitle",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "com.microsoft.outlook.Mail.DefaultSignatureEnabled",
|
||||
"dataType": 0,
|
||||
"booleanActions": 109,
|
||||
"category": "TACSettings.outlookSettings"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OutlookAppConfig.allowSmartReplyTitle",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "com.microsoft.outlook.Mail.SuggestedRepliesEnabled",
|
||||
"dataType": 0,
|
||||
"booleanActions": 109,
|
||||
"category": "TACSettings.outlookSettings"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OutlookAppConfig.allowUserChangeTitle",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "com.microsoft.outlook.Mail.SuggestedRepliesEnabled.UserChangeAllowed",
|
||||
"dataType": 0,
|
||||
"booleanActions": 109,
|
||||
"category": "TACSettings.outlookSettings",
|
||||
"unconfiguredValue": true,
|
||||
"allowMissing": true,
|
||||
"Condition": {
|
||||
"Expressions": [
|
||||
{
|
||||
"property": "com.microsoft.outlook.Mail.SuggestedRepliesEnabled",
|
||||
"value": "true"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OutlookAppConfig.OrganizeMailByThread.title",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "com.microsoft.outlook.Mail.OrganizeByThreadEnabled",
|
||||
"dataType": 0,
|
||||
"booleanActions": 109,
|
||||
"category": "TACSettings.outlookSettings"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OutlookAppConfig.discoverFeedTitle",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "com.microsoft.outlook.Mail.officeFeedEnabled",
|
||||
"dataType": 0,
|
||||
"booleanActions": 120,
|
||||
"category": "TACSettings.outlookSettings"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OutlookAppConfig.playMyEmailsTitle",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "com.microsoft.outlook.Mail.PlayMyEmailsEnabled",
|
||||
"dataType": 0,
|
||||
"booleanActions": 120,
|
||||
"category": "TACSettings.outlookSettings"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OutlookAppConfig.nativeCalendarSyncTitle",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "com.microsoft.outlook.Calendar.NativeSyncEnabled",
|
||||
"dataType": 0,
|
||||
"booleanActions": 120,
|
||||
"category": "TACSettings.outlookSettings"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OutlookAppConfig.allowUserChangeTitle",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "com.microsoft.outlook.Calendar.NativeSyncEnabled.UserChangeAllowed",
|
||||
"dataType": 0,
|
||||
"booleanActions": 109,
|
||||
"unconfiguredValue": true,
|
||||
"allowMissing": true,
|
||||
"category": "TACSettings.outlookSettings",
|
||||
"Condition": {
|
||||
"Expressions": [
|
||||
{
|
||||
"property": "com.microsoft.outlook.Calendar.NativeSyncEnabled",
|
||||
"value": "true"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OutlookAppConfig.textPredictionsTitle",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "com.microsoft.outlook.Mail.TextPredictionsEnabled",
|
||||
"dataType": 0,
|
||||
"booleanActions": 120,
|
||||
"category": "TACSettings.outlookSettings"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OutlookAppConfig.allowUserChangeTitle",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "com.microsoft.outlook.Mail.TextPredictionsEnabled.UserChangeAllowed",
|
||||
"dataType": 0,
|
||||
"booleanActions": 109,
|
||||
"unconfiguredValue": true,
|
||||
"allowMissing": true,
|
||||
"category": "TACSettings.outlookSettings",
|
||||
"Condition": {
|
||||
"Expressions": [
|
||||
{
|
||||
"property": "com.microsoft.outlook.Mail.TextPredictionsEnabled",
|
||||
"value": "true"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
{
|
||||
"nameResourceKey": "OutlookAppConfig.DataProtectionConfiguration.header",
|
||||
"descriptionResourceKey": "",
|
||||
"dataType": 8,
|
||||
"booleanActions": 0
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OutlookAppConfig.allowOrgDataOnWearablesTitle",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "com.microsoft.intune.mam.areWearablesAllowed",
|
||||
"dataType": 0,
|
||||
"booleanActions": 109,
|
||||
"category": "TACSettings.outlookSettings"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OutlookAppConfig.allowCalendarNotificationsTitle",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "com.microsoft.outlook.Calendar.Notifications.IntuneMAMOnly",
|
||||
"dataType": 16,
|
||||
"booleanActions": 0,
|
||||
"category": "TACSettings.outlookSettings",
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "BooleanActions.notConfigured",
|
||||
"value": "false"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "allowedOption",
|
||||
"value": "0"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OutlookAppConfig.nativeCalendarSyncMAMOnlyTitle",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "com.microsoft.outlook.Calendar.NativeSyncAvailable.IntuneMAMOnly",
|
||||
"dataType": 0,
|
||||
"booleanActions": 120,
|
||||
"category": "TACSettings.outlookSettings"
|
||||
},
|
||||
|
||||
|
||||
{
|
||||
"nameResourceKey": "OutlookAppConfig.Sync.header",
|
||||
"descriptionResourceKey": "",
|
||||
"dataType": 8,
|
||||
"booleanActions": 0
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OutlookAppConfig.syncAddressTitle",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "com.microsoft.outlook.ContactSync.AddressAllowed",
|
||||
"dataType": 0,
|
||||
"booleanActions": 109,
|
||||
"category": "TACSettings.outlookSettings"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OutlookAppConfig.syncBirthdayTitle",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "com.microsoft.outlook.ContactSync.BirthdayAllowed",
|
||||
"dataType": 0,
|
||||
"booleanActions": 109,
|
||||
"category": "TACSettings.outlookSettings"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OutlookAppConfig.syncCompanyTitle",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "com.microsoft.outlook.ContactSync.CompanyAllowed",
|
||||
"dataType": 0,
|
||||
"booleanActions": 109,
|
||||
"category": "TACSettings.outlookSettings"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OutlookAppConfig.syncDepartmentTitle",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "com.microsoft.outlook.ContactSync.DepartmentAllowed",
|
||||
"dataType": 0,
|
||||
"booleanActions": 109,
|
||||
"category": "TACSettings.outlookSettings"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OutlookAppConfig.syncEmailAddressTitle",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "com.microsoft.outlook.ContactSync.EmailAllowed",
|
||||
"dataType": 0,
|
||||
"booleanActions": 109,
|
||||
"category": "TACSettings.outlookSettings"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OutlookAppConfig.syncInstantMessagingAddressTitle",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "com.microsoft.outlook.ContactSync.InstantMessageAllowed",
|
||||
"dataType": 0,
|
||||
"booleanActions": 109,
|
||||
"category": "TACSettings.outlookSettings"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OutlookAppConfig.syncJobTitleTitle",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "com.microsoft.outlook.ContactSync.JobTitleAllowed",
|
||||
"dataType": 0,
|
||||
"booleanActions": 109,
|
||||
"category": "TACSettings.outlookSettings"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OutlookAppConfig.syncPrefixTitle",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "com.microsoft.outlook.ContactSync.PrefixAllowed",
|
||||
"dataType": 0,
|
||||
"booleanActions": 109,
|
||||
"category": "TACSettings.outlookSettings"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OutlookAppConfig.syncSuffixTitle",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "com.microsoft.outlook.ContactSync.SuffixAllowed",
|
||||
"dataType": 0,
|
||||
"booleanActions": 109,
|
||||
"category": "TACSettings.outlookSettings"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OutlookAppConfig.syncNicknameTitle",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "com.microsoft.outlook.ContactSync.NicknameAllowed",
|
||||
"dataType": 0,
|
||||
"booleanActions": 109,
|
||||
"category": "TACSettings.outlookSettings"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OutlookAppConfig.syncNotesTitle",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "com.microsoft.outlook.ContactSync.NotesAllowed",
|
||||
"dataType": 0,
|
||||
"booleanActions": 109,
|
||||
"category": "TACSettings.outlookSettings"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OutlookAppConfig.syncPhoneHomeNumberTitle",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "com.microsoft.outlook.ContactSync.PhoneHomeAllowed",
|
||||
"dataType": 0,
|
||||
"booleanActions": 109,
|
||||
"category": "TACSettings.outlookSettings"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OutlookAppConfig.syncPhoneHomeFaxNumberTitle",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "com.microsoft.outlook.ContactSync.PhoneHomeFaxAllowed",
|
||||
"dataType": 0,
|
||||
"booleanActions": 109,
|
||||
"category": "TACSettings.outlookSettings"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OutlookAppConfig.syncPhoneMobileNumberTitle",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "com.microsoft.outlook.ContactSync.PhoneMobileAllowed",
|
||||
"dataType": 0,
|
||||
"booleanActions": 109,
|
||||
"category": "TACSettings.outlookSettings"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OutlookAppConfig.syncPhoneOtherNumberTitle",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "com.microsoft.outlook.ContactSync.PhoneOtherAllowed",
|
||||
"dataType": 0,
|
||||
"booleanActions": 109,
|
||||
"category": "TACSettings.outlookSettings"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OutlookAppConfig.syncPhonePagerNumberTitle",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "com.microsoft.outlook.ContactSync.PhonePagerAllowed",
|
||||
"dataType": 0,
|
||||
"booleanActions": 109,
|
||||
"category": "TACSettings.outlookSettings"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OutlookAppConfig.syncPhoneWorkNumberTitle",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "com.microsoft.outlook.ContactSync.PhoneWorkAllowed",
|
||||
"dataType": 0,
|
||||
"booleanActions": 109,
|
||||
"category": "TACSettings.outlookSettings"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OutlookAppConfig.syncPhoneWorkFaxNumberTitle",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "com.microsoft.outlook.ContactSync.PhoneWorkFaxAllowed",
|
||||
"dataType": 0,
|
||||
"booleanActions": 109,
|
||||
"category": "TACSettings.outlookSettings"
|
||||
},
|
||||
|
||||
|
||||
|
||||
{
|
||||
"nameResourceKey": "Inputs.outlookSMimeSettings",
|
||||
"descriptionResourceKey": "",
|
||||
"dataType": 8,
|
||||
"booleanActions": 0
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OutlookAppConfig.enableSMIMETitle",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "com.microsoft.outlook.Mail.SMIMEEnabled",
|
||||
"dataType": 0,
|
||||
"booleanActions": 120,
|
||||
"category": "SettingDetails.requireSMIME"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OutlookAppConfig.allowUserChangeTitle",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "com.microsoft.outlook.Mail.SMIMEEnabled.UserChangeAllowed",
|
||||
"dataType": 0,
|
||||
"booleanActions": 109,
|
||||
"unconfiguredValue": true,
|
||||
"allowMissing": true,
|
||||
"category": "SettingDetails.requireSMIME",
|
||||
"Condition": {
|
||||
"Expressions": [
|
||||
{
|
||||
"property": "com.microsoft.outlook.Mail.SMIMEEnabled",
|
||||
"value": "true"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
341
Documentation/ObjectInfo/#AppConfigOutlookDevice.json
Normal file
341
Documentation/ObjectInfo/#AppConfigOutlookDevice.json
Normal file
@@ -0,0 +1,341 @@
|
||||
[
|
||||
{
|
||||
"nameResourceKey": "outlookConfigTitle",
|
||||
"descriptionResourceKey": "",
|
||||
"dataType": 8,
|
||||
"booleanActions": 0
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OutlookAppConfigSettings.ConfigureEmail.title",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "configureEmail",
|
||||
"dataType": 0,
|
||||
"booleanActions": 109,
|
||||
"category": 103
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "Inputs.authenticationType",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "com.microsoft.outlook.EmailProfile.AccountType",
|
||||
"dataType": 16,
|
||||
"booleanActions": 0,
|
||||
"category": 103,
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "Inputs.basicAuth",
|
||||
"value": "BasicAuth"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "Inputs.modernAuth",
|
||||
"value": "ModernAuth"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "userNameTypeName",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "com.microsoft.outlook.EmailProfile.EmailUPN",
|
||||
"dataType": 16,
|
||||
"booleanActions": 0,
|
||||
"category": 103,
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "userPrincipalNameOption",
|
||||
"value": "{{userprincipalname}}"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "Inputs.sAMAccountName",
|
||||
"value": "{{onPremisesSamAccountName}}"
|
||||
}, {
|
||||
"nameResourceKey": "primarySMTPAddressOption",
|
||||
"value": "{{mail}}"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "Inputs.accountDomain",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "com.microsoft.outlook.EmailProfile.AccountDomain",
|
||||
"dataType": 20,
|
||||
"booleanActions": 0,
|
||||
"category": 103,
|
||||
"Condition": {
|
||||
"Expressions": [
|
||||
{
|
||||
"property": "com.microsoft.outlook.EmailProfile.EmailUPN",
|
||||
"value": "{{onPremisesSamAccountName}}"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "emailAddressTypeName",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "com.microsoft.outlook.EmailProfile.EmailAddress",
|
||||
"dataType": 16,
|
||||
"booleanActions": 0,
|
||||
"category": 103,
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "userPrincipalNameOption",
|
||||
"value": "{{userprincipalname}}"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "primarySMTPAddressOption",
|
||||
"value": "{{mail}}"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "Inputs.emailServer",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "com.microsoft.outlook.EmailProfile.ServerHostName",
|
||||
"dataType": 20,
|
||||
"booleanActions": 0,
|
||||
"category": 103,
|
||||
"Condition": {
|
||||
"Expressions": [
|
||||
{
|
||||
"property": "com.microsoft.outlook.EmailProfile.AccountType",
|
||||
"value": "BasicAuth"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "Inputs.emailAccount",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "com.microsoft.outlook.EmailProfile.EmailAccountName",
|
||||
"dataType": 20,
|
||||
"booleanActions": 0,
|
||||
"category": 103,
|
||||
"Condition": {
|
||||
"Expressions": [
|
||||
{
|
||||
"property": "com.microsoft.outlook.EmailProfile.AccountType",
|
||||
"value": "BasicAuth"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OutlookAppConfigSettings.AllowWorkAccounts.title",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "IntuneMAMAllowedAccountsOnly",
|
||||
"dataType": 16,
|
||||
"booleanActions": 0,
|
||||
"category": 103,
|
||||
"Condition": {
|
||||
"Expressions": [
|
||||
{
|
||||
"property": "com.microsoft.outlook.EmailProfile.AccountType",
|
||||
"value": "ModernAuth"
|
||||
}
|
||||
]
|
||||
},
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "enabledOption",
|
||||
"value": "Enabled"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "disabledOption",
|
||||
"value": "Disabled"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
|
||||
{
|
||||
"nameResourceKey": "applicationConfiguration",
|
||||
"descriptionResourceKey": "",
|
||||
"dataType": 8,
|
||||
"booleanActions": 0
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OutlookAppConfig.allowFocusedInboxTitle",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "com.microsoft.outlook.Mail.FocusedInbox",
|
||||
"dataType": 0,
|
||||
"booleanActions": 120,
|
||||
"category": 103
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OutlookAppConfig.allowBiometricsTitle",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "com.microsoft.outlook.Auth.Biometric",
|
||||
"dataType": 0,
|
||||
"booleanActions": 120,
|
||||
"category": 103
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OutlookAppConfig.allowUserChangeTitle",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "com.microsoft.outlook.Auth.Biometric.UserChangeAllowed",
|
||||
"dataType": 0,
|
||||
"booleanActions": 109,
|
||||
"unconfiguredValue": true,
|
||||
"allowMissing": true,
|
||||
"category": 103,
|
||||
"Condition": {
|
||||
"Expressions": [
|
||||
{
|
||||
"property": "com.microsoft.outlook.Auth.Biometric",
|
||||
"value": "true"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OutlookAppConfig.allowSaveContactsTitle",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "com.microsoft.outlook.Contacts.LocalSyncEnabled",
|
||||
"dataType": 0,
|
||||
"booleanActions": 120,
|
||||
"category": 103
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OutlookAppConfig.allowUserChangeTitle",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "com.microsoft.outlook.Contacts.LocalSyncEnabled.UserChangeAllowed",
|
||||
"dataType": 0,
|
||||
"booleanActions": 109,
|
||||
"unconfiguredValue": true,
|
||||
"allowMissing": true,
|
||||
"category": 103,
|
||||
"Condition": {
|
||||
"Expressions": [
|
||||
{
|
||||
"property": "com.microsoft.outlook.Contacts.LocalSyncEnabled",
|
||||
"value": "true"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OutlookAppConfig.discoverFeedTitle",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "com.microsoft.outlook.Mail.officeFeedEnabled",
|
||||
"dataType": 0,
|
||||
"booleanActions": 120,
|
||||
"category": 103
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OutlookAppConfig.allowSmartReplyTitle",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "com.microsoft.outlook.Mail.SuggestedRepliesEnabled",
|
||||
"dataType": 0,
|
||||
"booleanActions": 120,
|
||||
"category": 103
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OutlookAppConfig.allowUserChangeTitle",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "com.microsoft.outlook.Mail.SuggestedRepliesEnabled.UserChangeAllowed",
|
||||
"dataType": 0,
|
||||
"booleanActions": 109,
|
||||
"category": 103,
|
||||
"unconfiguredValue": true,
|
||||
"allowMissing": true,
|
||||
"Condition": {
|
||||
"Expressions": [
|
||||
{
|
||||
"property": "com.microsoft.outlook.Mail.SuggestedRepliesEnabled",
|
||||
"value": "true"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OutlookAppConfig.allowExternalRecipientsMailTipTitle",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "com.microsoft.outlook.Mail.ExternalRecipientsToolTipEnabled",
|
||||
"dataType": 0,
|
||||
"booleanActions": 120,
|
||||
"category": 103
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OutlookAppConfig.allowDefaultAppSignatureTitle",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "com.microsoft.outlook.Mail.DefaultSignatureEnabled",
|
||||
"dataType": 0,
|
||||
"booleanActions": 120,
|
||||
"category": 103
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OutlookAppConfig.blockExternalImagesTitle",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "com.microsoft.outlook.Mail.BlockExternalImagesEnabled",
|
||||
"dataType": 0,
|
||||
"booleanActions": 120,
|
||||
"category": 103
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OutlookAppConfig.allowUserChangeTitle",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "com.microsoft.outlook.Mail.BlockExternalImagesEnabled.UserChangeAllowed",
|
||||
"dataType": 0,
|
||||
"booleanActions": 109,
|
||||
"unconfiguredValue": true,
|
||||
"allowMissing": true,
|
||||
"category": 103,
|
||||
"Condition": {
|
||||
"Expressions": [
|
||||
{
|
||||
"property": "com.microsoft.outlook.Mail.BlockExternalImagesEnabled",
|
||||
"value": "true"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OutlookAppConfig.OrganizeMailByThread.title",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "com.microsoft.outlook.Mail.OrganizeByThreadEnabled",
|
||||
"dataType": 0,
|
||||
"booleanActions": 120,
|
||||
"category": 103
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OutlookAppConfig.playMyEmailsTitle",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "com.microsoft.outlook.Mail.PlayMyEmailsEnabled",
|
||||
"dataType": 0,
|
||||
"booleanActions": 120,
|
||||
"category": 103
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OutlookAppConfig.themesEnabledTitle",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "com.microsoft.outlook.Settings.ThemesEnabled",
|
||||
"dataType": 0,
|
||||
"booleanActions": 120,
|
||||
"category": 103
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OutlookAppConfig.textPredictionsTitle",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "com.microsoft.outlook.Mail.TextPredictionsEnabled",
|
||||
"dataType": 0,
|
||||
"booleanActions": 120,
|
||||
"category": 103
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OutlookAppConfig.allowUserChangeTitle",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "com.microsoft.outlook.Mail.TextPredictionsEnabled.UserChangeAllowed",
|
||||
"dataType": 0,
|
||||
"booleanActions": 109,
|
||||
"unconfiguredValue": true,
|
||||
"allowMissing": true,
|
||||
"category": 103,
|
||||
"Condition": {
|
||||
"Expressions": [
|
||||
{
|
||||
"property": "com.microsoft.outlook.Mail.TextPredictionsEnabled",
|
||||
"value": "true"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
898
Documentation/ObjectInfo/#Applications.json
Normal file
898
Documentation/ObjectInfo/#Applications.json
Normal file
@@ -0,0 +1,898 @@
|
||||
[
|
||||
{
|
||||
"nameResourceKey": "publisher",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "publisher",
|
||||
"dataType": 20,
|
||||
"booleanActions": 0,
|
||||
"category": "AppInformationTab.name"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "Inputs.displayVersionLabel",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "displayVersion",
|
||||
"dataType": 20,
|
||||
"booleanActions": 0,
|
||||
"category": "AppInformationTab.name",
|
||||
"Condition": {
|
||||
"Expressions": [
|
||||
{
|
||||
"property": "displayVersion"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "Inputs.appUrlLabel",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "appStoreUrl",
|
||||
"dataType": 20,
|
||||
"booleanActions": 0,
|
||||
"category": "AppInformationTab.name",
|
||||
"Condition": {
|
||||
"Expressions": [
|
||||
{
|
||||
"property": "appStoreUrl"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "Inputs.appInstallContext",
|
||||
"descriptionResourceKey": "AppInfoBalloonText.appInstallContext",
|
||||
"entityKey": "useDeviceContext",
|
||||
"dataType": 16,
|
||||
"booleanActions": 0,
|
||||
"category": "AppInformationTab.name",
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "InstallContextType.user",
|
||||
"value": false
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "InstallContextType.Device",
|
||||
"value": true
|
||||
}
|
||||
],
|
||||
"Condition": {
|
||||
"type": "and",
|
||||
"Expressions": [
|
||||
{
|
||||
"property": "useDeviceContext"
|
||||
},
|
||||
{
|
||||
"property": "@OData.Type",
|
||||
"value": "#microsoft.graph.androidManagedStoreApp",
|
||||
"operator": "ne"
|
||||
}
|
||||
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "Inputs.ignoreVersionDetection",
|
||||
"descriptionResourceKey": "AppInfoBalloonText.ignoreVersionDetection",
|
||||
"entityKey": "ignoreVersionDetection",
|
||||
"dataType": 0,
|
||||
"booleanActions": 109,
|
||||
"category": "AppInformationTab.name",
|
||||
"Condition": {
|
||||
"Expressions": [
|
||||
{
|
||||
"property": "ignoreVersionDetection"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "Inputs.commandLineLabel",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "commandLine",
|
||||
"dataType": 20,
|
||||
"booleanActions": 0,
|
||||
"category": "AppInformationTab.name",
|
||||
"Condition": {
|
||||
"Expressions": [
|
||||
{
|
||||
"property": "commandLine"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "Inputs.minimumOperationSystem",
|
||||
"descriptionResourceKey": "AppInformationTab.Info.minOperatingSystem",
|
||||
"entityKey": "minimumSupportedOperatingSystem",
|
||||
"dataType": 104,
|
||||
"booleanActions": 0,
|
||||
"category": "AppInformationTab.name",
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "MinimumOperatingSystem.IOS.v8",
|
||||
"value": "v8_0"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "MinimumOperatingSystem.IOS.v9",
|
||||
"value": "v9_0"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "MinimumOperatingSystem.IOS.v10",
|
||||
"value": "v10_0"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "MinimumOperatingSystem.IOS.v11",
|
||||
"value": "v11_0"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "MinimumOperatingSystem.IOS.v12",
|
||||
"value": "v12_0"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "MinimumOperatingSystem.IOS.v13",
|
||||
"value": "v13_0"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "MinimumOperatingSystem.IOS.v14",
|
||||
"value": "v14_0"
|
||||
}
|
||||
],
|
||||
"Condition": {
|
||||
"type": "and",
|
||||
"Expressions": [
|
||||
{
|
||||
"property": "minimumSupportedOperatingSystem"
|
||||
},
|
||||
{
|
||||
"property": "@OData.Type",
|
||||
"value": "*ios*",
|
||||
"operator": "like"
|
||||
}
|
||||
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "Inputs.applicableDeviceType",
|
||||
"descriptionResourceKey": "AppInformationTab.Info.applicableDeviceType",
|
||||
"entityKey": "applicableDeviceType",
|
||||
"dataType": 104,
|
||||
"booleanActions": 0,
|
||||
"category": "AppInformationTab.name",
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "ApplicableDeviceType.iPad",
|
||||
"value": "iPad"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "ApplicableDeviceType.iPhoneAndIPod",
|
||||
"value": "iPhoneAndIPod"
|
||||
}
|
||||
],
|
||||
"Condition": {
|
||||
"type": "and",
|
||||
"Expressions": [
|
||||
{
|
||||
"property": "applicableDeviceType"
|
||||
},
|
||||
{
|
||||
"property": "@OData.Type",
|
||||
"value": "*ios*",
|
||||
"operator": "like"
|
||||
}
|
||||
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "Inputs.categoryLabel",
|
||||
"descriptionResourceKey": "AppInformationTab.Info.category",
|
||||
"entityKey": "categories",
|
||||
"dataType": 21,
|
||||
"category": "AppInformationTab.name",
|
||||
"Columns": [
|
||||
{
|
||||
"metadata": {
|
||||
"entityKey": "displayName"
|
||||
}
|
||||
}
|
||||
],
|
||||
"Condition": {
|
||||
"type": "and",
|
||||
"Expressions": [
|
||||
{
|
||||
"property": "@OData.Type",
|
||||
"value": "#microsoft.graph.androidManagedStoreApp",
|
||||
"operator": "ne"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "Inputs.isFeatured",
|
||||
"descriptionResourceKey": "AppInformationTab.Info.isFeatured",
|
||||
"entityKey": "isFeatured",
|
||||
"dataType": 0,
|
||||
"booleanActions": 109,
|
||||
"category": "AppInformationTab.name",
|
||||
"Condition": {
|
||||
"type": "and",
|
||||
"Expressions": [
|
||||
{
|
||||
"property": "isFeatured"
|
||||
},
|
||||
{
|
||||
"property": "@OData.Type",
|
||||
"value": "#microsoft.graph.androidManagedStoreApp",
|
||||
"operator": "ne"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "Inputs.informationUrlLabel",
|
||||
"descriptionResourceKey": "AppInformationTab.Info.infoUrl",
|
||||
"entityKey": "informationUrl",
|
||||
"dataType": 20,
|
||||
"booleanActions": 0,
|
||||
"category": "AppInformationTab.name",
|
||||
"Condition": {
|
||||
"type": "and",
|
||||
"Expressions": [
|
||||
{
|
||||
"property": "informationUrl"
|
||||
},
|
||||
{
|
||||
"property": "@OData.Type",
|
||||
"value": "#microsoft.graph.androidManagedStoreApp",
|
||||
"operator": "ne"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "Inputs.privacyUrlLabel",
|
||||
"descriptionResourceKey": "AppInformationTab.Info.privacyUrl",
|
||||
"entityKey": "privacyInformationUrl",
|
||||
"dataType": 20,
|
||||
"booleanActions": 0,
|
||||
"category": "AppInformationTab.name",
|
||||
"Condition": {
|
||||
"type": "and",
|
||||
"Expressions": [
|
||||
{
|
||||
"property": "privacyInformationUrl"
|
||||
},
|
||||
{
|
||||
"property": "@OData.Type",
|
||||
"value": "#microsoft.graph.androidManagedStoreApp",
|
||||
"operator": "ne"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "Inputs.developerLabel",
|
||||
"descriptionResourceKey": "AppInformationTab.Info.developer",
|
||||
"entityKey": "developer",
|
||||
"dataType": 20,
|
||||
"booleanActions": 0,
|
||||
"category": "AppInformationTab.name",
|
||||
"Condition": {
|
||||
"type": "and",
|
||||
"Expressions": [
|
||||
{
|
||||
"property": "developer"
|
||||
},
|
||||
{
|
||||
"property": "@OData.Type",
|
||||
"value": "#microsoft.graph.androidManagedStoreApp",
|
||||
"operator": "ne"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "Inputs.ownerLabel",
|
||||
"descriptionResourceKey": "AppInformationTab.Info.owner",
|
||||
"entityKey": "owner",
|
||||
"dataType": 20,
|
||||
"booleanActions": 0,
|
||||
"category": "AppInformationTab.name",
|
||||
"Condition": {
|
||||
"type": "and",
|
||||
"Expressions": [
|
||||
{
|
||||
"property": "owner"
|
||||
},
|
||||
{
|
||||
"property": "@OData.Type",
|
||||
"value": "#microsoft.graph.androidManagedStoreApp",
|
||||
"operator": "ne"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "Inputs.notesLabel",
|
||||
"descriptionResourceKey": "AppInformationTab.Info.notes",
|
||||
"entityKey": "notes",
|
||||
"dataType": 20,
|
||||
"booleanActions": 0,
|
||||
"category": "AppInformationTab.name",
|
||||
"Condition": {
|
||||
"type": "and",
|
||||
"Expressions": [
|
||||
{
|
||||
"property": "notes"
|
||||
},
|
||||
{
|
||||
"property": "@OData.Type",
|
||||
"value": "#microsoft.graph.androidManagedStoreApp",
|
||||
"operator": "ne"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
{
|
||||
"nameResourceKey": "OfficeSuiteAppsTab.configureAppSuiteLabel",
|
||||
"descriptionResourceKey": "",
|
||||
"dataType": 8,
|
||||
"booleanActions": 0,
|
||||
"Condition": {
|
||||
"Expressions": [
|
||||
{
|
||||
"property": "@OData.Type",
|
||||
"value": "#microsoft.graph.officeSuiteApp"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OfficeSuiteAppsTab.appsToBeInstalledLabel",
|
||||
"descriptionResourceKey": "OfficeSuiteAppsTab.selectOfficeAppsTooltip",
|
||||
"entityKey": "excludedApps",
|
||||
"dataType": 105,
|
||||
"booleanActions": 0,
|
||||
"category": "OfficeSuiteAppsTab.appSuiteConfigurationLabel",
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "OfficeApplicationType.access",
|
||||
"value": "access"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OfficeApplicationType.excel",
|
||||
"value": "excel"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OfficeApplicationType.oneNote",
|
||||
"value": "oneNote"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OfficeApplicationType.powerPoint",
|
||||
"value": "powerPoint"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OfficeApplicationType.publisher",
|
||||
"value": "publisher"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OfficeApplicationType.lync",
|
||||
"value": "lync"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OfficeApplicationType.teams",
|
||||
"value": "teams"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OfficeApplicationType.word",
|
||||
"value": "word"
|
||||
}
|
||||
],
|
||||
"Condition": {
|
||||
"Expressions": [
|
||||
{
|
||||
"property": "@OData.Type",
|
||||
"value": "#microsoft.graph.officeSuiteApp"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OfficeSuiteAppsTab.selectOtherOfficeAppsLabel",
|
||||
"descriptionResourceKey": "OfficeSuiteAppsTab.selectOtherOfficeAppsTooltip",
|
||||
"entityKey": "productIds",
|
||||
"dataType": 13,
|
||||
"booleanActions": 0,
|
||||
"category": "OfficeSuiteAppsTab.appSuiteConfigurationLabel",
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "OfficeApplicationAdditionalType.projectProRetail",
|
||||
"value": "projectProRetail"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OfficeApplicationAdditionalType.visioProRetail",
|
||||
"value": "visioProRetail"
|
||||
}
|
||||
],
|
||||
"Condition": {
|
||||
"Expressions": [
|
||||
{
|
||||
"property": "@OData.Type",
|
||||
"value": "#microsoft.graph.officeSuiteApp"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OfficeSuiteAppsTab.appSuiteInformationLabel",
|
||||
"descriptionResourceKey": "",
|
||||
"dataType": 8,
|
||||
"booleanActions": 0,
|
||||
"Condition": {
|
||||
"Expressions": [
|
||||
{
|
||||
"property": "@OData.Type",
|
||||
"value": "#microsoft.graph.officeSuiteApp"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OfficeSuiteAppsTab.architectureLabel",
|
||||
"descriptionResourceKey": "OfficeSuiteAppsTab.architectureTooltip",
|
||||
"entityKey": "officePlatformArchitecture",
|
||||
"dataType": 16,
|
||||
"booleanActions": 0,
|
||||
"category": "OfficeSuiteAppsTab.appSuiteConfigurationLabel",
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "ArchitectureOptions.sixtyFourBit",
|
||||
"value": "x64"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "ArchitectureOptions.thirtyTwoBit",
|
||||
"value": "x86"
|
||||
}
|
||||
],
|
||||
"Condition": {
|
||||
"Expressions": [
|
||||
{
|
||||
"property": "@OData.Type",
|
||||
"value": "#microsoft.graph.officeSuiteApp"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OfficeSuiteAppsTab.updateChannelLabel",
|
||||
"descriptionResourceKey": "OfficeSuiteAppsTab.updateChannelTooltip",
|
||||
"entityKey": "updateChannel",
|
||||
"dataType": 16,
|
||||
"booleanActions": 0,
|
||||
"category": "OfficeSuiteAppsTab.appSuiteConfigurationLabel",
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "OfficeUpdateChannel.current",
|
||||
"value": "current"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OfficeUpdateChannel.deferred",
|
||||
"value": "deferred"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OfficeUpdateChannel.firstReleaseCurrent",
|
||||
"value": "firstReleaseCurrent"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OfficeUpdateChannel.firstReleaseDeferred",
|
||||
"value": "firstReleaseDeferred"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OfficeUpdateChannel.monthlyEnterprise",
|
||||
"value": "monthlyEnterprise"
|
||||
}
|
||||
],
|
||||
"Condition": {
|
||||
"Expressions": [
|
||||
{
|
||||
"property": "@OData.Type",
|
||||
"value": "#microsoft.graph.officeSuiteApp"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OfficeSuiteAppsTab.removeOtherVersionsLabel",
|
||||
"descriptionResourceKey": "OfficeSuiteAppsTab.removeOtherVersionsTooltip",
|
||||
"entityKey": "shouldUninstallOlderVersionsOfOffice",
|
||||
"dataType": 0,
|
||||
"booleanActions": 109,
|
||||
"category": "OfficeSuiteAppsTab.appSuiteConfigurationLabel",
|
||||
"Condition": {
|
||||
"Expressions": [
|
||||
{
|
||||
"property": "@OData.Type",
|
||||
"value": "#microsoft.graph.officeSuiteApp"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OfficeSuiteAppsTab.versionToInstallLabel",
|
||||
"descriptionResourceKey": "OfficeSuiteAppsTab.versionToInstallTooltip",
|
||||
"entityKey": "VersionToInstall",
|
||||
"dataType": 20,
|
||||
"booleanActions": 0,
|
||||
"category": "OfficeSuiteAppsTab.appSuiteConfigurationLabel",
|
||||
"Condition": {
|
||||
"Expressions": [
|
||||
{
|
||||
"property": "@OData.Type",
|
||||
"value": "#microsoft.graph.officeSuiteApp"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OfficeSuiteAppsTab.propertiesLabel",
|
||||
"descriptionResourceKey": "",
|
||||
"dataType": 8,
|
||||
"booleanActions": 0,
|
||||
"Condition": {
|
||||
"Expressions": [
|
||||
{
|
||||
"property": "@OData.Type",
|
||||
"value": "#microsoft.graph.officeSuiteApp"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OfficeSuiteAppsTab.useSharedComputerActivationLabel",
|
||||
"descriptionResourceKey": "OfficeSuiteAppsTab.useSharedComputerActivationTooltip",
|
||||
"entityKey": "useSharedComputerActivation",
|
||||
"dataType": 0,
|
||||
"booleanActions": 109,
|
||||
"category": "OfficeSuiteAppsTab.appSuiteConfigurationLabel",
|
||||
"Condition": {
|
||||
"Expressions": [
|
||||
{
|
||||
"property": "@OData.Type",
|
||||
"value": "#microsoft.graph.officeSuiteApp"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OfficeSuiteAppsTab.acceptLicenseOnBehalfOfUsersLabel",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "autoAcceptEula",
|
||||
"dataType": 0,
|
||||
"booleanActions": 109,
|
||||
"category": "OfficeSuiteAppsTab.appSuiteConfigurationLabel",
|
||||
"Condition": {
|
||||
"Expressions": [
|
||||
{
|
||||
"property": "@OData.Type",
|
||||
"value": "#microsoft.graph.officeSuiteApp"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OfficeSuiteAppsTab.useMicrosoftSearchAsDefault",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "useMicrosoftSearchAsDefault",
|
||||
"dataType": 0,
|
||||
"booleanActions": 109,
|
||||
"category": "OfficeSuiteAppsTab.appSuiteConfigurationLabel",
|
||||
"Condition": {
|
||||
"Expressions": [
|
||||
{
|
||||
"property": "@OData.Type",
|
||||
"value": "#microsoft.graph.officeSuiteApp"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OfficeSuiteAppsTab.languagesLabel",
|
||||
"descriptionResourceKey": "OfficeSuiteAppsTab.languagesTooltip",
|
||||
"entityKey": "localesToInstall",
|
||||
"dataType": 106,
|
||||
"booleanActions": 0,
|
||||
"category": "OfficeSuiteAppsTab.appSuiteConfigurationLabel",
|
||||
"Condition": {
|
||||
"Expressions": [
|
||||
{
|
||||
"property": "@OData.Type",
|
||||
"value": "#microsoft.graph.officeSuiteApp"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
|
||||
|
||||
{
|
||||
"nameResourceKey": "SettingDetails.channel",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "channel",
|
||||
"dataType": 16,
|
||||
"booleanActions": 0,
|
||||
"category": "OfficeSuiteAppsTab.appSuiteConfigurationLabel",
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "MicrosoftEdgeChannel.dev",
|
||||
"value": "dev"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "MicrosoftEdgeChannel.beta",
|
||||
"value": "beta"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "MicrosoftEdgeChannel.stable",
|
||||
"value": "stable"
|
||||
}
|
||||
],
|
||||
"Condition": {
|
||||
"Expressions": [
|
||||
{
|
||||
"property": "@OData.Type",
|
||||
"value": "#microsoft.graph.macOSMdatpApp"
|
||||
},
|
||||
{
|
||||
"property": "@OData.Type",
|
||||
"value": "#microsoft.graph.windowsMicrosoftEdgeApp"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "OfficeSuiteAppsTab.languagesLabel",
|
||||
"descriptionResourceKey": "OfficeSuiteAppsTab.languagesTooltip",
|
||||
"entityKey": "displayLanguageLocale",
|
||||
"dataType": 102,
|
||||
"booleanActions": 0,
|
||||
"category": "OfficeSuiteAppsTab.appSuiteConfigurationLabel",
|
||||
"unconfiguredValue": "os-default",
|
||||
"Condition": {
|
||||
"Expressions": [
|
||||
{
|
||||
"property": "@OData.Type",
|
||||
"value": "#microsoft.graph.officeSuiteApp"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "",
|
||||
"dataType": 5,
|
||||
"booleanActions": 0,
|
||||
"category": "",
|
||||
"Condition": {
|
||||
"Expressions": [
|
||||
{
|
||||
"property": "@OData.Type",
|
||||
"value": "#microsoft.graph.win32LobApp"
|
||||
}
|
||||
]
|
||||
},
|
||||
"complexOptions": [
|
||||
{
|
||||
"nameResourceKey": "Win32Program.installCommand",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "installCommandLine",
|
||||
"dataType": 20,
|
||||
"booleanActions": 0,
|
||||
"category": "Win32Program.selectorLabel"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "Win32Program.uninstallCommand",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "uninstallCommandLine",
|
||||
"dataType": 20,
|
||||
"booleanActions": 0,
|
||||
"category": "Win32Program.selectorLabel"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "installExperience",
|
||||
"dataType": 6,
|
||||
"booleanActions": 0,
|
||||
"category": "",
|
||||
"complexOptions": [
|
||||
{
|
||||
"nameResourceKey": "Win32Program.runAsAccount",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "runAsAccount",
|
||||
"dataType": 16,
|
||||
"booleanActions": 0,
|
||||
"category": "Win32Program.selectorLabel",
|
||||
"Options": [
|
||||
{
|
||||
"nameResourceKey": "Win32Program.RunAsAccountOptions.system",
|
||||
"value": "system"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "Win32Program.RunAsAccountOptions.user",
|
||||
"value": "user"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "Win32Program.deviceRestartBehavior",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "deviceRestartBehavior",
|
||||
"dataType": 16,
|
||||
"booleanActions": 0,
|
||||
"category": "Win32Program.selectorLabel",
|
||||
"Options": [
|
||||
{
|
||||
"nameResourceKey": "Win32Program.DeviceRestartBehaviorOptions.basedOnReturnCode",
|
||||
"value": "basedOnReturnCode"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "Win32Program.DeviceRestartBehaviorOptions.allow",
|
||||
"value": "allow"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "Win32Program.DeviceRestartBehaviorOptions.suppress",
|
||||
"value": "suppress"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "Win32Program.DeviceRestartBehaviorOptions.force",
|
||||
"value": "force"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "Win32ReturnCodes.selectorLabel",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "returnCodes",
|
||||
"dataType": 20,
|
||||
"booleanActions": 0,
|
||||
"category": "Win32Program.selectorLabel"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "Win32Requirements.architectures",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "applicableArchitectures",
|
||||
"dataType": 20,
|
||||
"booleanActions": 0,
|
||||
"category": "Win32Requirements.selectorLabel"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "Win32Requirements.minimumOperatingSystem",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "win10Release",
|
||||
"dataType": 20,
|
||||
"booleanActions": 0,
|
||||
"category": "Win32Requirements.selectorLabel"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "Win32Requirements.diskSpace",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "minimumFreeDiskSpaceInMB",
|
||||
"dataType": 20,
|
||||
"booleanActions": 0,
|
||||
"category": "Win32Requirements.selectorLabel"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "Win32Requirements.physicalMemory",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "minimumMemoryInMB",
|
||||
"dataType": 20,
|
||||
"booleanActions": 0,
|
||||
"category": "Win32Requirements.selectorLabel"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "Win32Requirements.minimumLogicalProcessors",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "minimumNumberOfProcessors",
|
||||
"dataType": 20,
|
||||
"booleanActions": 0,
|
||||
"category": "Win32Requirements.selectorLabel"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "Win32Requirements.minimumCpuSpeed",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "minimumCpuSpeedInMHz",
|
||||
"dataType": 20,
|
||||
"booleanActions": 0,
|
||||
"category": "Win32Requirements.selectorLabel"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "Win32Requirements.AdditionalRequirements.label",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "requirementRulesSummary",
|
||||
"dataType": 20,
|
||||
"booleanActions": 0,
|
||||
"category": "Win32Requirements.selectorLabel"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "DetectionRules.rulesFormat",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "detectionRulesType",
|
||||
"dataType": 20,
|
||||
"booleanActions": 0,
|
||||
"category": "DetectionRules.selectorLabel"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "DetectionRules.selectorLabel",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "detectionRulesSummary",
|
||||
"dataType": 20,
|
||||
"booleanActions": 0,
|
||||
"category": "DetectionRules.selectorLabel",
|
||||
"Condition": {
|
||||
"Expressions": [
|
||||
{
|
||||
"property": "@OData.Type",
|
||||
"value": "#microsoft.graph.win32LobAppPowerShellScriptDetection",
|
||||
"operator": "ne"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "detectionRules",
|
||||
"dataType": 6,
|
||||
"booleanActions": 0,
|
||||
"category": "",
|
||||
"Condition": {
|
||||
"Expressions": [
|
||||
{
|
||||
"property": "@OData.Type",
|
||||
"value": "#microsoft.graph.win32LobAppPowerShellScriptDetection"
|
||||
}
|
||||
]
|
||||
},
|
||||
"complexOptions": [
|
||||
{
|
||||
"nameResourceKey": "DetectionRules.CustomScript.runAs32Bit",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "runAs32Bit",
|
||||
"dataType": 0,
|
||||
"booleanActions": 109,
|
||||
"category": "DetectionRules.selectorLabel"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "DetectionRules.CustomScript.enforceSignatureCheck",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "enforceSignatureCheck",
|
||||
"dataType": 0,
|
||||
"booleanActions": 109,
|
||||
"category": "DetectionRules.selectorLabel"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "dependencyCategory",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "dependencyApps",
|
||||
"dataType": 20,
|
||||
"booleanActions": 0,
|
||||
"category": "SettingDetails.dependencyCategory"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "supersedenceCategory",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "supersededApps",
|
||||
"dataType": 20,
|
||||
"booleanActions": 0,
|
||||
"category": "SettingDetails.supersedenceCategory"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
186
Documentation/ObjectInfo/#AutoPilot.json
Normal file
186
Documentation/ObjectInfo/#AutoPilot.json
Normal file
@@ -0,0 +1,186 @@
|
||||
[
|
||||
{
|
||||
"nameResourceKey": "TableHeaders.configurationType",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "WindowsEnrollment.deploymentProfiles",
|
||||
"dataType": 200,
|
||||
"booleanActions": 0,
|
||||
"category": 1000
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "Autopilot.harvestDeviceId",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "extractHardwareHash",
|
||||
"dataType": 0,
|
||||
"booleanActions": 109,
|
||||
"category": 1000
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "Autopilot.deviceType",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "deviceType",
|
||||
"dataType": 16,
|
||||
"booleanActions": 0,
|
||||
"category": 1000,
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "Platform.windowsPC",
|
||||
"value": "windowsPc"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "Platform.surfaceHub2",
|
||||
"value": "surfaceHub2"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "Platform.holoLens",
|
||||
"value": "holoLens"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "Autopilot.OOBE.title",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "outOfBoxExperienceSettings",
|
||||
"dataType": 6,
|
||||
"booleanActions": 0,
|
||||
"category": "Autopilot.OOBE.title",
|
||||
"complexOptions": [
|
||||
{
|
||||
"nameResourceKey": "Autopilot.OOBE.configureDevice",
|
||||
"descriptionResourceKey": "",
|
||||
"dataType": 16,
|
||||
"category": "Autopilot.OOBE.title",
|
||||
"entityKey": "deviceUsageType",
|
||||
"booleanActions": 0,
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "Autopilot.OOBE.endUserDevice",
|
||||
"value": "singleUser"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "Autopilot.OOBE.plugAndForgetDevice",
|
||||
"value": "shared"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "Autopilot.directoryServiceLabel",
|
||||
"descriptionResourceKey": "",
|
||||
"dataType": 101,
|
||||
"category": "Autopilot.OOBE.title",
|
||||
"value": "Autopilot.DirectoryService.azureAD"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "Autopilot.OOBE.HybridAzureADSkipConnectivityCheck.label",
|
||||
"descriptionResourceKey": "Autopilot.OOBE.HybridAzureADSkipConnectivityCheck.infoBalloon",
|
||||
"dataType": 0,
|
||||
"category": "Autopilot.OOBE.title",
|
||||
"entityKey": "hybridAzureADJoinSkipConnectivityCheck",
|
||||
"booleanActions": 109,
|
||||
"Condition": {
|
||||
"type": "or",
|
||||
"Expressions": [
|
||||
{
|
||||
"property": "@OData.Type",
|
||||
"value": "#microsoft.graph.activeDirectoryWindowsAutopilotDeploymentProfile"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "Autopilot.OOBE.language",
|
||||
"descriptionResourceKey": "",
|
||||
"dataType": 102,
|
||||
"category": "Autopilot.OOBE.title",
|
||||
"entityKey": "language",
|
||||
"booleanActions": 0
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "Autopilot.OOBE.title",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "outOfBoxExperienceSettings",
|
||||
"dataType": 6,
|
||||
"booleanActions": 0,
|
||||
"category": "Autopilot.OOBE.title",
|
||||
"complexOptions": [
|
||||
{
|
||||
"nameResourceKey": "Autopilot.OOBE.skipKeyboardSelection",
|
||||
"descriptionResourceKey": "Autopilot.OOBE.skipKeyboardSelectionInfo",
|
||||
"entityKey": "skipKeyboardSelectionPage",
|
||||
"dataType": 0,
|
||||
"booleanActions": 109,
|
||||
"category": "Autopilot.OOBE.title"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "Autopilot.OOBE.licenseAgreement",
|
||||
"descriptionResourceKey": "Autopilot.OOBE.licenseAgreementInfo",
|
||||
"entityKey": "hideEULA",
|
||||
"dataType": 0,
|
||||
"booleanActions": 108,
|
||||
"category": "Autopilot.OOBE.title"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "Autopilot.OOBE.privacySettings",
|
||||
"descriptionResourceKey": "Autopilot.OOBE.privacySettingsInfo",
|
||||
"entityKey": "hidePrivacySettings",
|
||||
"dataType": 0,
|
||||
"booleanActions": 108,
|
||||
"category": "Autopilot.OOBE.title"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "Autopilot.OOBE.hideEscapeLink",
|
||||
"descriptionResourceKey": "Autopilot.OOBE.hideEscapeLinkInfo",
|
||||
"entityKey": "hideEscapeLink",
|
||||
"dataType": 0,
|
||||
"booleanActions": 108,
|
||||
"category": "Autopilot.OOBE.title"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "Autopilot.OOBE.accountType",
|
||||
"descriptionResourceKey": "Autopilot.OOBE.accountTypeInfo",
|
||||
"dataType": 16,
|
||||
"category": "Autopilot.OOBE.title",
|
||||
"entityKey": "userType",
|
||||
"booleanActions": 0,
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "standard",
|
||||
"value": "standard"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "admin",
|
||||
"value": "administrator"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "Autopilot.OOBE.EnableWhiteGlove.label",
|
||||
"descriptionResourceKey": "Autopilot.OOBE.EnableWhiteGlove.infoBalloon",
|
||||
"entityKey": "enableWhiteGlove",
|
||||
"dataType": 0,
|
||||
"booleanActions": 109,
|
||||
"category": "Autopilot.OOBE.title"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "Autopilot.OOBE.ApplyComputerNameTemplate.label",
|
||||
"descriptionResourceKey": "Autopilot.OOBE.ApplyComputerNameTemplate.infoBalloon",
|
||||
"entityKey": "applyDeviceNameTemplate",
|
||||
"dataType": 103,
|
||||
"booleanActions": 109,
|
||||
"category": "Autopilot.OOBE.title",
|
||||
"ChildSettings": [
|
||||
{
|
||||
"nameResourceKey": "Inputs.nameHint",
|
||||
"descriptionResourceKey": "",
|
||||
"dataType": 20,
|
||||
"category": "Autopilot.OOBE.title",
|
||||
"entityKey": "deviceNameTemplate",
|
||||
"booleanActions": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
@@ -0,0 +1,613 @@
|
||||
[
|
||||
{
|
||||
"nameResourceKey": "TableHeaders.policyType",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "SettingDetails.appProtectionPolicy",
|
||||
"dataType": 200,
|
||||
"booleanActions": 0,
|
||||
"category": 1000
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "SettingDetails.platformSupported",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "AppProtection.androidPlatformLabel",
|
||||
"dataType": 200,
|
||||
"booleanActions": 0,
|
||||
"category": 1000
|
||||
},
|
||||
{
|
||||
"entityKey": "targetedAppManagementLevels",
|
||||
"nameResourceKey": "managementType",
|
||||
"descriptionResourceKey": "",
|
||||
"dataType": 13,
|
||||
"category": "SettingDetails.Apps",
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "AppProtection.allAppTypes",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "unspecified"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "AppProtection.appsOnUnmanagedDevices",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "unmanaged"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "AppProtection.appsOnIntuneManagedDevices",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "mdm"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "AppProtection.appsInAndroidWorkProfile",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "androidEnterprise"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "publicApps",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "apps",
|
||||
"dataType": 21,
|
||||
"category": "SettingDetails.Apps"
|
||||
},
|
||||
|
||||
|
||||
{
|
||||
"dataType": 8,
|
||||
"nameResourceKey": "dataTransfer"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "TAPSettings.AndroidBackup.label",
|
||||
"descriptionResourceKey": "TAPSettings.AndroidBackup.tooltip",
|
||||
"entityKey": "dataBackupBlocked",
|
||||
"dataType": 0,
|
||||
"booleanActions": 100,
|
||||
"category": "SettingDetails.dataProtection"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "TAPSettings.SendData.label",
|
||||
"descriptionResourceKey": "TAPSettings.SendData.tooltip",
|
||||
"entityKey": "allowedOutboundDataTransferDestinations",
|
||||
"dataType": 16,
|
||||
"booleanActions": 0,
|
||||
"category": "SettingDetails.dataProtection",
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "policyManagedAppsOptionText",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "managedApps"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "allAppsOptionText",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "allApps"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "noneOptionText",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "none"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "selectExemptApps",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "exemptedAppPackages",
|
||||
"dataType": 21,
|
||||
"category": "SettingDetails.dataProtection",
|
||||
"Columns": [
|
||||
{
|
||||
"metadata": {
|
||||
"entityKey": "Name"
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"entityKey": "Value"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "TAPSettings.SaveData.label",
|
||||
"descriptionResourceKey": "TAPSettings.SaveData.tooltip",
|
||||
"entityKey": "saveAsBlocked",
|
||||
"dataType": 0,
|
||||
"booleanActions": 100,
|
||||
"category": "SettingDetails.dataProtection"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "TAPSettings.SaveDataToSelected.label",
|
||||
"descriptionResourceKey": "TAPSettings.SaveDataToSelected.tooltip",
|
||||
"entityKey": "allowedDataStorageLocations",
|
||||
"dataType": 13,
|
||||
"booleanActions": 0,
|
||||
"category": "SettingDetails.dataProtection",
|
||||
"options": [
|
||||
{
|
||||
"nameResource": "OneDrive for Business",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "oneDriveForBusiness"
|
||||
},
|
||||
{
|
||||
"nameResource": "SharePoint",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "sharePoint"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "localStorage",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "localStorage"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "TAPSettings.DialerRestrictionLevel.label",
|
||||
"descriptionResourceKey": "TAPSettings.DialerRestrictionLevel.tooltip",
|
||||
"entityKey": "dialerRestrictionLevel",
|
||||
"dataType": 16,
|
||||
"booleanActions": 0,
|
||||
"category": "SettingDetails.dataProtection",
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "anyDialerAppOptionText",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "allApps"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "anyPolicyManagedDialerAppOptionText",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "managedApps"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "customDialerAppOptionText",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "customApp"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "noneDialerAppOptionText",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "blocked"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "TAPSettings.CustomDialerAppPackageId.label",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "customDialerAppPackageId",
|
||||
"dataType": 20,
|
||||
"booleanActions": 0,
|
||||
"category": "SettingDetails.dataProtection"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "TAPSettings.CustomDialerAppDisplayName.label",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "customDialerAppDisplayName",
|
||||
"dataType": 20,
|
||||
"booleanActions": 0,
|
||||
"category": "SettingDetails.dataProtection"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "TAPSettings.ReceiveData.label",
|
||||
"descriptionResourceKey": "TAPSettings.ReceiveData.tooltip",
|
||||
"entityKey": "allowedInboundDataTransferSources",
|
||||
"dataType": 16,
|
||||
"booleanActions": 0,
|
||||
"category": "SettingDetails.dataProtection",
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "allAppsOptionText",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "allApps"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "policyManagedAppsOptionText",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "managedApps"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "none",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "none"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "TAPSettings.BlockDataIngestionIntoOrganizationDocuments.label",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "blockDataIngestionIntoOrganizationDocuments",
|
||||
"dataType": 0,
|
||||
"booleanActions": 100,
|
||||
"category": "SettingDetails.dataProtection",
|
||||
"childSettings": [
|
||||
|
||||
]
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "TAPSettings.AllowedDataIngestionLocations.label",
|
||||
"descriptionResourceKey": "TAPSettings.AllowedDataIngestionLocations.tooltip",
|
||||
"entityKey": "allowedDataIngestionLocations",
|
||||
"dataType": 13,
|
||||
"booleanActions": 0,
|
||||
"category": "SettingDetails.dataProtection",
|
||||
"options": [
|
||||
{
|
||||
"nameResource": "OneDrive for Business",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "oneDriveForBusiness"
|
||||
},
|
||||
{
|
||||
"nameResource": "SharePoint",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "sharePoint"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "camera",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "camera"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "TAPSettings.Cutcopypaste.label",
|
||||
"descriptionResourceKey": "TAPSettings.Cutcopypaste.tooltip",
|
||||
"entityKey": "allowedOutboundClipboardSharingLevel",
|
||||
"dataType": 16,
|
||||
"booleanActions": 0,
|
||||
"category": "SettingDetails.dataProtection",
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "anyAppOptionText",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "allApps"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "policyManagedAppsOptionText",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "managedApps"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "policyManagedAppsWithPasteInOptionText",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "managedAppsWithPasteIn"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "blockedOptionText",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "blocked"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "cCPExceptionLabel",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "allowedOutboundClipboardSharingExceptionLength",
|
||||
"dataType": 14,
|
||||
"category": "SettingDetails.dataProtection"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "TAPSettings.ScreenCaptureAndAndroidAssistant.label",
|
||||
"descriptionResourceKey": "TAPSettings.ScreenCaptureAndAndroidAssistant.tooltip",
|
||||
"entityKey": "screenCaptureBlocked",
|
||||
"dataType": 0,
|
||||
"booleanActions": 100,
|
||||
"category": "SettingDetails.dataProtection",
|
||||
"childSettings": [
|
||||
|
||||
]
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "TAPSettings.RestrictKeyboards.label",
|
||||
"descriptionResourceKey": "TAPSettings.RestrictKeyboards.tooltip",
|
||||
"entityKey": "keyboardsRestricted",
|
||||
"dataType": 0,
|
||||
"booleanActions": 101,
|
||||
"category": "SettingDetails.dataProtection",
|
||||
"childSettings": [
|
||||
|
||||
]
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "TAPSettings.RestrictKeyboards.select",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "approvedKeyboards",
|
||||
"dataType": 21,
|
||||
"category": "SettingDetails.dataProtection",
|
||||
"Columns": [
|
||||
{
|
||||
"metadata": {
|
||||
"entityKey": "value"
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"entityKey": "name"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"dataType": 8,
|
||||
"nameResourceKey": "encryption"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "TAPSettings.EncryptData.label",
|
||||
"descriptionResourceKey": "TAPSettings.EncryptData.tooltip",
|
||||
"entityKey": "encryptAppData",
|
||||
"dataType": 0,
|
||||
"booleanActions": 101,
|
||||
"category": "SettingDetails.dataProtection",
|
||||
"childSettings": [
|
||||
|
||||
]
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "TAPSettings.EncryptDataOnEnrolledDevices.label",
|
||||
"descriptionResourceKey": "TAPSettings.EncryptDataOnEnrolledDevices.tooltip",
|
||||
"entityKey": "disableAppEncryptionIfDeviceEncryptionIsEnabled",
|
||||
"dataType": 0,
|
||||
"booleanActions": 201,
|
||||
"category": "SettingDetails.dataProtection",
|
||||
"childSettings": [
|
||||
|
||||
]
|
||||
},
|
||||
{
|
||||
"dataType": 8,
|
||||
"nameResourceKey": "functionality"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "TAPSettings.SyncContacts.label",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "contactSyncBlocked",
|
||||
"dataType": 0,
|
||||
"booleanActions": 100,
|
||||
"category": "SettingDetails.dataProtection",
|
||||
"childSettings": [
|
||||
|
||||
]
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "TAPSettings.Printing.label",
|
||||
"descriptionResourceKey": "TAPSettings.Printing.tooltip",
|
||||
"entityKey": "printBlocked",
|
||||
"dataType": 0,
|
||||
"booleanActions": 100,
|
||||
"category": "SettingDetails.dataProtection",
|
||||
"childSettings": [
|
||||
|
||||
]
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "TAPSettings.OpenLinksManagedBrowser.label",
|
||||
"descriptionResourceKey": "TAPSettings.OpenLinksManagedBrowser.tooltip",
|
||||
"entityKey": "managedBrowserSelection",
|
||||
"dataType": 16,
|
||||
"booleanActions": 0,
|
||||
"category": "SettingDetails.dataProtection",
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "anyAppOptionText",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "notConfigured"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "microsoftEdge",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "microsoftEdge"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "unmanagedBrowserOptionText",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "unmanagedBrowser"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "TAPSettings.CustomBrowserPackageId.label",
|
||||
"descriptionResourceKey": "TAPSettings.CustomBrowserPackageId.tooltip",
|
||||
"entityKey": "customBrowserPackageId",
|
||||
"dataType": 20,
|
||||
"booleanActions": 0,
|
||||
"category": "SettingDetails.dataProtection"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "TAPSettings.CustomBrowserDisplayName.label",
|
||||
"descriptionResourceKey": "TAPSettings.CustomBrowserDisplayName.tooltip",
|
||||
"entityKey": "customBrowserDisplayName",
|
||||
"dataType": 20,
|
||||
"booleanActions": 0,
|
||||
"category": "SettingDetails.dataProtection"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "TAPSettings.NotificationRestriction.label",
|
||||
"descriptionResourceKey": "TAPSettings.NotificationRestriction.tooltip",
|
||||
"entityKey": "notificationRestriction",
|
||||
"dataType": 16,
|
||||
"booleanActions": 0,
|
||||
"category": "SettingDetails.dataProtection",
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "allowOption",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "allow"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "blockOrgDataOptionText",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "blockOrganizationalData"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "blockOption",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "block"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"dataType": 8,
|
||||
"nameResourceKey": "empty"
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
{
|
||||
"nameResourceKey": "TAPSettings.PinAccess.label",
|
||||
"descriptionResourceKey": "TAPSettings.PinAccess.tooltip",
|
||||
"entityKey": "pinRequired",
|
||||
"dataType": 0,
|
||||
"booleanActions": 101,
|
||||
"category": "SettingDetails.accessRequirements"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "TAPSettings.PinType.label",
|
||||
"descriptionResourceKey": "TAPSettings.PinType.tooltip",
|
||||
"entityKey": "pinCharacterSet",
|
||||
"dataType": 16,
|
||||
"booleanActions": 0,
|
||||
"category": "SettingDetails.accessRequirements",
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "numericOption",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "numeric"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "alphanumericOption",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "alphanumericAndSymbol"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "TAPSettings.SimplePin.label",
|
||||
"descriptionResourceKey": "TAPSettings.SimplePin.tooltip",
|
||||
"entityKey": "simplePinBlocked",
|
||||
"dataType": 0,
|
||||
"booleanActions": 100,
|
||||
"category": "SettingDetails.accessRequirements"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "TAPSettings.PinLength.label",
|
||||
"descriptionResourceKey": "TAPSettings.PinLength.tooltip",
|
||||
"entityKey": "minimumPinLength",
|
||||
"dataType": 14,
|
||||
"booleanActions": 0,
|
||||
"category": "SettingDetails.accessRequirements"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "TAPSettings.AndroidFingerprint.label",
|
||||
"descriptionResourceKey": "TAPSettings.AndroidFingerprint.tooltip",
|
||||
"entityKey": "fingerprintBlocked",
|
||||
"dataType": 0,
|
||||
"booleanActions": 100,
|
||||
"category": "SettingDetails.accessRequirements"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "TAPSettings.AndroidOverrideFingerprint.label",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "overrideFingerprint",
|
||||
"dataType": 0,
|
||||
"booleanActions": 101,
|
||||
"category": "SettingDetails.accessRequirements",
|
||||
"childSettings": [
|
||||
|
||||
]
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "TAPSettings.Timeout.label",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "pinRequiredInsteadOfBiometricTimeout",
|
||||
"dataType": 100,
|
||||
"booleanActions": 0,
|
||||
"category": "SettingDetails.accessRequirements"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "TAPSettings.AndroidBiometricAuthentication.label",
|
||||
"descriptionResourceKey": "TAPSettings.AndroidBiometricAuthentication.tooltip",
|
||||
"entityKey": "biometricAuthenticationBlocked",
|
||||
"dataType": 0,
|
||||
"booleanActions": 100,
|
||||
"category": "SettingDetails.accessRequirements"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "TAPSettings.Tap.pinResetAfterNumberOfDays",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "pinReset",
|
||||
"dataType": 0,
|
||||
"booleanActions": 109,
|
||||
"category": "SettingDetails.accessRequirements"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "TAPSettings.Tap.numberOfDays",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "pinRequiredInsteadOfBiometricTimeout",
|
||||
"dataType": 100,
|
||||
"booleanActions": 0,
|
||||
"category": "SettingDetails.accessRequirements"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "TAPSettings.Tap.previousPinBlockCount",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "previousPinBlockCount",
|
||||
"dataType": 14,
|
||||
"booleanActions": 0,
|
||||
"category": "SettingDetails.accessRequirements"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "TAPSettings.AppPIN.label",
|
||||
"descriptionResourceKey": "TAPSettings.AppPIN.tooltip",
|
||||
"entityKey": "disableAppPinIfDevicePinIsSet",
|
||||
"dataType": 0,
|
||||
"booleanActions": 201,
|
||||
"category": "SettingDetails.accessRequirements"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "TAPSettings.CredentialsForAccess.label",
|
||||
"descriptionResourceKey": "TAPSettings.CredentialsForAccess.tooltip",
|
||||
"entityKey": "organizationalCredentialsRequired",
|
||||
"dataType": 0,
|
||||
"booleanActions": 101,
|
||||
"category": "SettingDetails.accessRequirements"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "TAPSettings.RecheckAccessAfter.label",
|
||||
"descriptionResourceKey": "TAPSettings.RecheckAccessAfter.tooltip",
|
||||
"entityKey": "periodOnlineBeforeAccessCheck",
|
||||
"dataType": 100,
|
||||
"booleanActions": 0,
|
||||
"category": "SettingDetails.accessRequirements"
|
||||
},
|
||||
|
||||
{
|
||||
"dataType": 8,
|
||||
"nameResourceKey": ""
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "SettingDetails.conditionalLaunch",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "ConditionalLaunchSettings",
|
||||
"dataType": 21,
|
||||
"category": "SettingDetails.conditionalLaunch",
|
||||
"Columns": [
|
||||
{
|
||||
"metadata": {
|
||||
"entityKey": "Setting"
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"entityKey": "Value"
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"entityKey": "Action"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
]
|
||||
@@ -0,0 +1,54 @@
|
||||
[
|
||||
{
|
||||
"nameResourceKey": "TableHeaders.configurationType",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "WindowsManagement.powerShellScriptObjectName",
|
||||
"dataType": 200,
|
||||
"booleanActions": 0,
|
||||
"category": 1000
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WindowsManagement.powerShellScriptObjectName",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "fileName",
|
||||
"dataType": 20,
|
||||
"booleanActions": 0,
|
||||
"category": "WindowsManagement.scriptsettingsTabHeader"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WindowsManagement.scriptContextLabel",
|
||||
"descriptionResourceKey": "WindowsManagement.scriptContextInfoBalloonContent",
|
||||
"entityKey": "runAsAccount",
|
||||
"dataType": 16,
|
||||
"booleanActions": 0,
|
||||
"category": "WindowsManagement.scriptsettingsTabHeader",
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "no",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "system"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "yes",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "user"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WindowsManagement.enforceSignatureCheckLabel",
|
||||
"descriptionResourceKey": "WindowsManagement.enforceSignatureCheckInfoBalloonContent",
|
||||
"entityKey": "enforceSignatureCheck",
|
||||
"dataType": 0,
|
||||
"booleanActions": 109,
|
||||
"category": "WindowsManagement.scriptsettingsTabHeader"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WindowsManagement.runAs64BitLabel",
|
||||
"descriptionResourceKey": "WindowsManagement.runAs64BitInfoBalloonContent",
|
||||
"entityKey": "enforceSignatureCheck",
|
||||
"dataType": 0,
|
||||
"booleanActions": 109,
|
||||
"category": "WindowsManagement.scriptsettingsTabHeader"
|
||||
}
|
||||
]
|
||||
121
Documentation/ObjectInfo/#microsoft.graph.deviceShellScript.json
Normal file
121
Documentation/ObjectInfo/#microsoft.graph.deviceShellScript.json
Normal file
@@ -0,0 +1,121 @@
|
||||
[
|
||||
{
|
||||
"nameResourceKey": "TableHeaders.configurationType",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "WindowsManagement.shellScriptObjectName",
|
||||
"dataType": 200,
|
||||
"booleanActions": 0,
|
||||
"category": 1000
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WindowsManagement.shellScriptObjectName",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "fileName",
|
||||
"dataType": 20,
|
||||
"booleanActions": 0,
|
||||
"category": "WindowsManagement.scriptsettingsTabHeader"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WindowsManagement.scriptContextLabel",
|
||||
"descriptionResourceKey": "WindowsManagement.scriptContextInfoBalloonContent",
|
||||
"entityKey": "runAsAccount",
|
||||
"dataType": 16,
|
||||
"booleanActions": 0,
|
||||
"category": "WindowsManagement.scriptsettingsTabHeader",
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "no",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "system"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "yes",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "user"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WindowsManagement.Mac.blockNotifications",
|
||||
"descriptionResourceKey": "WindowsManagement.Mac.blockNotificationToolTip.toolTip",
|
||||
"entityKey": "blockExecutionNotifications",
|
||||
"dataType": 0,
|
||||
"booleanActions": 109,
|
||||
"category": "WindowsManagement.scriptsettingsTabHeader"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WindowsManagement.Mac.executionFrequency",
|
||||
"descriptionResourceKey": "WindowsManagement.Mac.executionFrequencyToolTip.toolTip",
|
||||
"entityKey": "executionFrequency",
|
||||
"dataType": 16,
|
||||
"booleanActions": 0,
|
||||
"category": "WindowsManagement.scriptsettingsTabHeader",
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "WindowsManagement.PolicyFrequency.days1",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "PT1D"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WindowsManagement.PolicyFrequency.hours1",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "PT1H"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WindowsManagement.PolicyFrequency.hours12",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "PT12H"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WindowsManagement.PolicyFrequency.hours2",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "PT2H"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WindowsManagement.PolicyFrequency.hours3",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "PT3H"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WindowsManagement.PolicyFrequency.hours6",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "PT6H"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WindowsManagement.PolicyFrequency.minutes15",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "PT15M"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WindowsManagement.PolicyFrequency.minutes30",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "PT30M"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WindowsManagement.Mac.scriptRetry",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "retryCount",
|
||||
"dataType": 16,
|
||||
"booleanActions": 0,
|
||||
"category": "WindowsManagement.scriptsettingsTabHeader",
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "WindowsManagement.PolicyRetry.times1",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "1"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WindowsManagement.PolicyRetry.times2",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "2"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WindowsManagement.PolicyRetry.times3",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "3"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
@@ -0,0 +1,558 @@
|
||||
[
|
||||
{
|
||||
"nameResourceKey": "TableHeaders.policyType",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "SettingDetails.appProtectionPolicy",
|
||||
"dataType": 200,
|
||||
"booleanActions": 0,
|
||||
"category": 1000
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "SettingDetails.platformSupported",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "AppProtection.iOSPlatformLabel",
|
||||
"dataType": 200,
|
||||
"booleanActions": 0,
|
||||
"category": 1000
|
||||
},
|
||||
{
|
||||
"entityKey": "targetedAppManagementLevels",
|
||||
"nameResourceKey": "managementType",
|
||||
"descriptionResourceKey": "",
|
||||
"dataType": 13,
|
||||
"category": "SettingDetails.Apps",
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "AppProtection.allAppTypes",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "unspecified"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "AppProtection.appsOnUnmanagedDevices",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "unmanaged"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "AppProtection.appsOnIntuneManagedDevices",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "mdm"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "AppProtection.appsInAndroidWorkProfile",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "androidEnterprise"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "publicApps",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "apps",
|
||||
"dataType": 21,
|
||||
"category": "SettingDetails.Apps"
|
||||
},
|
||||
|
||||
|
||||
{
|
||||
"dataType": 8,
|
||||
"nameResourceKey": "dataTransfer"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "TAPSettings.IOSBackup.label",
|
||||
"descriptionResourceKey": "TAPSettings.IOSBackup.tooltip",
|
||||
"entityKey": "dataBackupBlocked",
|
||||
"dataType": 0,
|
||||
"booleanActions": 100,
|
||||
"category": "SettingDetails.dataProtection"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "TAPSettings.SendData.label",
|
||||
"descriptionResourceKey": "TAPSettings.SendData.tooltip",
|
||||
"entityKey": "sendDataSelector",
|
||||
"dataType": 16,
|
||||
"booleanActions": 0,
|
||||
"category": "SettingDetails.dataProtection",
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "policyManagedAppsOptionText",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "managedApps"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "allAppsOptionText",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "allApps"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "noneOptionText",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "none"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "managedAppsWithOpenInSharing",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "managedAppsWithOpenInSharing"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "managedAppsWithOSSharing",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "managedAppsWithOSSharing"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "selectExemptApps",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "exemptedAppProtocols",
|
||||
"dataType": 21,
|
||||
"category": "SettingDetails.dataProtection",
|
||||
"Columns": [
|
||||
{
|
||||
"metadata": {
|
||||
"entityKey": "Name"
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"entityKey": "Value"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "TAPSettings.SaveData.label",
|
||||
"descriptionResourceKey": "TAPSettings.SaveData.tooltip",
|
||||
"entityKey": "saveAsBlocked",
|
||||
"dataType": 0,
|
||||
"booleanActions": 100,
|
||||
"category": "SettingDetails.dataProtection"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "TAPSettings.SaveDataToSelected.label",
|
||||
"descriptionResourceKey": "TAPSettings.SaveDataToSelected.tooltip",
|
||||
"entityKey": "allowedDataStorageLocations",
|
||||
"dataType": 13,
|
||||
"booleanActions": 0,
|
||||
"category": "SettingDetails.dataProtection",
|
||||
"options": [
|
||||
{
|
||||
"nameResource": "OneDrive for Business",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "oneDriveForBusiness"
|
||||
},
|
||||
{
|
||||
"nameResource": "SharePoint",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "sharePoint"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "localStorage",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "localStorage"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "TAPSettings.DialerRestrictionLevel.label",
|
||||
"descriptionResourceKey": "TAPSettings.DialerRestrictionLevel.tooltip",
|
||||
"entityKey": "dialerRestrictionLevel",
|
||||
"dataType": 16,
|
||||
"booleanActions": 0,
|
||||
"category": "SettingDetails.dataProtection",
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "anyDialerAppOptionText",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "allApps"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "anyPolicyManagedDialerAppOptionText",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "managedApps"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "customDialerAppOptionText",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "customApp"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "noneDialerAppOptionText",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "blocked"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "TAPSettings.CustomDialerAppProtocol.label",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "customDialerAppProtocol",
|
||||
"dataType": 20,
|
||||
"booleanActions": 0,
|
||||
"category": "SettingDetails.dataProtection"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "TAPSettings.ReceiveData.label",
|
||||
"descriptionResourceKey": "TAPSettings.ReceiveData.tooltip",
|
||||
"entityKey": "allowedInboundDataTransferSources",
|
||||
"dataType": 16,
|
||||
"booleanActions": 0,
|
||||
"category": "SettingDetails.dataProtection",
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "allAppsOptionText",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "allApps"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "policyManagedAppsOptionText",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "managedApps"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "none",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "none"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "TAPSettings.BlockDataIngestionIntoOrganizationDocuments.label",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "blockDataIngestionIntoOrganizationDocuments",
|
||||
"dataType": 0,
|
||||
"booleanActions": 100,
|
||||
"category": "SettingDetails.dataProtection",
|
||||
"childSettings": [
|
||||
|
||||
]
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "TAPSettings.AllowedDataIngestionLocations.label",
|
||||
"descriptionResourceKey": "TAPSettings.AllowedDataIngestionLocations.tooltip",
|
||||
"entityKey": "allowedDataIngestionLocations",
|
||||
"dataType": 13,
|
||||
"booleanActions": 0,
|
||||
"category": "SettingDetails.dataProtection",
|
||||
"options": [
|
||||
{
|
||||
"nameResource": "OneDrive for Business",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "oneDriveForBusiness"
|
||||
},
|
||||
{
|
||||
"nameResource": "SharePoint",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "sharePoint"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "camera",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "camera"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "TAPSettings.Cutcopypaste.label",
|
||||
"descriptionResourceKey": "TAPSettings.Cutcopypaste.tooltip",
|
||||
"entityKey": "allowedOutboundClipboardSharingLevel",
|
||||
"dataType": 16,
|
||||
"booleanActions": 0,
|
||||
"category": "SettingDetails.dataProtection",
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "anyAppOptionText",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "allApps"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "policyManagedAppsOptionText",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "managedApps"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "policyManagedAppsWithPasteInOptionText",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "managedAppsWithPasteIn"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "blockedOptionText",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "blocked"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "cCPExceptionLabel",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "allowedOutboundClipboardSharingExceptionLength",
|
||||
"dataType": 14,
|
||||
"category": "SettingDetails.dataProtection"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "TAPSettings.ThirdPartyKeyboards.label",
|
||||
"descriptionResourceKey": "TAPSettings.ThirdPartyKeyboards.tooltip",
|
||||
"entityKey": "thirdPartyKeyboardsBlocked",
|
||||
"dataType": 0,
|
||||
"booleanActions": 100,
|
||||
"category": "SettingDetails.dataProtection",
|
||||
"childSettings": [
|
||||
|
||||
]
|
||||
},
|
||||
{
|
||||
"dataType": 8,
|
||||
"nameResourceKey": "encryption"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "TAPSettings.EncryptData.label",
|
||||
"descriptionResourceKey": "TAPSettings.EncryptData.tooltip",
|
||||
"entityKey": "appDataEncryptionType",
|
||||
"dataType": 0,
|
||||
"booleanActions": 101,
|
||||
"category": "SettingDetails.dataProtection",
|
||||
"childSettings": [
|
||||
|
||||
]
|
||||
},
|
||||
{
|
||||
"dataType": 8,
|
||||
"nameResourceKey": "functionality"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "TAPSettings.SyncContacts.label",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "contactSyncBlocked",
|
||||
"dataType": 0,
|
||||
"booleanActions": 100,
|
||||
"category": "SettingDetails.dataProtection",
|
||||
"childSettings": [
|
||||
|
||||
]
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "TAPSettings.Printing.label",
|
||||
"descriptionResourceKey": "TAPSettings.Printing.tooltip",
|
||||
"entityKey": "printBlocked",
|
||||
"dataType": 0,
|
||||
"booleanActions": 100,
|
||||
"category": "SettingDetails.dataProtection",
|
||||
"childSettings": [
|
||||
|
||||
]
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "TAPSettings.OpenLinksManagedBrowser.label",
|
||||
"descriptionResourceKey": "TAPSettings.OpenLinksManagedBrowser.tooltip",
|
||||
"entityKey": "managedBrowserSelection",
|
||||
"dataType": 16,
|
||||
"booleanActions": 0,
|
||||
"category": "SettingDetails.dataProtection",
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "anyAppOptionText",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "notConfigured"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "microsoftEdge",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "microsoftEdge"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "unmanagedBrowserOptionText",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "unmanagedBrowser"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "TAPSettings.CustomBrowserProtocol.label",
|
||||
"descriptionResourceKey": "TAPSettings.CustomBrowserProtocol.tooltip",
|
||||
"entityKey": "customBrowserProtocol",
|
||||
"dataType": 20,
|
||||
"booleanActions": 0,
|
||||
"category": "SettingDetails.dataProtection"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "TAPSettings.NotificationRestriction.label",
|
||||
"descriptionResourceKey": "TAPSettings.NotificationRestriction.tooltip",
|
||||
"entityKey": "notificationRestriction",
|
||||
"dataType": 16,
|
||||
"booleanActions": 0,
|
||||
"category": "SettingDetails.dataProtection",
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "allowOption",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "allow"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "blockOrgDataOptionText",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "blockOrganizationalData"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "blockOption",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "block"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"dataType": 8,
|
||||
"nameResourceKey": "empty"
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
{
|
||||
"nameResourceKey": "TAPSettings.PinAccess.label",
|
||||
"descriptionResourceKey": "TAPSettings.PinAccess.tooltip",
|
||||
"entityKey": "pinRequired",
|
||||
"dataType": 0,
|
||||
"booleanActions": 101,
|
||||
"category": "SettingDetails.accessRequirements"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "TAPSettings.PinType.label",
|
||||
"descriptionResourceKey": "TAPSettings.PinType.tooltip",
|
||||
"entityKey": "pinCharacterSet",
|
||||
"dataType": 16,
|
||||
"booleanActions": 0,
|
||||
"category": "SettingDetails.accessRequirements",
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "numericOption",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "numeric"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "alphanumericOption",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "alphanumericAndSymbol"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "TAPSettings.SimplePin.label",
|
||||
"descriptionResourceKey": "TAPSettings.SimplePin.tooltip",
|
||||
"entityKey": "simplePinBlocked",
|
||||
"dataType": 0,
|
||||
"booleanActions": 100,
|
||||
"category": "SettingDetails.accessRequirements"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "TAPSettings.PinLength.label",
|
||||
"descriptionResourceKey": "TAPSettings.PinLength.tooltip",
|
||||
"entityKey": "minimumPinLength",
|
||||
"dataType": 14,
|
||||
"booleanActions": 0,
|
||||
"category": "SettingDetails.accessRequirements"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "TAPSettings.AndroidFingerprint.label",
|
||||
"descriptionResourceKey": "TAPSettings.AndroidFingerprint.tooltip",
|
||||
"entityKey": "fingerprintBlocked",
|
||||
"dataType": 0,
|
||||
"booleanActions": 100,
|
||||
"category": "SettingDetails.accessRequirements"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "TAPSettings.AndroidOverrideFingerprint.label",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "overrideFingerprint",
|
||||
"dataType": 0,
|
||||
"booleanActions": 101,
|
||||
"category": "SettingDetails.accessRequirements",
|
||||
"childSettings": [
|
||||
|
||||
]
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "TAPSettings.Timeout.label",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "pinRequiredInsteadOfBiometricTimeout",
|
||||
"dataType": 100,
|
||||
"booleanActions": 0,
|
||||
"category": "SettingDetails.accessRequirements"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "TAPSettings.IOSFaceID.label",
|
||||
"descriptionResourceKey": "TAPSettings.IOSFaceID.tooltip",
|
||||
"entityKey": "faceIdBlocked",
|
||||
"dataType": 0,
|
||||
"booleanActions": 100,
|
||||
"category": "SettingDetails.accessRequirements"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "TAPSettings.Tap.pinResetAfterNumberOfDays",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "pinReset",
|
||||
"dataType": 0,
|
||||
"booleanActions": 109,
|
||||
"category": "SettingDetails.accessRequirements"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "TAPSettings.Tap.numberOfDays",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "pinRequiredInsteadOfBiometricTimeout",
|
||||
"dataType": 100,
|
||||
"booleanActions": 0,
|
||||
"category": "SettingDetails.accessRequirements"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "TAPSettings.Tap.previousPinBlockCount",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "previousPinBlockCount",
|
||||
"dataType": 14,
|
||||
"booleanActions": 0,
|
||||
"category": "SettingDetails.accessRequirements"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "TAPSettings.CredentialsForAccess.label",
|
||||
"descriptionResourceKey": "TAPSettings.CredentialsForAccess.tooltip",
|
||||
"entityKey": "organizationalCredentialsRequired",
|
||||
"dataType": 0,
|
||||
"booleanActions": 101,
|
||||
"category": "SettingDetails.accessRequirements"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "TAPSettings.RecheckAccessAfter.label",
|
||||
"descriptionResourceKey": "TAPSettings.RecheckAccessAfter.tooltip",
|
||||
"entityKey": "periodOnlineBeforeAccessCheck",
|
||||
"dataType": 100,
|
||||
"booleanActions": 0,
|
||||
"category": "SettingDetails.accessRequirements"
|
||||
},
|
||||
|
||||
|
||||
{
|
||||
"dataType": 8,
|
||||
"nameResourceKey": ""
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "SettingDetails.conditionalLaunch",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "ConditionalLaunchSettings",
|
||||
"dataType": 21,
|
||||
"category": "SettingDetails.conditionalLaunch",
|
||||
"Columns": [
|
||||
{
|
||||
"metadata": {
|
||||
"entityKey": "Setting"
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"entityKey": "Value"
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"entityKey": "Action"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
@@ -0,0 +1,254 @@
|
||||
[
|
||||
{
|
||||
"nameResourceKey": "SoftwareUpdates.IosUpdatePolicy.Settings.IOSVersion.updateToInstall",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "versionInfo",
|
||||
"dataType": 20,
|
||||
"booleanActions": 0,
|
||||
"category": 103
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "SoftwareUpdates.IosUpdatePolicy.Settings.Schedule.label",
|
||||
"descriptionResourceKey": "SoftwareUpdates.IosUpdatePolicy.Settings.Schedule.infoBalloon",
|
||||
"entityKey": "updateScheduleType",
|
||||
"dataType": 16,
|
||||
"booleanActions": 0,
|
||||
"category": 103,
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "SoftwareUpdates.IosUpdatePolicy.Settings.Schedule.outsideActiveHours",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "updateOutsideOfActiveHours"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "SoftwareUpdates.IosUpdatePolicy.Settings.Schedule.always",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "alwaysUpdate"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "SoftwareUpdates.IosUpdatePolicy.Settings.Schedule.duringTimeWindows",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "updateDuringTimeWindows"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "SoftwareUpdates.IosUpdatePolicy.Settings.Schedule.outsideTimeWindows",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "updateOutsideOfTimeWindows"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 103,
|
||||
"nameResourceKey": "timeZoneName",
|
||||
"descriptionResourceKey": "timeZoneDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "utcMinusTwelveOption",
|
||||
"value": -720,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "utcMinusElevenOption",
|
||||
"value": -660,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "utcMinusTenOption",
|
||||
"value": -600,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "utcMinusNineThirtyOption",
|
||||
"value": -570,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "utcMinusNineOption",
|
||||
"value": -540,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "utcMinusEightOption",
|
||||
"value": -480,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "utcMinusSevenOption",
|
||||
"value": -420,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "utcMinusSixOption",
|
||||
"value": -360,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "utcMinusFiveOption",
|
||||
"value": -300,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "utcMinusFourOption",
|
||||
"value": -240,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "utcMinusThreeThirtyOption",
|
||||
"value": -210,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "utcMinusThreeOption",
|
||||
"value": -180,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "utcMinusTwoOption",
|
||||
"value": -120,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "utcMinusOneOption",
|
||||
"value": -60,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "utcZeroOption",
|
||||
"value": 0,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "utcPlusOneOption",
|
||||
"value": 60,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "utcPlusTwoOption",
|
||||
"value": 120,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "utcPlusThreeOption",
|
||||
"value": 180,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "utcPlusThreeThirtyOption",
|
||||
"value": 210,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "utcPlusFourOption",
|
||||
"value": 240,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "utcPlusFourThirtyOption",
|
||||
"value": 270,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "utcPlusFiveOption",
|
||||
"value": 300,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "utcPlusFiveThirtyOption",
|
||||
"value": 330,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "utcPlusFiveFourtyFiveOption",
|
||||
"value": 345,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "utcPlusSixOption",
|
||||
"value": 360,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "utcPlusSixThirtyOption",
|
||||
"value": 390,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "utcPlusSevenOption",
|
||||
"value": 420,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "utcPlusEightOption",
|
||||
"value": 480,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "utcPlusEightThirtyOption",
|
||||
"value": 510,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "utcPlusEightFourtyFiveOption",
|
||||
"value": 525,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "utcPlusNineOption",
|
||||
"value": 540,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "utcPlusTenOption",
|
||||
"value": 600,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "utcPlusTenThirtyOption",
|
||||
"value": 630,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "utcPlusElevenOption",
|
||||
"value": 660,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "utcPlusTwelveOption",
|
||||
"value": 720,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "utcPlusTwelveFourtyFiveOption",
|
||||
"value": 765,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "utcPlusThirteenOption",
|
||||
"value": 780,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "utcPlusFourteenOption",
|
||||
"value": 840,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "utcTimeOffsetInMinutes",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": 0,
|
||||
"policyType": 51,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "timeWindowName",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "timeWidows",
|
||||
"dataType": 20,
|
||||
"booleanActions": 0,
|
||||
"category": 103
|
||||
}
|
||||
]
|
||||
@@ -0,0 +1,375 @@
|
||||
[
|
||||
{
|
||||
"nameResourceKey": "TableHeaders.policyType",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "SettingDetails.appProtectionPolicy",
|
||||
"dataType": 200,
|
||||
"booleanActions": 0,
|
||||
"category": 1000
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "SettingDetails.platformSupported",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "AppProtection.windows10PlatformLabel",
|
||||
"dataType": 200,
|
||||
"booleanActions": 0,
|
||||
"category": 1000
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WipPolicySettings.enrollmentState",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "WipPolicySettings.withEnrollment",
|
||||
"dataType": 200,
|
||||
"booleanActions": 0,
|
||||
"category": 1000
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "wipPolicyProtectedAppsTitle",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "protectedApps",
|
||||
"dataType": 21,
|
||||
"category": "SettingDetails.policyAppsTargetedTitle",
|
||||
"Columns": [
|
||||
{
|
||||
"metadata": {
|
||||
"entityKey": "displayName"
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"entityKey": "productName"
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"entityKey": "publisherName"
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"entityKey": "denied"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "wipPolicyExemptAppsTitle",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "exemptAppLockerFiles",
|
||||
"dataType": 21,
|
||||
"category": "SettingDetails.policyAppsTargetedTitle",
|
||||
"Columns": [
|
||||
{
|
||||
"metadata": {
|
||||
"entityKey": "displayName"
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"entityKey": "productName"
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"entityKey": "publisherName"
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"entityKey": "denied"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
{
|
||||
"nameResourceKey": "WipPolicySettings.wipProtectionMode",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "enforcementLevel",
|
||||
"dataType": 16,
|
||||
"booleanActions": 0,
|
||||
"category": "SettingDetails.requiredSettings",
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "offOption",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "noProtection"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "silent",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "encryptAndAuditOnly"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "allowOverrides",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "encryptAuditAndPrompt"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "block",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "encryptAuditAndBlock"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WipPolicySettings.corporateIdentity",
|
||||
"descriptionResourceKey": "wipCorpIdentityTooltip",
|
||||
"entityKey": "enterpriseDomain",
|
||||
"dataType": 20,
|
||||
"booleanActions": 0,
|
||||
"category": "SettingDetails.requiredSettings"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "networkPerimeter",
|
||||
"descriptionResourceKey": "",
|
||||
"dataType": 8,
|
||||
"booleanActions": 0
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WipPolicySettings.protectedDomainNames",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "enterpriseProtectedDomainNames",
|
||||
"dataType": 21,
|
||||
"category": "SettingDetails.advancedSettings",
|
||||
"Columns": [
|
||||
{
|
||||
"metadata": {
|
||||
"entityKey": "displayName"
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"entityKey": "resources"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WipPolicySettings.proxyServers",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "enterpriseProxyServers",
|
||||
"dataType": 21,
|
||||
"category": "SettingDetails.advancedSettings",
|
||||
"Columns": [
|
||||
{
|
||||
"metadata": {
|
||||
"entityKey": "displayName"
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"entityKey": "resources"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WipPolicySettings.internalProxyServers",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "enterpriseInternalProxyServers",
|
||||
"dataType": 21,
|
||||
"category": "SettingDetails.advancedSettings",
|
||||
"Columns": [
|
||||
{
|
||||
"metadata": {
|
||||
"entityKey": "displayName"
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"entityKey": "resources"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WipPolicySettings.iPv4Ranges",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "enterpriseIPRanges",
|
||||
"dataType": 21,
|
||||
"category": "SettingDetails.advancedSettings",
|
||||
"Columns": [
|
||||
{
|
||||
"metadata": {
|
||||
"entityKey": "displayName"
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"entityKey": "ranges"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WipPolicySettings.networkDomainNames",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "enterpriseNetworkDomainNames",
|
||||
"dataType": 21,
|
||||
"category": "SettingDetails.advancedSettings",
|
||||
"Columns": [
|
||||
{
|
||||
"metadata": {
|
||||
"entityKey": "displayName"
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"entityKey": "resources"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WipPolicySettings.neutralResources",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "neutralDomainResources",
|
||||
"dataType": 21,
|
||||
"category": "SettingDetails.advancedSettings",
|
||||
"Columns": [
|
||||
{
|
||||
"metadata": {
|
||||
"entityKey": "displayName"
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"entityKey": "resources"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WipPolicySettings.cloudResources",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "enterpriseProxiedDomains",
|
||||
"dataType": 21,
|
||||
"category": "SettingDetails.advancedSettings",
|
||||
"Columns": [
|
||||
{
|
||||
"metadata": {
|
||||
"entityKey": "displayName"
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"entityKey": "proxiedDomains"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WipPolicySettings.authoritativeProxyServers",
|
||||
"descriptionResourceKey": "Tooltips.WipPolicySettings.authoritativeProxyServers",
|
||||
"entityKey": "enterpriseProxyServersAreAuthoritative",
|
||||
"dataType": 0,
|
||||
"booleanActions": 120,
|
||||
"category": "SettingDetails.advancedSettings"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WipPolicySettings.authoritativeIpRanges",
|
||||
"descriptionResourceKey": "Tooltips.WipPolicySettings.authoritativeIpRanges",
|
||||
"entityKey": "enterpriseIPRangesAreAuthoritative",
|
||||
"dataType": 0,
|
||||
"booleanActions": 120,
|
||||
"category": "SettingDetails.advancedSettings"
|
||||
},
|
||||
|
||||
{
|
||||
"nameResourceKey": "dataProtection",
|
||||
"descriptionResourceKey": "",
|
||||
"dataType": 8,
|
||||
"booleanActions": 0
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WipPolicySettings.dataRecoveryCert",
|
||||
"descriptionResourceKey": "Tooltips.WipPolicySettings.dataRecoveryCert",
|
||||
"entityKey": "dataRecoveryCertificate",
|
||||
"dataType": 21,
|
||||
"booleanActions": 0,
|
||||
"category": "SettingDetails.advancedSettings",
|
||||
"Columns": [
|
||||
{
|
||||
"metadata": {
|
||||
"entityKey": "description"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WipPolicySettings.protectUnderLock",
|
||||
"descriptionResourceKey": "Tooltips.WipPolicySettings.protectUnderLock",
|
||||
"entityKey": "protectionUnderLockConfigRequired",
|
||||
"dataType": 0,
|
||||
"booleanActions": 120,
|
||||
"category": "SettingDetails.advancedSettings"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WipPolicySettings.revokeOnUnenroll",
|
||||
"descriptionResourceKey": "Tooltips.WipPolicySettings.revokeOnUnenroll",
|
||||
"entityKey": "revokeOnUnenrollDisabled",
|
||||
"dataType": 0,
|
||||
"booleanActions": 220,
|
||||
"category": "SettingDetails.advancedSettings"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WipPolicySettings.revokeOnMdmHandoff",
|
||||
"descriptionResourceKey": "Tooltips.WipPolicySettings.revokeOnMdmHandoff",
|
||||
"entityKey": "revokeOnMdmHandoffDisabled",
|
||||
"dataType": 0,
|
||||
"booleanActions": 220,
|
||||
"category": "SettingDetails.advancedSettings"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WipPolicySettings.showWipIcon",
|
||||
"descriptionResourceKey": "Tooltips.WipPolicySettings.showWipIcon",
|
||||
"entityKey": "iconsVisible",
|
||||
"dataType": 0,
|
||||
"booleanActions": 120,
|
||||
"category": "SettingDetails.advancedSettings"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WipPolicySettings.useRmsForWip",
|
||||
"descriptionResourceKey": "Tooltips.WipPolicySettings.useRmsForWip",
|
||||
"entityKey": "azureRightsManagementServicesAllowed",
|
||||
"dataType": 0,
|
||||
"booleanActions": 120,
|
||||
"category": "SettingDetails.advancedSettings"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WipPolicySettings.rmsTemplateForEdp",
|
||||
"descriptionResourceKey": "Tooltips.WipPolicySettings.rmsTemplateForEdp",
|
||||
"entityKey": "rightsManagementServicesTemplateId",
|
||||
"dataType": 20,
|
||||
"booleanActions": 0,
|
||||
"category": "SettingDetails.advancedSettings"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "wipAllowIndexingTitle",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "indexingEncryptedStoresOrItemsBlocked",
|
||||
"dataType": 0,
|
||||
"booleanActions": 220,
|
||||
"category": "SettingDetails.advancedSettings"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "wipSMBStringListTitle",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "smbAutoEncryptedFileExtensions",
|
||||
"dataType": 21,
|
||||
"category": "SettingDetails.advancedSettings",
|
||||
"Columns": [
|
||||
{
|
||||
"metadata": {
|
||||
"entityKey": "displayName"
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"entityKey": "resources"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
@@ -0,0 +1,102 @@
|
||||
[
|
||||
{
|
||||
"nameResourceKey": "TableHeaders.policyType",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "WindowsEnrollment.enrollmentStatusPage",
|
||||
"dataType": 200,
|
||||
"booleanActions": 0,
|
||||
"category": 1000
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "EnrollmentStatusScreen.progressToggle",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "showInstallationProgress",
|
||||
"dataType": 0,
|
||||
"booleanActions": 109,
|
||||
"category": 103
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "EnrollmentStatusScreen.timeout",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "installProgressTimeoutInMinutes",
|
||||
"dataType": 14,
|
||||
"booleanActions": 0,
|
||||
"category": 103
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "EnrollmentStatusScreen.customMessageToggle",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "showCustomErrorMessage",
|
||||
"dataType": 0,
|
||||
"booleanActions": 109,
|
||||
"category": 103
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "EnrollmentStatusScreen.customMessageTextBox",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "customErrorMessage",
|
||||
"dataType": 20,
|
||||
"booleanActions": 0,
|
||||
"category": 103
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "EnrollmentStatusScreen.collectLogToggle",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "allowLogCollectionOnInstallFailure",
|
||||
"dataType": 0,
|
||||
"booleanActions": 109,
|
||||
"category": 103
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "EnrollmentStatusScreen.enableForAutopilotOnlyToggle",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "trackInstallProgressForAutopilotOnly",
|
||||
"dataType": 0,
|
||||
"booleanActions": 109,
|
||||
"category": 103
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "EnrollmentStatusScreen.blockToggle",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "blockDeviceSetupRetryByUser",
|
||||
"dataType": 16,
|
||||
"booleanActions": 0,
|
||||
"category": 103,
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "SettingDetails.no",
|
||||
"value": "true"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "BooleanActions.yes",
|
||||
"value": "false",
|
||||
"Children": [
|
||||
{
|
||||
"nameResourceKey": "EnrollmentStatusScreen.resetToggle",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "allowDeviceResetOnInstallFailure",
|
||||
"dataType": 0,
|
||||
"booleanActions": 109,
|
||||
"category": 103
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "EnrollmentStatusScreen.allowToUseToggle",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "allowDeviceUseOnInstallFailure",
|
||||
"dataType": 0,
|
||||
"booleanActions": 109,
|
||||
"category": 103
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "EnrollmentStatusScreen.Apps.useSelectedAppsToggleLabel",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "waitForApps",
|
||||
"dataType": 14,
|
||||
"booleanActions": 0,
|
||||
"category": 103
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
@@ -0,0 +1,18 @@
|
||||
[
|
||||
{
|
||||
"nameResourceKey": "TableHeaders.policyType",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "Titles.featureUpdateDeployments",
|
||||
"dataType": 200,
|
||||
"booleanActions": 0,
|
||||
"category": 1000
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WindowsFeatureUpdateProfile.Details.FeatureUpdateVersion.label",
|
||||
"descriptionResourceKey": "WindowsFeatureUpdateProfile.Details.FeatureUpdateVersion.infoballoon",
|
||||
"entityKey": "featureUpdateDisplayName",
|
||||
"dataType": 20,
|
||||
"booleanActions": 0,
|
||||
"category": "WindowsFeatureUpdateProfile.Details.deploymentSettingsTitle"
|
||||
}
|
||||
]
|
||||
@@ -0,0 +1,526 @@
|
||||
[
|
||||
{
|
||||
"nameResourceKey": "TableHeaders.policyType",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "SettingDetails.appProtectionPolicy",
|
||||
"dataType": 200,
|
||||
"booleanActions": 0,
|
||||
"category": 1000
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "SettingDetails.platformSupported",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "AppProtection.windows10PlatformLabel",
|
||||
"dataType": 200,
|
||||
"booleanActions": 0,
|
||||
"category": 1000
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WipPolicySettings.enrollmentState",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "WipPolicySettings.withoutEnrollment",
|
||||
"dataType": 200,
|
||||
"booleanActions": 0,
|
||||
"category": 1000
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "wipPolicyProtectedAppsTitle",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "protectedApps",
|
||||
"dataType": 21,
|
||||
"category": "SettingDetails.policyAppsTargetedTitle",
|
||||
"Columns": [
|
||||
{
|
||||
"metadata": {
|
||||
"entityKey": "displayName"
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"entityKey": "productName"
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"entityKey": "publisherName"
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"entityKey": "denied"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "wipPolicyExemptAppsTitle",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "exemptAppLockerFiles",
|
||||
"dataType": 21,
|
||||
"category": "SettingDetails.policyAppsTargetedTitle",
|
||||
"Columns": [
|
||||
{
|
||||
"metadata": {
|
||||
"entityKey": "displayName"
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"entityKey": "productName"
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"entityKey": "publisherName"
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"entityKey": "denied"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
|
||||
{
|
||||
"nameResourceKey": "WipPolicySettings.wipProtectionMode",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "enforcementLevel",
|
||||
"dataType": 16,
|
||||
"booleanActions": 0,
|
||||
"category": "SettingDetails.requiredSettings",
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "offOption",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "noProtection"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "silent",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "encryptAndAuditOnly"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "allowOverrides",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "encryptAuditAndPrompt"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "block",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "encryptAuditAndBlock"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WipPolicySettings.corporateIdentity",
|
||||
"descriptionResourceKey": "wipCorpIdentityTooltip",
|
||||
"entityKey": "enterpriseDomain",
|
||||
"dataType": 20,
|
||||
"booleanActions": 0,
|
||||
"category": "SettingDetails.requiredSettings"
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
{
|
||||
"nameResourceKey": "networkPerimeter",
|
||||
"descriptionResourceKey": "",
|
||||
"dataType": 8,
|
||||
"booleanActions": 0
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WipPolicySettings.protectedDomainNames",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "enterpriseProtectedDomainNames",
|
||||
"dataType": 21,
|
||||
"category": "SettingDetails.advancedSettings",
|
||||
"Columns": [
|
||||
{
|
||||
"metadata": {
|
||||
"entityKey": "displayName"
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"entityKey": "resources"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WipPolicySettings.proxyServers",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "enterpriseProxyServers",
|
||||
"dataType": 21,
|
||||
"category": "SettingDetails.advancedSettings",
|
||||
"Columns": [
|
||||
{
|
||||
"metadata": {
|
||||
"entityKey": "displayName"
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"entityKey": "resources"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WipPolicySettings.internalProxyServers",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "enterpriseInternalProxyServers",
|
||||
"dataType": 21,
|
||||
"category": "SettingDetails.advancedSettings",
|
||||
"Columns": [
|
||||
{
|
||||
"metadata": {
|
||||
"entityKey": "displayName"
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"entityKey": "resources"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WipPolicySettings.iPv4Ranges",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "enterpriseIPRanges",
|
||||
"dataType": 21,
|
||||
"category": "SettingDetails.advancedSettings",
|
||||
"Columns": [
|
||||
{
|
||||
"metadata": {
|
||||
"entityKey": "displayName"
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"entityKey": "ranges"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WipPolicySettings.networkDomainNames",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "enterpriseNetworkDomainNames",
|
||||
"dataType": 21,
|
||||
"category": "SettingDetails.advancedSettings",
|
||||
"Columns": [
|
||||
{
|
||||
"metadata": {
|
||||
"entityKey": "displayName"
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"entityKey": "resources"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WipPolicySettings.neutralResources",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "neutralDomainResources",
|
||||
"dataType": 21,
|
||||
"category": "SettingDetails.advancedSettings",
|
||||
"Columns": [
|
||||
{
|
||||
"metadata": {
|
||||
"entityKey": "displayName"
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"entityKey": "resources"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WipPolicySettings.cloudResources",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "enterpriseProxiedDomains",
|
||||
"dataType": 21,
|
||||
"category": "SettingDetails.advancedSettings",
|
||||
"Columns": [
|
||||
{
|
||||
"metadata": {
|
||||
"entityKey": "displayName"
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"entityKey": "proxiedDomains"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WipPolicySettings.authoritativeProxyServers",
|
||||
"descriptionResourceKey": "Tooltips.WipPolicySettings.authoritativeProxyServers",
|
||||
"entityKey": "enterpriseProxyServersAreAuthoritative",
|
||||
"dataType": 0,
|
||||
"booleanActions": 120,
|
||||
"category": "SettingDetails.advancedSettings"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WipPolicySettings.authoritativeIpRanges",
|
||||
"descriptionResourceKey": "Tooltips.WipPolicySettings.authoritativeIpRanges",
|
||||
"entityKey": "enterpriseIPRangesAreAuthoritative",
|
||||
"dataType": 0,
|
||||
"booleanActions": 120,
|
||||
"category": "SettingDetails.advancedSettings"
|
||||
},
|
||||
|
||||
{
|
||||
"nameResourceKey": "dataProtection",
|
||||
"descriptionResourceKey": "",
|
||||
"dataType": 8,
|
||||
"booleanActions": 0
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WipPolicySettings.dataRecoveryCert",
|
||||
"descriptionResourceKey": "Tooltips.WipPolicySettings.dataRecoveryCert",
|
||||
"entityKey": "dataRecoveryCertificate",
|
||||
"dataType": 21,
|
||||
"booleanActions": 0,
|
||||
"category": "SettingDetails.advancedSettings",
|
||||
"Columns": [
|
||||
{
|
||||
"metadata": {
|
||||
"entityKey": "description"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WipPolicySettings.protectUnderLock",
|
||||
"descriptionResourceKey": "Tooltips.WipPolicySettings.protectUnderLock",
|
||||
"entityKey": "protectionUnderLockConfigRequired",
|
||||
"dataType": 0,
|
||||
"booleanActions": 120,
|
||||
"category": "SettingDetails.advancedSettings"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WipPolicySettings.revokeOnUnenroll",
|
||||
"descriptionResourceKey": "Tooltips.WipPolicySettings.revokeOnUnenroll",
|
||||
"entityKey": "revokeOnUnenrollDisabled",
|
||||
"dataType": 0,
|
||||
"booleanActions": 220,
|
||||
"category": "SettingDetails.advancedSettings"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WipPolicySettings.revokeOnMdmHandoff",
|
||||
"descriptionResourceKey": "Tooltips.WipPolicySettings.revokeOnMdmHandoff",
|
||||
"entityKey": "revokeOnMdmHandoffDisabled",
|
||||
"dataType": 0,
|
||||
"booleanActions": 220,
|
||||
"category": "SettingDetails.advancedSettings"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WipPolicySettings.showWipIcon",
|
||||
"descriptionResourceKey": "Tooltips.WipPolicySettings.showWipIcon",
|
||||
"entityKey": "iconsVisible",
|
||||
"dataType": 0,
|
||||
"booleanActions": 120,
|
||||
"category": "SettingDetails.advancedSettings"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WipPolicySettings.useRmsForWip",
|
||||
"descriptionResourceKey": "Tooltips.WipPolicySettings.useRmsForWip",
|
||||
"entityKey": "azureRightsManagementServicesAllowed",
|
||||
"dataType": 0,
|
||||
"booleanActions": 120,
|
||||
"category": "SettingDetails.advancedSettings"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WipPolicySettings.rmsTemplateForEdp",
|
||||
"descriptionResourceKey": "Tooltips.WipPolicySettings.rmsTemplateForEdp",
|
||||
"entityKey": "rightsManagementServicesTemplateId",
|
||||
"dataType": 20,
|
||||
"booleanActions": 0,
|
||||
"category": "SettingDetails.advancedSettings"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "wipAllowIndexingTitle",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "indexingEncryptedStoresOrItemsBlocked",
|
||||
"dataType": 0,
|
||||
"booleanActions": 220,
|
||||
"category": "SettingDetails.advancedSettings"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WipPolicySettings.mdmDiscoveryUrl",
|
||||
"descriptionResourceKey": "Tooltips.WipPolicySettings.mdmDiscoveryUrl",
|
||||
"entityKey": "mdmEnrollmentUrl",
|
||||
"dataType": 20,
|
||||
"booleanActions": 0,
|
||||
"category": "SettingDetails.advancedSettings"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "wipSMBStringListTitle",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "smbAutoEncryptedFileExtensions",
|
||||
"dataType": 21,
|
||||
"category": "SettingDetails.advancedSettings",
|
||||
"Columns": [
|
||||
{
|
||||
"metadata": {
|
||||
"entityKey": "displayName"
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"entityKey": "resources"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "timebombLabel",
|
||||
"descriptionResourceKey": "timebombToolTip",
|
||||
"entityKey": "daysWithoutContactBeforeUnenroll",
|
||||
"dataType": 14,
|
||||
"booleanActions": 0,
|
||||
"category": "SettingDetails.advancedSettings"
|
||||
},
|
||||
|
||||
{
|
||||
"nameResourceKey": "access",
|
||||
"descriptionResourceKey": "",
|
||||
"dataType": 8,
|
||||
"booleanActions": 0
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WipPolicySettings.passportForWork",
|
||||
"descriptionResourceKey": "Tooltips.WipPolicySettings.passportForWork1",
|
||||
"entityKey": "windowsHelloForBusinessBlocked",
|
||||
"dataType": 0,
|
||||
"booleanActions": 220,
|
||||
"category": "SettingDetails.advancedSettings"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WipPolicySettings.minimumPinLength",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "pinMinimumLength",
|
||||
"dataType": 14,
|
||||
"booleanActions": 0,
|
||||
"category": "SettingDetails.advancedSettings"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WipPolicySettings.pinUppercaseLetters",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "pinUppercaseLetters",
|
||||
"dataType": 16,
|
||||
"booleanActions": 0,
|
||||
"category": "SettingDetails.advancedSettings",
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "WIPPinRequirements.WipUppercaseCharacterPinRequirements.notAllow",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "notAllow"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WIPPinRequirements.WipUppercaseCharacterPinRequirements.requireAtLeastOne",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "requireAtLeastOne"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WIPPinRequirements.WipUppercaseCharacterPinRequirements.allow",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "allow"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WipPolicySettings.pinLowercaseLetters",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "pinLowercaseLetters",
|
||||
"dataType": 16,
|
||||
"booleanActions": 0,
|
||||
"category": "SettingDetails.advancedSettings",
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "WIPPinRequirements.WipLowercaseCharacterPinRequirements.notAllow",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "notAllow"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WIPPinRequirements.WipLowercaseCharacterPinRequirements.requireAtLeastOne",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "requireAtLeastOne"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WIPPinRequirements.WipLowercaseCharacterPinRequirements.allow",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "allow"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WipPolicySettings.pinSpecialCharacters",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "pinSpecialCharacters",
|
||||
"dataType": 16,
|
||||
"booleanActions": 0,
|
||||
"category": "SettingDetails.advancedSettings",
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "WIPPinRequirements.WipSpecialCharacterPinRequirements.notAllow",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "notAllow"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WIPPinRequirements.WipSpecialCharacterPinRequirements.requireAtLeastOne",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "requireAtLeastOne"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WIPPinRequirements.WipSpecialCharacterPinRequirements.allow",
|
||||
"descriptionResourceKey": "",
|
||||
"value": "allow"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WipPolicySettings.pinExpiration",
|
||||
"descriptionResourceKey": "Tooltips.WipPolicySettings.pinExpiration",
|
||||
"entityKey": "pinExpirationDays",
|
||||
"dataType": 14,
|
||||
"booleanActions": 0,
|
||||
"category": "SettingDetails.advancedSettings"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WipPolicySettings.pinHistory",
|
||||
"descriptionResourceKey": "Tooltips.WipPolicySettings.pinHistory1",
|
||||
"entityKey": "numberOfPastPinsRemembered",
|
||||
"dataType": 14,
|
||||
"booleanActions": 0,
|
||||
"category": "SettingDetails.advancedSettings"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WipPolicySettings.maxPasswordAttempts",
|
||||
"descriptionResourceKey": "Tooltips.WipPolicySettings.maxPasswordAttempts1",
|
||||
"entityKey": "passwordMaximumAttemptCount",
|
||||
"dataType": 14,
|
||||
"booleanActions": 0,
|
||||
"category": "SettingDetails.advancedSettings"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WipPolicySettings.maxInactivityTime",
|
||||
"descriptionResourceKey": "Tooltips.WipPolicySettings.maxInactivityTime1",
|
||||
"entityKey": "minutesOfInactivityBeforeDeviceLock",
|
||||
"dataType": 14,
|
||||
"booleanActions": 0,
|
||||
"category": "SettingDetails.advancedSettings"
|
||||
}
|
||||
]
|
||||
@@ -0,0 +1,50 @@
|
||||
[
|
||||
{
|
||||
"nameResourceKey": "TableHeaders.policyType",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "Titles.windows10QualityUpdate",
|
||||
"dataType": 200,
|
||||
"booleanActions": 0,
|
||||
"category": 1000
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WindowsQualityUpdateProfile.Details.QualityUpdateRelease.label",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "deployableContentDisplayName",
|
||||
"dataType": 20,
|
||||
"booleanActions": 0,
|
||||
"category": 103
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WindowsQualityUpdateProfile.Details.DaysUntilForcedReboot.label",
|
||||
"descriptionResourceKey": "",
|
||||
"entityKey": "expeditedUpdateSettings",
|
||||
"dataType": 6,
|
||||
"booleanActions": 0,
|
||||
"category": 103,
|
||||
"complexOptions": [
|
||||
{
|
||||
"nameResourceKey": "WindowsQualityUpdateProfile.Details.DaysUntilForcedReboot.label",
|
||||
"descriptionResourceKey": "",
|
||||
"dataType": 16,
|
||||
"category": 103,
|
||||
"entityKey": "daysUntilForcedReboot",
|
||||
"booleanActions": 0,
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "WindowsQualityUpdateDaysUntilForcedReboot.zeroDays",
|
||||
"value": "0"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WindowsQualityUpdateDaysUntilForcedReboot.oneDay",
|
||||
"value": "1"
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "WindowsQualityUpdateDaysUntilForcedReboot.twoDays",
|
||||
"value": "2"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
138
Documentation/ObjectInfo/airprint_iosdevicefeatures.json
Normal file
138
Documentation/ObjectInfo/airprint_iosdevicefeatures.json
Normal file
@@ -0,0 +1,138 @@
|
||||
{
|
||||
"airprint_iosdevicefeatures": [
|
||||
{
|
||||
"isSettingDescription": false,
|
||||
"showAsSectionHeader": false,
|
||||
"dataType": 8,
|
||||
"category": 1,
|
||||
"nameResourceKey": "IosDeviceFeaturesAirPrintHeader",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 41,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"isSettingDescription": false,
|
||||
"showAsSectionHeader": true,
|
||||
"dataType": 8,
|
||||
"category": 1,
|
||||
"nameResourceKey": "allEnrollmentTypesHeaderName",
|
||||
"descriptionResourceKey": "allEnrollmentTypesHeaderDescription",
|
||||
"childSettings": [
|
||||
{
|
||||
"columns": [
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 20,
|
||||
"category": 1,
|
||||
"nameResourceKey": "ipAddress",
|
||||
"descriptionResourceKey": "ipAddressDescription",
|
||||
"emptyValueResourceKey": "airPrintIpAddressHint",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "ipAddress",
|
||||
"booleanActions": 0,
|
||||
"policyType": 41,
|
||||
"enabled": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 20,
|
||||
"category": 1,
|
||||
"nameResourceKey": "resourcePath",
|
||||
"descriptionResourceKey": "resourcePathDescription",
|
||||
"emptyValueResourceKey": "airPrintResourcePathHint",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "resourcePath",
|
||||
"booleanActions": 0,
|
||||
"policyType": 41,
|
||||
"enabled": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 14,
|
||||
"category": 1,
|
||||
"nameResourceKey": "airPrintPort",
|
||||
"descriptionResourceKey": "iOSAirPrintPortDescription",
|
||||
"emptyValueResourceKey": "default",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "port",
|
||||
"booleanActions": 0,
|
||||
"policyType": 41,
|
||||
"enabled": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 16,
|
||||
"category": 1,
|
||||
"nameResourceKey": "forceTls",
|
||||
"descriptionResourceKey": "forceTlsDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "enableOption",
|
||||
"value": "true",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "disableOption",
|
||||
"value": "false",
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "forceTls",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "false",
|
||||
"policyType": 41,
|
||||
"enabled": true
|
||||
}
|
||||
}
|
||||
],
|
||||
"dataType": 21,
|
||||
"category": 1,
|
||||
"nameResourceKey": "airPrintTableName",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "airPrintDestinations",
|
||||
"booleanActions": 0,
|
||||
"policyType": 41,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 41,
|
||||
"enabled": true
|
||||
}
|
||||
]
|
||||
}
|
||||
138
Documentation/ObjectInfo/airprint_macdevicefeatures.json
Normal file
138
Documentation/ObjectInfo/airprint_macdevicefeatures.json
Normal file
@@ -0,0 +1,138 @@
|
||||
{
|
||||
"airprint_macdevicefeatures": [
|
||||
{
|
||||
"isSettingDescription": false,
|
||||
"showAsSectionHeader": false,
|
||||
"dataType": 8,
|
||||
"category": 1,
|
||||
"nameResourceKey": "MacDeviceFeaturesAirPrintHeader",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 57,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"isSettingDescription": false,
|
||||
"showAsSectionHeader": true,
|
||||
"dataType": 8,
|
||||
"category": 1,
|
||||
"nameResourceKey": "allEnrollmentTypesHeaderNameMac",
|
||||
"descriptionResourceKey": "allEnrollmentTypesHeaderDescriptionMac",
|
||||
"childSettings": [
|
||||
{
|
||||
"columns": [
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 20,
|
||||
"category": 1,
|
||||
"nameResourceKey": "ipAddress",
|
||||
"descriptionResourceKey": "ipAddressDescription",
|
||||
"emptyValueResourceKey": "airPrintIpAddressHint",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "ipAddress",
|
||||
"booleanActions": 0,
|
||||
"policyType": 57,
|
||||
"enabled": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 20,
|
||||
"category": 1,
|
||||
"nameResourceKey": "resourcePath",
|
||||
"descriptionResourceKey": "resourcePathDescription",
|
||||
"emptyValueResourceKey": "airPrintResourcePathHint",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "resourcePath",
|
||||
"booleanActions": 0,
|
||||
"policyType": 57,
|
||||
"enabled": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 14,
|
||||
"category": 1,
|
||||
"nameResourceKey": "airPrintPort",
|
||||
"descriptionResourceKey": "airPrintPortDescription",
|
||||
"emptyValueResourceKey": "default",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "port",
|
||||
"booleanActions": 0,
|
||||
"policyType": 57,
|
||||
"enabled": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 16,
|
||||
"category": 1,
|
||||
"nameResourceKey": "forceTls",
|
||||
"descriptionResourceKey": "forceTlsDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "enableOption",
|
||||
"value": "true",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "disableOption",
|
||||
"value": "false",
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "forceTls",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "false",
|
||||
"policyType": 57,
|
||||
"enabled": true
|
||||
}
|
||||
}
|
||||
],
|
||||
"dataType": 21,
|
||||
"category": 1,
|
||||
"nameResourceKey": "airPrintTableName",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "airPrintDestinations",
|
||||
"booleanActions": 0,
|
||||
"policyType": 57,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 57,
|
||||
"enabled": true
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,59 @@
|
||||
{
|
||||
"androiddefenderatp_complianceandroid": {
|
||||
"isSettingDescription": false,
|
||||
"showAsSectionHeader": false,
|
||||
"dataType": 8,
|
||||
"category": 137,
|
||||
"nameResourceKey": "complianceAtpDeviceRiskHeader",
|
||||
"childSettings": [
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 137,
|
||||
"nameResourceKey": "complianceDeviceRiskATPRequirementName",
|
||||
"descriptionResourceKey": "complianceDeviceRiskATPRequirementDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "notConfigured",
|
||||
"value": "unavailable",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "clear",
|
||||
"value": "secured",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "lowOption",
|
||||
"value": "low",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "mediumOption",
|
||||
"value": "medium",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "highOption",
|
||||
"value": "high",
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "advancedThreatProtectionRequiredSecurityLevel",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "unavailable",
|
||||
"unconfiguredValue": "unavailable",
|
||||
"policyType": 29,
|
||||
"enabled": false
|
||||
}
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 29,
|
||||
"enabled": true
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,59 @@
|
||||
{
|
||||
"androiddefenderatp_complianceandroiddeviceowner": {
|
||||
"isSettingDescription": false,
|
||||
"showAsSectionHeader": false,
|
||||
"dataType": 8,
|
||||
"category": 137,
|
||||
"nameResourceKey": "complianceAtpDeviceRiskHeader",
|
||||
"childSettings": [
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 137,
|
||||
"nameResourceKey": "complianceDeviceRiskATPRequirementName",
|
||||
"descriptionResourceKey": "complianceDeviceRiskATPRequirementDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "notConfigured",
|
||||
"value": "unavailable",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "clear",
|
||||
"value": "secured",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "lowOption",
|
||||
"value": "low",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "mediumOption",
|
||||
"value": "medium",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "highOption",
|
||||
"value": "high",
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "advancedThreatProtectionRequiredSecurityLevel",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "unavailable",
|
||||
"unconfiguredValue": "unavailable",
|
||||
"policyType": 31,
|
||||
"enabled": false
|
||||
}
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 31,
|
||||
"enabled": true
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,59 @@
|
||||
{
|
||||
"androiddefenderatp_complianceandroidforwork": {
|
||||
"isSettingDescription": false,
|
||||
"showAsSectionHeader": false,
|
||||
"dataType": 8,
|
||||
"category": 137,
|
||||
"nameResourceKey": "complianceAtpDeviceRiskHeader",
|
||||
"childSettings": [
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 137,
|
||||
"nameResourceKey": "complianceDeviceRiskATPRequirementName",
|
||||
"descriptionResourceKey": "complianceDeviceRiskATPRequirementDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "notConfigured",
|
||||
"value": "unavailable",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "clear",
|
||||
"value": "secured",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "lowOption",
|
||||
"value": "low",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "mediumOption",
|
||||
"value": "medium",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "highOption",
|
||||
"value": "high",
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "advancedThreatProtectionRequiredSecurityLevel",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "unavailable",
|
||||
"unconfiguredValue": "unavailable",
|
||||
"policyType": 30,
|
||||
"enabled": false
|
||||
}
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 30,
|
||||
"enabled": true
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,113 @@
|
||||
{
|
||||
"androiddeviceownerapplications_androiddeviceownergeneral": [
|
||||
{
|
||||
"isSettingDescription": false,
|
||||
"showAsSectionHeader": false,
|
||||
"dataType": 8,
|
||||
"category": 2,
|
||||
"nameResourceKey": "workProfileHeaderDescription",
|
||||
"descriptionResourceKey": "",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 2,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"isSettingDescription": false,
|
||||
"showAsSectionHeader": true,
|
||||
"dataType": 8,
|
||||
"category": 2,
|
||||
"nameResourceKey": "allAndroidCorpEnrollmentTypesHeaderName",
|
||||
"descriptionResourceKey": "allAndroidCorpEnrollmentTypesHeaderDescription",
|
||||
"childSettings": [
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 2,
|
||||
"nameResourceKey": "installUnknownSourcesAllowedName",
|
||||
"descriptionResourceKey": "installUnknownSourcesAllowedDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "appsAllowInstallFromUnknownSources",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": false,
|
||||
"policyType": 2,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 2,
|
||||
"nameResourceKey": "appsAutoUpdatePolicyNameWorkProfile",
|
||||
"descriptionResourceKey": "appsAutoUpdatePolicyDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "appsAutoUpdateNotConfigured",
|
||||
"value": "notConfigured",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "appsAutoUpdateUserChoice",
|
||||
"value": "userChoice",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "appsAutoUpdateNever",
|
||||
"value": "never",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "appsAutoUpdateWifiOnly",
|
||||
"value": "wiFiOnly",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "appsAutoUpdateAlways",
|
||||
"value": "always",
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "appsAutoUpdatePolicy",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "notConfigured",
|
||||
"unconfiguredValue": "notConfigured",
|
||||
"policyType": 2,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 2,
|
||||
"nameResourceKey": "publicPlayStoreEnabledName",
|
||||
"descriptionResourceKey": "publicPlayStoreEnabledDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "publicPlayStoreEnabled",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": false,
|
||||
"policyType": 2,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 2,
|
||||
"enabled": true
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,665 @@
|
||||
{
|
||||
"applicationguard_windows10endpointprotection": [
|
||||
{
|
||||
"dataType": 10,
|
||||
"category": 3,
|
||||
"nameResourceKey": "applicationGuardInstallationText",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 76,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 3,
|
||||
"nameResourceKey": "applicationGuardEnabledName",
|
||||
"descriptionResourceKey": "applicationGuardEnabledDescription",
|
||||
"childSettings": [
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 3,
|
||||
"nameResourceKey": "applicationGuardClipboardBehaviorName",
|
||||
"descriptionResourceKey": "applicationGuardClipboardBehaviorDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "notConfigured",
|
||||
"value": "notConfigured",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "applicationGuardClipboardAllowPCToBrowserName",
|
||||
"value": "blockContainerToHost",
|
||||
"children": [
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 3,
|
||||
"nameResourceKey": "applicationGuardClipboardContentName",
|
||||
"descriptionResourceKey": "applicationGuardClipboardContentDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "notConfigured",
|
||||
"value": "notConfigured",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "applicationGuardClipboardContentTextName",
|
||||
"value": "blockImageFile",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "applicationGuardClipboardContentImageName",
|
||||
"value": "blockTextFile",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "applicationGuardClipboardContentBothName",
|
||||
"value": "blockNone",
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "applicationGuardBlockFileTransfer",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "notConfigured",
|
||||
"unconfiguredValue": "notConfigured",
|
||||
"policyType": 76,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "applicationGuardClipboardAllowBrowserToPCName",
|
||||
"value": "blockHostToContainer",
|
||||
"children": [
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 3,
|
||||
"nameResourceKey": "applicationGuardClipboardContentName",
|
||||
"descriptionResourceKey": "applicationGuardClipboardContentDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "notConfigured",
|
||||
"value": "notConfigured",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "applicationGuardClipboardContentTextName",
|
||||
"value": "blockImageFile",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "applicationGuardClipboardContentImageName",
|
||||
"value": "blockTextFile",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "applicationGuardClipboardContentBothName",
|
||||
"value": "blockNone",
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "applicationGuardBlockFileTransfer",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "notConfigured",
|
||||
"unconfiguredValue": "notConfigured",
|
||||
"policyType": 76,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "applicationGuardClipboardAllowBothWayName",
|
||||
"value": "blockNone",
|
||||
"children": [
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 3,
|
||||
"nameResourceKey": "applicationGuardClipboardContentName",
|
||||
"descriptionResourceKey": "applicationGuardClipboardContentDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "notConfigured",
|
||||
"value": "notConfigured",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "applicationGuardClipboardContentTextName",
|
||||
"value": "blockImageFile",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "applicationGuardClipboardContentImageName",
|
||||
"value": "blockTextFile",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "applicationGuardClipboardContentBothName",
|
||||
"value": "blockNone",
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "applicationGuardBlockFileTransfer",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "notConfigured",
|
||||
"unconfiguredValue": "notConfigured",
|
||||
"policyType": 76,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "applicationGuardClipboardBlockBothWayName",
|
||||
"value": "blockBoth",
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "applicationGuardBlockClipboardSharing",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "notConfigured",
|
||||
"unconfiguredValue": "notConfigured",
|
||||
"policyType": 76,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 3,
|
||||
"nameResourceKey": "applicationGuardBlockNonEnterpriseContentName",
|
||||
"descriptionResourceKey": "applicationGuardBlockNonEnterpriseContentDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "applicationGuardBlockNonEnterpriseContent",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"unconfiguredValue": false,
|
||||
"policyType": 76,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 3,
|
||||
"nameResourceKey": "applicationGuardPrintFromVirtualBrowserName",
|
||||
"descriptionResourceKey": "applicationGuardPrintFromVirtualBrowserDescription",
|
||||
"childSettings": [
|
||||
{
|
||||
"dataType": 13,
|
||||
"category": 3,
|
||||
"nameResourceKey": "applicationGuardAllowPrintToName",
|
||||
"descriptionResourceKey": "applicationGuardAllowPrintToDescription",
|
||||
"emptyValueResourceKey": "notConfigured",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "applicationGuardPrintToPDFName",
|
||||
"value": "applicationGuardAllowPrintToPDF",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "applicationGuardPrintToXPSName",
|
||||
"value": "applicationGuardAllowPrintToXPS",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "applicationGuardPrintToLocalPrintersName",
|
||||
"value": "applicationGuardAllowPrintToLocalPrinters",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "applicationGuardPrintToNetworkPrintersName",
|
||||
"value": "applicationGuardAllowPrintToNetworkPrinters",
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "applicationGuardPrintSettings",
|
||||
"booleanActions": 0,
|
||||
"policyType": 76,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "applicationGuardAllowPrinting",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": false,
|
||||
"unconfiguredValue": false,
|
||||
"policyType": 76,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 3,
|
||||
"nameResourceKey": "applicationGuardAuditingName",
|
||||
"descriptionResourceKey": "applicationGuardAuditingDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "applicationGuardForceAuditing",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": false,
|
||||
"unconfiguredValue": false,
|
||||
"policyType": 76,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 3,
|
||||
"nameResourceKey": "applicationGuardAllowPersistenceName",
|
||||
"descriptionResourceKey": "applicationGuardAllowPersistenceDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "applicationGuardAllowPersistence",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": false,
|
||||
"unconfiguredValue": false,
|
||||
"policyType": 76,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 3,
|
||||
"nameResourceKey": "applicationGuardAllowVirtualGPUName",
|
||||
"descriptionResourceKey": "applicationGuardAllowVirtualGPUDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "applicationGuardAllowVirtualGPU",
|
||||
"booleanActions": 2,
|
||||
"defaultValue": false,
|
||||
"unconfiguredValue": false,
|
||||
"policyType": 76,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 3,
|
||||
"nameResourceKey": "applicationGuardAllowFileSaveOnHostName",
|
||||
"descriptionResourceKey": "applicationGuardAllowFileSaveOnHostDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "applicationGuardAllowFileSaveOnHost",
|
||||
"booleanActions": 2,
|
||||
"defaultValue": false,
|
||||
"unconfiguredValue": false,
|
||||
"policyType": 76,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "applicationGuardEnabled",
|
||||
"booleanActions": 2,
|
||||
"defaultValue": false,
|
||||
"unconfiguredValue": false,
|
||||
"policyType": 76,
|
||||
"enabled": false
|
||||
},
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 3,
|
||||
"nameResourceKey": "applicationGuardEnabledName",
|
||||
"descriptionResourceKey": "applicationGuardEnabledOptionsDescription",
|
||||
"childSettings": [
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 3,
|
||||
"nameResourceKey": "applicationGuardClipboardBehaviorName",
|
||||
"descriptionResourceKey": "applicationGuardClipboardBehaviorDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "notConfigured",
|
||||
"value": "notConfigured",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "applicationGuardClipboardAllowPCToBrowserName",
|
||||
"value": "blockContainerToHost",
|
||||
"children": [
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 3,
|
||||
"nameResourceKey": "applicationGuardClipboardContentName",
|
||||
"descriptionResourceKey": "applicationGuardClipboardContentDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "notConfigured",
|
||||
"value": "notConfigured",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "applicationGuardClipboardContentTextName",
|
||||
"value": "blockImageFile",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "applicationGuardClipboardContentImageName",
|
||||
"value": "blockTextFile",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "applicationGuardClipboardContentBothName",
|
||||
"value": "blockNone",
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "applicationGuardBlockFileTransfer",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "notConfigured",
|
||||
"unconfiguredValue": "notConfigured",
|
||||
"policyType": 76,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "applicationGuardClipboardAllowBrowserToPCName",
|
||||
"value": "blockHostToContainer",
|
||||
"children": [
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 3,
|
||||
"nameResourceKey": "applicationGuardClipboardContentName",
|
||||
"descriptionResourceKey": "applicationGuardClipboardContentDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "notConfigured",
|
||||
"value": "notConfigured",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "applicationGuardClipboardContentTextName",
|
||||
"value": "blockImageFile",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "applicationGuardClipboardContentImageName",
|
||||
"value": "blockTextFile",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "applicationGuardClipboardContentBothName",
|
||||
"value": "blockNone",
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "applicationGuardBlockFileTransfer",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "notConfigured",
|
||||
"unconfiguredValue": "notConfigured",
|
||||
"policyType": 76,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "applicationGuardClipboardAllowBothWayName",
|
||||
"value": "blockNone",
|
||||
"children": [
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 3,
|
||||
"nameResourceKey": "applicationGuardClipboardContentName",
|
||||
"descriptionResourceKey": "applicationGuardClipboardContentDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "notConfigured",
|
||||
"value": "notConfigured",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "applicationGuardClipboardContentTextName",
|
||||
"value": "blockImageFile",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "applicationGuardClipboardContentImageName",
|
||||
"value": "blockTextFile",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "applicationGuardClipboardContentBothName",
|
||||
"value": "blockNone",
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "applicationGuardBlockFileTransfer",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "notConfigured",
|
||||
"unconfiguredValue": "notConfigured",
|
||||
"policyType": 76,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "applicationGuardClipboardBlockBothWayName",
|
||||
"value": "blockBoth",
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "applicationGuardBlockClipboardSharing",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "notConfigured",
|
||||
"unconfiguredValue": "notConfigured",
|
||||
"policyType": 76,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 3,
|
||||
"nameResourceKey": "applicationGuardBlockNonEnterpriseContentName",
|
||||
"descriptionResourceKey": "applicationGuardBlockNonEnterpriseContentDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "applicationGuardBlockNonEnterpriseContent",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"unconfiguredValue": false,
|
||||
"policyType": 76,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 3,
|
||||
"nameResourceKey": "applicationGuardPrintFromVirtualBrowserName",
|
||||
"descriptionResourceKey": "applicationGuardPrintFromVirtualBrowserDescription",
|
||||
"childSettings": [
|
||||
{
|
||||
"dataType": 13,
|
||||
"category": 3,
|
||||
"nameResourceKey": "applicationGuardAllowPrintToName",
|
||||
"descriptionResourceKey": "applicationGuardAllowPrintToDescription",
|
||||
"emptyValueResourceKey": "notConfigured",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "applicationGuardPrintToPDFName",
|
||||
"value": "applicationGuardAllowPrintToPDF",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "applicationGuardPrintToXPSName",
|
||||
"value": "applicationGuardAllowPrintToXPS",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "applicationGuardPrintToLocalPrintersName",
|
||||
"value": "applicationGuardAllowPrintToLocalPrinters",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "applicationGuardPrintToNetworkPrintersName",
|
||||
"value": "applicationGuardAllowPrintToNetworkPrinters",
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "applicationGuardPrintSettings",
|
||||
"booleanActions": 0,
|
||||
"policyType": 76,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "applicationGuardAllowPrinting",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": false,
|
||||
"unconfiguredValue": false,
|
||||
"policyType": 76,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 3,
|
||||
"nameResourceKey": "applicationGuardAuditingName",
|
||||
"descriptionResourceKey": "applicationGuardAuditingDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "applicationGuardForceAuditing",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": false,
|
||||
"unconfiguredValue": false,
|
||||
"policyType": 76,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 3,
|
||||
"nameResourceKey": "applicationGuardAllowPersistenceName",
|
||||
"descriptionResourceKey": "applicationGuardAllowPersistenceDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "applicationGuardAllowPersistence",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": false,
|
||||
"unconfiguredValue": false,
|
||||
"policyType": 76,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 3,
|
||||
"nameResourceKey": "applicationGuardAllowVirtualGPUName",
|
||||
"descriptionResourceKey": "applicationGuardAllowVirtualGPUDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "applicationGuardAllowVirtualGPU",
|
||||
"booleanActions": 2,
|
||||
"defaultValue": false,
|
||||
"unconfiguredValue": false,
|
||||
"policyType": 76,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 3,
|
||||
"nameResourceKey": "applicationGuardAllowFileSaveOnHostName",
|
||||
"descriptionResourceKey": "applicationGuardAllowFileSaveOnHostDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "applicationGuardAllowFileSaveOnHost",
|
||||
"booleanActions": 2,
|
||||
"defaultValue": false,
|
||||
"unconfiguredValue": false,
|
||||
"policyType": 76,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "notConfigured",
|
||||
"value": "notConfigured",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "ApplicationGuardEnabledOptionsEnabledForEdge",
|
||||
"value": "enabledForEdge",
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "applicationGuardEnabledOptions",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "notConfigured",
|
||||
"unconfiguredValue": "notConfigured",
|
||||
"policyType": 76,
|
||||
"enabled": true
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,125 @@
|
||||
{
|
||||
"applicationrestrictions_androidgeneral": {
|
||||
"dataType": 16,
|
||||
"category": 4,
|
||||
"nameResourceKey": "restrictedAppsListOptionsName",
|
||||
"descriptionResourceKey": "restrictedAppsListOptionsDescription",
|
||||
"childSettings": [
|
||||
{
|
||||
"columns": [
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 20,
|
||||
"category": 4,
|
||||
"nameResourceKey": "appUrlName",
|
||||
"descriptionResourceKey": "empty",
|
||||
"emptyValueResourceKey": "androidAppStoreExample",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "appStoreUrl",
|
||||
"booleanActions": 0,
|
||||
"policyType": 20,
|
||||
"enabled": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 20,
|
||||
"category": 4,
|
||||
"nameResourceKey": "appBundleIdColumn",
|
||||
"descriptionResourceKey": "empty",
|
||||
"emptyValueResourceKey": "bundleIdExample",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "appId",
|
||||
"booleanActions": 0,
|
||||
"policyType": 20,
|
||||
"enabled": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 20,
|
||||
"category": 4,
|
||||
"nameResourceKey": "appNameName",
|
||||
"descriptionResourceKey": "empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "name",
|
||||
"booleanActions": 0,
|
||||
"policyType": 20,
|
||||
"enabled": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 20,
|
||||
"category": 4,
|
||||
"nameResourceKey": "appPublisherName",
|
||||
"descriptionResourceKey": "empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "publisher",
|
||||
"booleanActions": 0,
|
||||
"policyType": 20,
|
||||
"enabled": true
|
||||
}
|
||||
}
|
||||
],
|
||||
"dataType": 21,
|
||||
"category": 4,
|
||||
"nameResourceKey": "appListTableName",
|
||||
"descriptionResourceKey": "googleAppUrlHelp",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "compliantAppsList",
|
||||
"booleanActions": 0,
|
||||
"policyType": 20,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "notConfigured",
|
||||
"value": "none",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "notInList",
|
||||
"value": "appsNotInListCompliant",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "inList",
|
||||
"value": "appsInListCompliant",
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "compliantAppListType",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "none",
|
||||
"unconfiguredValue": "none",
|
||||
"policyType": 20,
|
||||
"enabled": true
|
||||
}
|
||||
}
|
||||
159
Documentation/ObjectInfo/applicationrestrictions_iosgeneral.json
Normal file
159
Documentation/ObjectInfo/applicationrestrictions_iosgeneral.json
Normal file
@@ -0,0 +1,159 @@
|
||||
{
|
||||
"applicationrestrictions_iosgeneral": [
|
||||
{
|
||||
"isSettingDescription": false,
|
||||
"showAsSectionHeader": false,
|
||||
"dataType": 8,
|
||||
"category": 4,
|
||||
"nameResourceKey": "IosGeneralApplicationRestrictionsHeader",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"isSettingDescription": false,
|
||||
"showAsSectionHeader": true,
|
||||
"dataType": 8,
|
||||
"category": 4,
|
||||
"nameResourceKey": "deviceEnrollmentAndAutomatedDeviceEnrollmentHeaderName",
|
||||
"descriptionResourceKey": "deviceEnrollmentAndAutomatedDeviceEnrollmentHeaderDescription",
|
||||
"childSettings": [
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 4,
|
||||
"nameResourceKey": "restrictedAppsListOptionsName",
|
||||
"descriptionResourceKey": "restrictedAppsListOptionsDescription",
|
||||
"childSettings": [
|
||||
{
|
||||
"columns": [
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 20,
|
||||
"category": 4,
|
||||
"nameResourceKey": "appUrlName",
|
||||
"descriptionResourceKey": "empty",
|
||||
"emptyValueResourceKey": "kioskModeAppStoreExample",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "appStoreUrl",
|
||||
"booleanActions": 0,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 20,
|
||||
"category": 4,
|
||||
"nameResourceKey": "appBundleIdColumn",
|
||||
"descriptionResourceKey": "empty",
|
||||
"emptyValueResourceKey": "bundleIdExample",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "appId",
|
||||
"booleanActions": 0,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 20,
|
||||
"category": 4,
|
||||
"nameResourceKey": "appNameName",
|
||||
"descriptionResourceKey": "empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "name",
|
||||
"booleanActions": 0,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 20,
|
||||
"category": 4,
|
||||
"nameResourceKey": "appPublisherName",
|
||||
"descriptionResourceKey": "empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "publisher",
|
||||
"booleanActions": 0,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
}
|
||||
}
|
||||
],
|
||||
"dataType": 21,
|
||||
"category": 4,
|
||||
"nameResourceKey": "appListTableName",
|
||||
"descriptionResourceKey": "iosAppUrlHelp",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "compliantAppsList",
|
||||
"booleanActions": 0,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "notConfigured",
|
||||
"value": "none",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "notInList",
|
||||
"value": "appsNotInListCompliant",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "inList",
|
||||
"value": "appsInListCompliant",
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "compliantAppListType",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "none",
|
||||
"unconfiguredValue": "none",
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
}
|
||||
]
|
||||
}
|
||||
122
Documentation/ObjectInfo/applicationrestrictions_macgeneral.json
Normal file
122
Documentation/ObjectInfo/applicationrestrictions_macgeneral.json
Normal file
@@ -0,0 +1,122 @@
|
||||
{
|
||||
"applicationrestrictions_macgeneral": {
|
||||
"isSettingDescription": false,
|
||||
"showAsSectionHeader": true,
|
||||
"dataType": 8,
|
||||
"category": 4,
|
||||
"nameResourceKey": "allEnrollmentTypesHeaderNameMac",
|
||||
"descriptionResourceKey": "allEnrollmentTypesHeaderDescriptionMac",
|
||||
"childSettings": [
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 4,
|
||||
"nameResourceKey": "restrictedAppsListOptionsName",
|
||||
"descriptionResourceKey": "restrictedAppsListOptionsDescription",
|
||||
"childSettings": [
|
||||
{
|
||||
"columns": [
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 20,
|
||||
"category": 4,
|
||||
"nameResourceKey": "appBundleIdColumn",
|
||||
"descriptionResourceKey": "empty",
|
||||
"emptyValueResourceKey": "bundleIdExample",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "appId",
|
||||
"booleanActions": 0,
|
||||
"policyType": 60,
|
||||
"enabled": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 20,
|
||||
"category": 4,
|
||||
"nameResourceKey": "appNameName",
|
||||
"descriptionResourceKey": "empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "name",
|
||||
"booleanActions": 0,
|
||||
"policyType": 60,
|
||||
"enabled": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 20,
|
||||
"category": 4,
|
||||
"nameResourceKey": "appPublisherName",
|
||||
"descriptionResourceKey": "empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "publisher",
|
||||
"booleanActions": 0,
|
||||
"policyType": 60,
|
||||
"enabled": true
|
||||
}
|
||||
}
|
||||
],
|
||||
"dataType": 21,
|
||||
"category": 4,
|
||||
"nameResourceKey": "appListTableName",
|
||||
"descriptionResourceKey": "",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "compliantAppsList",
|
||||
"booleanActions": 0,
|
||||
"policyType": 60,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "notConfigured",
|
||||
"value": "none",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "notInList",
|
||||
"value": "appsNotInListCompliant",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "inList",
|
||||
"value": "appsInListCompliant",
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "compliantAppListType",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "none",
|
||||
"unconfiguredValue": "none",
|
||||
"policyType": 60,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 60,
|
||||
"enabled": true
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,106 @@
|
||||
{
|
||||
"applicationrestrictions_windowsphonegeneral": {
|
||||
"dataType": 16,
|
||||
"category": 4,
|
||||
"nameResourceKey": "blockUsageofUserInstalledStoreApps",
|
||||
"descriptionResourceKey": "windowsAppNonComplianceTypeDescription",
|
||||
"childSettings": [
|
||||
{
|
||||
"columns": [
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 20,
|
||||
"category": 4,
|
||||
"nameResourceKey": "appUrlName",
|
||||
"descriptionResourceKey": "windowsAppUrlHelp",
|
||||
"emptyValueResourceKey": "windowsAppUrlExample",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "appStoreUrl",
|
||||
"booleanActions": 0,
|
||||
"policyType": 100,
|
||||
"enabled": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 20,
|
||||
"category": 4,
|
||||
"nameResourceKey": "appNameName",
|
||||
"descriptionResourceKey": "forYourOwnReference",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "name",
|
||||
"booleanActions": 0,
|
||||
"policyType": 100,
|
||||
"enabled": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 20,
|
||||
"category": 4,
|
||||
"nameResourceKey": "appPublisherName",
|
||||
"descriptionResourceKey": "forYourOwnReference",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "publisher",
|
||||
"booleanActions": 0,
|
||||
"policyType": 100,
|
||||
"enabled": true
|
||||
}
|
||||
}
|
||||
],
|
||||
"dataType": 21,
|
||||
"category": 4,
|
||||
"nameResourceKey": "appListTableName",
|
||||
"descriptionResourceKey": "windowsAppUrlHelp",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "compliantAppsList",
|
||||
"booleanActions": 0,
|
||||
"policyType": 100,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "notConfigured",
|
||||
"value": "none",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "blockedList",
|
||||
"value": "appsNotInListCompliant",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "allowedList",
|
||||
"value": "appsInListCompliant",
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "compliantAppListType",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "none",
|
||||
"unconfiguredValue": "none",
|
||||
"policyType": 100,
|
||||
"enabled": true
|
||||
}
|
||||
}
|
||||
334
Documentation/ObjectInfo/applications_windows10general.json
Normal file
334
Documentation/ObjectInfo/applications_windows10general.json
Normal file
@@ -0,0 +1,334 @@
|
||||
{
|
||||
"applications_windows10general": [
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 6,
|
||||
"nameResourceKey": "blockAppStoreWindowsMobileOnlyName",
|
||||
"descriptionResourceKey": "empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "windowsStoreBlocked",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 78,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 6,
|
||||
"nameResourceKey": "blockAppStoreAutoUpdate",
|
||||
"descriptionResourceKey": "blockAppStoreAutoUpdateDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "windowsStoreBlockAutoUpdate",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 78,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 6,
|
||||
"nameResourceKey": "allowAllTrustedAppsSideloading",
|
||||
"descriptionResourceKey": "allowAllTrustedAppsSideloadingDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "notConfigured",
|
||||
"value": "notConfigured",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "blockOption",
|
||||
"value": "blocked",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "allowOption",
|
||||
"value": "allowed",
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "appsAllowTrustedAppsSideloading",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "notConfigured",
|
||||
"unconfiguredValue": "notConfigured",
|
||||
"policyType": 78,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 6,
|
||||
"nameResourceKey": "developerUnlock",
|
||||
"descriptionResourceKey": "developerUnlockDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "notConfigured",
|
||||
"value": "notConfigured",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "blockOption",
|
||||
"value": "blocked",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "allowOption",
|
||||
"value": "allowed",
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "developerUnlockSetting",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "notConfigured",
|
||||
"unconfiguredValue": "notConfigured",
|
||||
"policyType": 78,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 6,
|
||||
"nameResourceKey": "allowSharedUserAppData",
|
||||
"descriptionResourceKey": "allowSharedUserAppDataDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "sharedUserAppDataAllowed",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": false,
|
||||
"policyType": 78,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 6,
|
||||
"nameResourceKey": "enableUsePrivateStoreOnly",
|
||||
"descriptionResourceKey": "enableUsePrivateStoreOnlyDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "windowsStoreEnablePrivateStoreOnly",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": false,
|
||||
"policyType": 78,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 6,
|
||||
"nameResourceKey": "blockStoreOriginatedApps",
|
||||
"descriptionResourceKey": "blockStoreOriginatedAppsDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "appsBlockWindowsStoreOriginatedApps",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 78,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 6,
|
||||
"nameResourceKey": "restrictAppDataToSystemVolume",
|
||||
"descriptionResourceKey": "restrictAppDataToSystemVolumeDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "storageRestrictAppDataToSystemVolume",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 78,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 6,
|
||||
"nameResourceKey": "restrictAppInstallToSystemVolume",
|
||||
"descriptionResourceKey": "restrictAppInstallToSystemVolumeDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "storageRestrictAppInstallToSystemVolume",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 78,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 6,
|
||||
"nameResourceKey": "blockGameDvr",
|
||||
"descriptionResourceKey": "blockGameDvrDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "gameDvrBlocked",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 78,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 6,
|
||||
"nameResourceKey": "enableAppInstallControlName",
|
||||
"descriptionResourceKey": "enableAppInstallControlDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "smartScreenEnableAppInstallControl",
|
||||
"booleanActions": 1,
|
||||
"defaultValue": false,
|
||||
"policyType": 78,
|
||||
"enabled": false
|
||||
},
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 6,
|
||||
"nameResourceKey": "smartScreenAppInstallControlName",
|
||||
"descriptionResourceKey": "smartScreenAppInstallControlDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "smartScreenAppInstallControlNotConfigured",
|
||||
"value": "notConfigured",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "smartScreenAppInstallControlAnywhere",
|
||||
"value": "anywhere",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "smartScreenAppInstallControlStoreOnly",
|
||||
"value": "storeOnly",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "smartScreenAppInstallControlRecommendations",
|
||||
"value": "recommendations",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "smartScreenAppInstallControlPreferStore",
|
||||
"value": "preferStore",
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "smartScreenAppInstallControl",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "notConfigured",
|
||||
"policyType": 78,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 19,
|
||||
"category": 6,
|
||||
"nameResourceKey": "appManagementMSIAllowUserControlOverInstallName",
|
||||
"descriptionResourceKey": "appManagementMSIAllowUserControlOverInstallDesc",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "blockOption",
|
||||
"value": true,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "notConfigured",
|
||||
"value": false,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "appManagementMSIAllowUserControlOverInstall",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": false,
|
||||
"unconfiguredValue": false,
|
||||
"policyType": 78,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 19,
|
||||
"category": 6,
|
||||
"nameResourceKey": "appManagementMSIAlwaysInstallWithElevatedPrivilegesName",
|
||||
"descriptionResourceKey": "appManagementMSIAlwaysInstallWithElevatedPrivilegesDesc",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "blockOption",
|
||||
"value": true,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "notConfigured",
|
||||
"value": false,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "appManagementMSIAlwaysInstallWithElevatedPrivileges",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": false,
|
||||
"unconfiguredValue": false,
|
||||
"policyType": 78,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 12,
|
||||
"category": 6,
|
||||
"nameResourceKey": "appManagementPackageFamilyNamesToLaunchAfterLogOnName",
|
||||
"descriptionResourceKey": "appManagementPackageFamilyNamesToLaunchAfterLogOnDescription",
|
||||
"emptyValueResourceKey": "appManagementPackageFamilyNamesToLaunchAfterLogOnPlaceholder",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "appManagementPackageFamilyNamesToLaunchAfterLogOn",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "",
|
||||
"policyType": 78,
|
||||
"enabled": true
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"applications_windowsphonegeneral": {
|
||||
"dataType": 0,
|
||||
"category": 6,
|
||||
"nameResourceKey": "blockApplicationStoreName",
|
||||
"descriptionResourceKey": "empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "windowsStoreBlocked",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 100,
|
||||
"enabled": true
|
||||
}
|
||||
}
|
||||
1896
Documentation/ObjectInfo/applicationsandgames_iosgeneral.json
Normal file
1896
Documentation/ObjectInfo/applicationsandgames_iosgeneral.json
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"applicationsandgoogle_androidgeneral": {
|
||||
"dataType": 0,
|
||||
"category": 8,
|
||||
"nameResourceKey": "blockGooglePlayStoreName",
|
||||
"descriptionResourceKey": "blockGooglePlayStoreDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "googlePlayStoreBlocked",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 20,
|
||||
"enabled": true
|
||||
}
|
||||
}
|
||||
159
Documentation/ObjectInfo/applicationvisibility_iosgeneral.json
Normal file
159
Documentation/ObjectInfo/applicationvisibility_iosgeneral.json
Normal file
@@ -0,0 +1,159 @@
|
||||
{
|
||||
"applicationvisibility_iosgeneral": [
|
||||
{
|
||||
"isSettingDescription": false,
|
||||
"showAsSectionHeader": false,
|
||||
"dataType": 8,
|
||||
"category": 5,
|
||||
"nameResourceKey": "IosGeneralApplicationVisibilityHeader",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"isSettingDescription": false,
|
||||
"showAsSectionHeader": true,
|
||||
"dataType": 8,
|
||||
"category": 5,
|
||||
"nameResourceKey": "automatedDeviceEnrollmentHeaderName",
|
||||
"descriptionResourceKey": "automatedDeviceEnrollmentHeaderDescription",
|
||||
"childSettings": [
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 5,
|
||||
"nameResourceKey": "visibleAppsListOptionsName",
|
||||
"descriptionResourceKey": "visibleAppsListOptionsDescription",
|
||||
"childSettings": [
|
||||
{
|
||||
"columns": [
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 20,
|
||||
"category": 5,
|
||||
"nameResourceKey": "appUrlName",
|
||||
"descriptionResourceKey": "empty",
|
||||
"emptyValueResourceKey": "kioskModeAppStoreExample",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "appStoreUrl",
|
||||
"booleanActions": 0,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 20,
|
||||
"category": 5,
|
||||
"nameResourceKey": "appBundleIdColumn",
|
||||
"descriptionResourceKey": "empty",
|
||||
"emptyValueResourceKey": "bundleIdExample",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "appId",
|
||||
"booleanActions": 0,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 20,
|
||||
"category": 5,
|
||||
"nameResourceKey": "appNameName",
|
||||
"descriptionResourceKey": "empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "name",
|
||||
"booleanActions": 0,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 20,
|
||||
"category": 5,
|
||||
"nameResourceKey": "appPublisherName",
|
||||
"descriptionResourceKey": "empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "publisher",
|
||||
"booleanActions": 0,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
}
|
||||
}
|
||||
],
|
||||
"dataType": 21,
|
||||
"category": 5,
|
||||
"nameResourceKey": "appListTableName",
|
||||
"descriptionResourceKey": "iosAppUrlHelp",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "appsVisibilityList",
|
||||
"booleanActions": 0,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "notConfigured",
|
||||
"value": "none",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "hideAppsList",
|
||||
"value": "appsNotInListCompliant",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "showAppsList",
|
||||
"value": "appsInListCompliant",
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "appsVisibilityListType",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "none",
|
||||
"unconfiguredValue": "none",
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
}
|
||||
]
|
||||
}
|
||||
398
Documentation/ObjectInfo/appmanagement_androidgeneral.json
Normal file
398
Documentation/ObjectInfo/appmanagement_androidgeneral.json
Normal file
@@ -0,0 +1,398 @@
|
||||
{
|
||||
"appmanagement_androidgeneral": [
|
||||
{
|
||||
"isSettingDescription": false,
|
||||
"showAsSectionHeader": false,
|
||||
"dataType": 8,
|
||||
"category": 9,
|
||||
"nameResourceKey": "androidAppManagementHeaderName",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 20,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 9,
|
||||
"category": 9,
|
||||
"childSettings": [
|
||||
{
|
||||
"complexOptions": [
|
||||
{
|
||||
"isSettingDescription": false,
|
||||
"showAsSectionHeader": false,
|
||||
"dataType": 8,
|
||||
"category": 9,
|
||||
"nameResourceKey": "androidAppsAllowedToBeInstalledtHeaderName",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 20,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"columns": [
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 20,
|
||||
"category": 9,
|
||||
"nameResourceKey": "singleAppModeAppNameName",
|
||||
"descriptionResourceKey": "Empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "name",
|
||||
"booleanActions": 0,
|
||||
"policyType": 20,
|
||||
"enabled": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 20,
|
||||
"category": 9,
|
||||
"nameResourceKey": "packageName",
|
||||
"descriptionResourceKey": "Empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "appId",
|
||||
"booleanActions": 0,
|
||||
"policyType": 20,
|
||||
"enabled": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 20,
|
||||
"category": 9,
|
||||
"nameResourceKey": "appUrlName",
|
||||
"descriptionResourceKey": "Empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "appStoreUrl",
|
||||
"booleanActions": 0,
|
||||
"policyType": 20,
|
||||
"enabled": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 20,
|
||||
"category": 9,
|
||||
"nameResourceKey": "appPublisherName",
|
||||
"descriptionResourceKey": "Empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "publisher",
|
||||
"booleanActions": 0,
|
||||
"policyType": 20,
|
||||
"enabled": true
|
||||
}
|
||||
}
|
||||
],
|
||||
"dataType": 21,
|
||||
"category": 9,
|
||||
"nameResourceKey": "Empty",
|
||||
"descriptionResourceKey": "Empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "appsInstallAllowList",
|
||||
"booleanActions": 0,
|
||||
"policyType": 20,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"dataType": 5,
|
||||
"category": 9,
|
||||
"nameResourceKey": "androidAppsAllowedToBeInstalled",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 20,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"complexOptions": [
|
||||
{
|
||||
"isSettingDescription": false,
|
||||
"showAsSectionHeader": false,
|
||||
"dataType": 8,
|
||||
"category": 9,
|
||||
"nameResourceKey": "androidAppsBlockedFromLaunchHeaderName",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 20,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"columns": [
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 20,
|
||||
"category": 9,
|
||||
"nameResourceKey": "singleAppModeAppNameName",
|
||||
"descriptionResourceKey": "Empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "name",
|
||||
"booleanActions": 0,
|
||||
"policyType": 20,
|
||||
"enabled": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 20,
|
||||
"category": 9,
|
||||
"nameResourceKey": "packageName",
|
||||
"descriptionResourceKey": "Empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "appId",
|
||||
"booleanActions": 0,
|
||||
"policyType": 20,
|
||||
"enabled": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 20,
|
||||
"category": 9,
|
||||
"nameResourceKey": "appUrlName",
|
||||
"descriptionResourceKey": "Empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "appStoreUrl",
|
||||
"booleanActions": 0,
|
||||
"policyType": 20,
|
||||
"enabled": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 20,
|
||||
"category": 9,
|
||||
"nameResourceKey": "appPublisherName",
|
||||
"descriptionResourceKey": "Empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "publisher",
|
||||
"booleanActions": 0,
|
||||
"policyType": 20,
|
||||
"enabled": true
|
||||
}
|
||||
}
|
||||
],
|
||||
"dataType": 21,
|
||||
"category": 9,
|
||||
"nameResourceKey": "Empty",
|
||||
"descriptionResourceKey": "Empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "appsLaunchBlockList",
|
||||
"booleanActions": 0,
|
||||
"policyType": 20,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"dataType": 5,
|
||||
"category": 9,
|
||||
"nameResourceKey": "androidAppsBlockedFromLaunch",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 20,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"complexOptions": [
|
||||
{
|
||||
"isSettingDescription": false,
|
||||
"showAsSectionHeader": false,
|
||||
"dataType": 8,
|
||||
"category": 9,
|
||||
"nameResourceKey": "androidHiddenAppsHeaderName",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 20,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"columns": [
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 20,
|
||||
"category": 9,
|
||||
"nameResourceKey": "singleAppModeAppNameName",
|
||||
"descriptionResourceKey": "Empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "name",
|
||||
"booleanActions": 0,
|
||||
"policyType": 20,
|
||||
"enabled": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 20,
|
||||
"category": 9,
|
||||
"nameResourceKey": "packageName",
|
||||
"descriptionResourceKey": "Empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "appId",
|
||||
"booleanActions": 0,
|
||||
"policyType": 20,
|
||||
"enabled": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 20,
|
||||
"category": 9,
|
||||
"nameResourceKey": "appUrlName",
|
||||
"descriptionResourceKey": "Empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "appStoreUrl",
|
||||
"booleanActions": 0,
|
||||
"policyType": 20,
|
||||
"enabled": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 20,
|
||||
"category": 9,
|
||||
"nameResourceKey": "appPublisherName",
|
||||
"descriptionResourceKey": "Empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "publisher",
|
||||
"booleanActions": 0,
|
||||
"policyType": 20,
|
||||
"enabled": true
|
||||
}
|
||||
}
|
||||
],
|
||||
"dataType": 21,
|
||||
"category": 9,
|
||||
"nameResourceKey": "Empty",
|
||||
"descriptionResourceKey": "Empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "appsHideList",
|
||||
"booleanActions": 0,
|
||||
"policyType": 20,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"dataType": 5,
|
||||
"category": 9,
|
||||
"nameResourceKey": "androidHiddenApps",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 20,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 20,
|
||||
"enabled": true
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,121 @@
|
||||
{
|
||||
"appsandexperience_windows10teamgeneral": [
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 10,
|
||||
"nameResourceKey": "wakeScreenWhenSomeoneInRoomName",
|
||||
"descriptionResourceKey": "empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "welcomeScreenBlockAutomaticWakeUp",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 86,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 10,
|
||||
"nameResourceKey": "meetingInformationDisplayedOnWelcomeScreenName",
|
||||
"descriptionResourceKey": "empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "notConfigured",
|
||||
"value": "userDefined",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "showOrganizerAndTimeOnly",
|
||||
"value": "showOrganizerAndTimeOnly",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "showEverything",
|
||||
"value": "showOrganizerAndTimeAndSubject",
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "welcomeScreenMeetingInformation",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "userDefined",
|
||||
"unconfiguredValue": "userDefined",
|
||||
"policyType": 86,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 20,
|
||||
"category": 10,
|
||||
"nameResourceKey": "lockScreenBackgroundImageURLName",
|
||||
"descriptionResourceKey": "lockScreenBackgroundImageURLDescription",
|
||||
"emptyValueResourceKey": "lockScreenBackgroundImageURLExample",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "welcomeScreenBackgroundImageUrl",
|
||||
"booleanActions": 0,
|
||||
"policyType": 86,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 10,
|
||||
"nameResourceKey": "connectAppBlockAutoLaunchName",
|
||||
"descriptionResourceKey": "connectAppBlockAutoLaunchDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "connectAppBlockAutoLaunch",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 86,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 10,
|
||||
"nameResourceKey": "settingsBlockSigninSuggestionsName",
|
||||
"descriptionResourceKey": "settingsBlockSigninSuggestionsDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "settingsBlockSigninSuggestions",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 86,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 10,
|
||||
"nameResourceKey": "settingsBlockMyMeetingsAndFilesName",
|
||||
"descriptionResourceKey": "settingsBlockMyMeetingsAndFilesDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "settingsBlockMyMeetingsAndFiles",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 86,
|
||||
"enabled": true
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,130 @@
|
||||
{
|
||||
"associateddomains_macdevicefeatures": [
|
||||
{
|
||||
"isSettingDescription": false,
|
||||
"showAsSectionHeader": false,
|
||||
"dataType": 8,
|
||||
"category": 11,
|
||||
"nameResourceKey": "MacDeviceFeaturesAssociatedDomainsHeader",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 57,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"isSettingDescription": false,
|
||||
"showAsSectionHeader": true,
|
||||
"dataType": 8,
|
||||
"category": 11,
|
||||
"nameResourceKey": "userApprovedAndAutomatedDeviceEnrollmentHeaderNameMac",
|
||||
"descriptionResourceKey": "userApprovedAndAutomatedDeviceEnrollmentHeaderDescriptionMac",
|
||||
"childSettings": [
|
||||
{
|
||||
"columns": [
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 20,
|
||||
"category": 11,
|
||||
"nameResourceKey": "associatedDomainsAppIdName",
|
||||
"descriptionResourceKey": "associatedDomainsAppIdDescription",
|
||||
"emptyValueResourceKey": "associatedDomainsAppIdExample",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "applicationIdentifier",
|
||||
"booleanActions": 0,
|
||||
"policyType": 57,
|
||||
"enabled": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"columns": [
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 20,
|
||||
"category": 11,
|
||||
"nameResourceKey": "associatedDomainsDomainName",
|
||||
"emptyValueResourceKey": "associatedDomainsDomainExample",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "domains",
|
||||
"booleanActions": 0,
|
||||
"policyType": 57,
|
||||
"enabled": true
|
||||
}
|
||||
}
|
||||
],
|
||||
"dataType": 21,
|
||||
"category": 11,
|
||||
"nameResourceKey": "associatedDomainsDomainsListName",
|
||||
"descriptionResourceKey": "associatedDomainsDomainsListDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "domains",
|
||||
"booleanActions": 0,
|
||||
"policyType": 57,
|
||||
"enabled": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 0,
|
||||
"category": 11,
|
||||
"nameResourceKey": "associatedDomainsEnableDirectDownloadsName",
|
||||
"descriptionResourceKey": "associatedDomainsEnableDirectDownloadsDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "directDownloadsEnabled",
|
||||
"booleanActions": 9,
|
||||
"defaultValue": false,
|
||||
"policyType": 57,
|
||||
"enabled": true
|
||||
}
|
||||
}
|
||||
],
|
||||
"dataType": 21,
|
||||
"category": 11,
|
||||
"nameResourceKey": "associatedDomainsTableName",
|
||||
"descriptionResourceKey": "associatedDomainsTableDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "appAssociatedDomains",
|
||||
"booleanActions": 0,
|
||||
"policyType": 57,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 57,
|
||||
"enabled": true
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,90 @@
|
||||
{
|
||||
"autonomoussingleappmode_iosgeneral": [
|
||||
{
|
||||
"isSettingDescription": false,
|
||||
"showAsSectionHeader": false,
|
||||
"dataType": 8,
|
||||
"category": 12,
|
||||
"nameResourceKey": "IosGeneralAutonomousSingleAppModeHeader",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"isSettingDescription": false,
|
||||
"showAsSectionHeader": true,
|
||||
"dataType": 8,
|
||||
"category": 12,
|
||||
"nameResourceKey": "automatedDeviceEnrollmentHeaderName",
|
||||
"descriptionResourceKey": "automatedDeviceEnrollmentHeaderDescription",
|
||||
"childSettings": [
|
||||
{
|
||||
"columns": [
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 20,
|
||||
"category": 12,
|
||||
"nameResourceKey": "singleAppModeAppNameName",
|
||||
"descriptionResourceKey": "singleAppModeAppNameDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "name",
|
||||
"booleanActions": 0,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 20,
|
||||
"category": 12,
|
||||
"nameResourceKey": "singleAppModeBundleIdsName",
|
||||
"descriptionResourceKey": "singleAppModeBundleIdsDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "appId",
|
||||
"booleanActions": 0,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
}
|
||||
}
|
||||
],
|
||||
"dataType": 21,
|
||||
"category": 12,
|
||||
"nameResourceKey": "Empty",
|
||||
"descriptionResourceKey": "Empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "appsSingleAppModeList",
|
||||
"booleanActions": 0,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,50 @@
|
||||
{
|
||||
"azureoperationalinsights_windows10teamgeneral": {
|
||||
"dataType": 0,
|
||||
"category": 13,
|
||||
"nameResourceKey": "azureOperationalInsightsName",
|
||||
"descriptionResourceKey": "azureOperationalInsightsDescription",
|
||||
"childSettings": [
|
||||
{
|
||||
"dataType": 20,
|
||||
"category": 13,
|
||||
"nameResourceKey": "workspaceIDName",
|
||||
"descriptionResourceKey": "empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "azureOperationalInsightsWorkspaceId",
|
||||
"booleanActions": 0,
|
||||
"policyType": 86,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 20,
|
||||
"category": 13,
|
||||
"nameResourceKey": "workspaceKeyName",
|
||||
"descriptionResourceKey": "empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "azureOperationalInsightsWorkspaceKey",
|
||||
"booleanActions": 0,
|
||||
"policyType": 86,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "syntheticAzureOperationalInsightsEnabled",
|
||||
"booleanActions": 2,
|
||||
"defaultValue": false,
|
||||
"policyType": 86,
|
||||
"enabled": true
|
||||
}
|
||||
}
|
||||
1177
Documentation/ObjectInfo/bitlocker_windows10endpointprotection.json
Normal file
1177
Documentation/ObjectInfo/bitlocker_windows10endpointprotection.json
Normal file
File diff suppressed because it is too large
Load Diff
111
Documentation/ObjectInfo/browser_androidgeneral.json
Normal file
111
Documentation/ObjectInfo/browser_androidgeneral.json
Normal file
@@ -0,0 +1,111 @@
|
||||
{
|
||||
"browser_androidgeneral": {
|
||||
"dataType": 0,
|
||||
"category": 15,
|
||||
"nameResourceKey": "knoxBlockWebBrowserName",
|
||||
"descriptionResourceKey": "knoxBlockWebBrowserDescription",
|
||||
"childSettings": [
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 15,
|
||||
"nameResourceKey": "knoxBlockAutofillName",
|
||||
"descriptionResourceKey": "knoxBlockAutofillDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "webBrowserBlockAutofill",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 20,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 15,
|
||||
"nameResourceKey": "knoxBlockCookiesName",
|
||||
"descriptionResourceKey": "KnoxBlockCookiesDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "notConfigured",
|
||||
"value": "browserDefault",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "allowOption",
|
||||
"value": "allowAlways",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "blockAllCookiesOption",
|
||||
"value": "blockAlways",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "allowVisitedSitesCookiesOption",
|
||||
"value": "allowFromWebsitesVisited",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "allowCurrentWebSiteCookiesOption",
|
||||
"value": "allowCurrentWebSite",
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "webBrowserCookieSettings",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "browserDefault",
|
||||
"unconfiguredValue": "browserDefault",
|
||||
"policyType": 20,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 15,
|
||||
"nameResourceKey": "knoxBlockJavaScriptName",
|
||||
"descriptionResourceKey": "knoxBlockJavaScriptDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "webBrowserBlockJavaScript",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 20,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 15,
|
||||
"nameResourceKey": "knoxBlockPopUpsName",
|
||||
"descriptionResourceKey": "knoxBlockPopUpsDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "webBrowserBlockPopups",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 20,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "webBrowserBlocked",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 20,
|
||||
"enabled": true
|
||||
}
|
||||
}
|
||||
355
Documentation/ObjectInfo/browser_windows8general.json
Normal file
355
Documentation/ObjectInfo/browser_windows8general.json
Normal file
@@ -0,0 +1,355 @@
|
||||
{
|
||||
"browser_windows8general": [
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 15,
|
||||
"nameResourceKey": "blockAutofillName",
|
||||
"descriptionResourceKey": "blockAutofillDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "browserBlockAutofill",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 91,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 15,
|
||||
"nameResourceKey": "requireFraudWarningName",
|
||||
"descriptionResourceKey": "requireFraudWarningDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "browserRequireFraudWarning",
|
||||
"booleanActions": 1,
|
||||
"defaultValue": false,
|
||||
"policyType": 91,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 15,
|
||||
"nameResourceKey": "blockSmartScreenName",
|
||||
"descriptionResourceKey": "blockSmartScreenDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "browserRequireSmartScreen",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 91,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 15,
|
||||
"nameResourceKey": "blockJavaScriptName",
|
||||
"descriptionResourceKey": "blockJavaScriptDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "browserBlockJavaScript",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 91,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 15,
|
||||
"nameResourceKey": "blockPopUpsName",
|
||||
"descriptionResourceKey": "blockPopUpsDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "browserBlockPopups",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 91,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 15,
|
||||
"nameResourceKey": "blockDoNotTrackHeaderName",
|
||||
"descriptionResourceKey": "blockDoNotTrackHeaderDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "browserBlockSendingDoNotTrackHeader",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 91,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 15,
|
||||
"nameResourceKey": "blockPluginsName",
|
||||
"descriptionResourceKey": "blockPluginsDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "browserBlockPlugins",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 91,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 15,
|
||||
"nameResourceKey": "blockSingleWordEntryIntranetName",
|
||||
"descriptionResourceKey": "blockSingleWordEntryIntranetDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "browserBlockSingleWordEntryOnIntranetSites",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 91,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 15,
|
||||
"nameResourceKey": "blockIntranetAutoDetectName",
|
||||
"descriptionResourceKey": "blockIntranetAutoDetectDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "browserBlockAutomaticDetectionOfIntranetSites",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 91,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 15,
|
||||
"nameResourceKey": "internetSecurityLevelName",
|
||||
"descriptionResourceKey": "internetSecurityLevelDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "notConfigured",
|
||||
"value": "userDefined",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "highOption",
|
||||
"value": "high",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "mediumHighOption",
|
||||
"value": "mediumHigh",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "mediumOption",
|
||||
"value": "medium",
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "browserInternetSecurityLevel",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "userDefined",
|
||||
"unconfiguredValue": "userDefined",
|
||||
"policyType": 91,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 15,
|
||||
"nameResourceKey": "intranetSecurityLevelName",
|
||||
"descriptionResourceKey": "intranetSecurityLevelDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "notConfigured",
|
||||
"value": "userDefined",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "highOption",
|
||||
"value": "high",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "mediumHighOption",
|
||||
"value": "mediumHigh",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "mediumOption",
|
||||
"value": "medium",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "mediumLowOption",
|
||||
"value": "mediumLow",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "lowOption",
|
||||
"value": "low",
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "browserIntranetSecurityLevel",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "userDefined",
|
||||
"unconfiguredValue": "userDefined",
|
||||
"policyType": 91,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 15,
|
||||
"nameResourceKey": "trustedSitesSecurityLevelName",
|
||||
"descriptionResourceKey": "trustedSitesSecurityLevelDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "notConfigured",
|
||||
"value": "userDefined",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "highOption",
|
||||
"value": "high",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "mediumHighOption",
|
||||
"value": "mediumHigh",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "mediumOption",
|
||||
"value": "medium",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "mediumLowOption",
|
||||
"value": "mediumLow",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "lowOption",
|
||||
"value": "low",
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "browserTrustedSitesSecurityLevel",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "userDefined",
|
||||
"unconfiguredValue": "userDefined",
|
||||
"policyType": 91,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 15,
|
||||
"nameResourceKey": "restrictedSitesSecurityLevelName",
|
||||
"descriptionResourceKey": "restrictedSitesSecurityLevelDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "browserRequireHighSecurityForRestrictedSites",
|
||||
"booleanActions": 4,
|
||||
"defaultValue": false,
|
||||
"policyType": 91,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 15,
|
||||
"nameResourceKey": "enterpriseModeMenuAccessName",
|
||||
"descriptionResourceKey": "enterpriseModeMenuAccessDescription",
|
||||
"childSettings": [
|
||||
{
|
||||
"dataType": 20,
|
||||
"category": 15,
|
||||
"nameResourceKey": "loggingReportLocationName",
|
||||
"descriptionResourceKey": "loggingReportLocationDescription",
|
||||
"emptyValueResourceKey": "enterpriseModeLoggingExample",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "browserLoggingReportLocation",
|
||||
"booleanActions": 0,
|
||||
"policyType": 91,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "browserBlockEnterpriseModeAccess",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 91,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 20,
|
||||
"category": 15,
|
||||
"nameResourceKey": "enterpriseModeSiteListLocationName",
|
||||
"descriptionResourceKey": "enterpriseModeSiteListLocationDescription",
|
||||
"emptyValueResourceKey": "enterpriseModeSiteListExample",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "browserEnterpriseModeSiteListLocation",
|
||||
"booleanActions": 0,
|
||||
"policyType": 91,
|
||||
"enabled": true
|
||||
}
|
||||
]
|
||||
}
|
||||
19
Documentation/ObjectInfo/browser_windowsphonegeneral.json
Normal file
19
Documentation/ObjectInfo/browser_windowsphonegeneral.json
Normal file
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"browser_windowsphonegeneral": {
|
||||
"dataType": 0,
|
||||
"category": 15,
|
||||
"nameResourceKey": "blockWebBrowserName",
|
||||
"descriptionResourceKey": "blockWebBrowserDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "webBrowserBlocked",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 100,
|
||||
"enabled": true
|
||||
}
|
||||
}
|
||||
469
Documentation/ObjectInfo/builtinapps_iosgeneral.json
Normal file
469
Documentation/ObjectInfo/builtinapps_iosgeneral.json
Normal file
@@ -0,0 +1,469 @@
|
||||
{
|
||||
"builtinapps_iosgeneral": [
|
||||
{
|
||||
"isSettingDescription": false,
|
||||
"showAsSectionHeader": true,
|
||||
"dataType": 8,
|
||||
"category": 16,
|
||||
"nameResourceKey": "allEnrollmentTypesHeaderName",
|
||||
"descriptionResourceKey": "allEnrollmentTypesHeaderDescription",
|
||||
"childSettings": [
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 16,
|
||||
"nameResourceKey": "blockSiriName",
|
||||
"childSettings": [
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 16,
|
||||
"nameResourceKey": "blockSiriWhenLockedName",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "siriBlockedWhenLocked",
|
||||
"booleanActions": 9,
|
||||
"defaultValue": false,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "siriBlocked",
|
||||
"booleanActions": 9,
|
||||
"defaultValue": false,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 16,
|
||||
"nameResourceKey": "requireFraudWarningNameIOS",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "safariRequireFraudWarning",
|
||||
"booleanActions": 9,
|
||||
"defaultValue": false,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"isSettingDescription": false,
|
||||
"showAsSectionHeader": true,
|
||||
"dataType": 8,
|
||||
"category": 16,
|
||||
"nameResourceKey": "deviceEnrollmentAndAutomatedDeviceEnrollmentHeaderName",
|
||||
"descriptionResourceKey": "deviceEnrollmentAndAutomatedDeviceEnrollmentHeaderDescription",
|
||||
"childSettings": [
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 16,
|
||||
"nameResourceKey": "blockSpotlightInternetResultsName",
|
||||
"descriptionResourceKey": "blockSpotlightInternetResultsDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "spotlightBlockInternetResults",
|
||||
"booleanActions": 9,
|
||||
"defaultValue": false,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 16,
|
||||
"nameResourceKey": "blockCookiesNameIOS",
|
||||
"descriptionResourceKey": "blockCookiesDescriptionIOS",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "notConfigured",
|
||||
"value": "browserDefault",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "allowOption",
|
||||
"value": "allowAlways",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "blockAllCookiesOption",
|
||||
"value": "blockAlways",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "allowVisitedSitesCookiesOption",
|
||||
"value": "allowFromWebsitesVisited",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "allowCurrentWebSiteCookiesOption",
|
||||
"value": "allowCurrentWebSite",
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "safariCookieSettings",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "browserDefault",
|
||||
"unconfiguredValue": "browserDefault",
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 16,
|
||||
"nameResourceKey": "blockJavaScriptNameIOS",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "safariBlockJavaScript",
|
||||
"booleanActions": 9,
|
||||
"defaultValue": false,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 16,
|
||||
"nameResourceKey": "blockPopUpsNameIOS",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "safariBlockPopups",
|
||||
"booleanActions": 9,
|
||||
"defaultValue": false,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"isSettingDescription": false,
|
||||
"showAsSectionHeader": true,
|
||||
"dataType": 8,
|
||||
"category": 16,
|
||||
"nameResourceKey": "automatedDeviceEnrollmentHeaderName",
|
||||
"descriptionResourceKey": "automatedDeviceEnrollmentHeaderDescription",
|
||||
"childSettings": [
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 16,
|
||||
"nameResourceKey": "blockIosCameraName",
|
||||
"childSettings": [
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 16,
|
||||
"nameResourceKey": "blockFacetimeName",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "faceTimeBlocked",
|
||||
"booleanActions": 9,
|
||||
"defaultValue": false,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "cameraBlocked",
|
||||
"booleanActions": 9,
|
||||
"defaultValue": false,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 16,
|
||||
"nameResourceKey": "requireSiriProfanityFilterName",
|
||||
"descriptionResourceKey": "requireSiriProfanityFilterDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "siriRequireProfanityFilter",
|
||||
"booleanActions": 9,
|
||||
"defaultValue": false,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 16,
|
||||
"nameResourceKey": "blockSiriUserGeneratedContentName",
|
||||
"descriptionResourceKey": "blockSiriUserGeneratedContentDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "siriBlockUserGeneratedContent",
|
||||
"booleanActions": 9,
|
||||
"defaultValue": false,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 16,
|
||||
"nameResourceKey": "blockAppleNewsName",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "appleNewsBlocked",
|
||||
"booleanActions": 9,
|
||||
"defaultValue": false,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 16,
|
||||
"nameResourceKey": "blockIBooksStoreName",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "iBooksStoreBlocked",
|
||||
"booleanActions": 9,
|
||||
"defaultValue": false,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 16,
|
||||
"nameResourceKey": "blockMessagesName",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "messagesBlocked",
|
||||
"booleanActions": 9,
|
||||
"defaultValue": false,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 16,
|
||||
"nameResourceKey": "blockPodcastsName",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "podcastsBlocked",
|
||||
"booleanActions": 9,
|
||||
"defaultValue": false,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 16,
|
||||
"nameResourceKey": "blockITunesMusicServiceName",
|
||||
"descriptionResourceKey": "blockITunesMusicServiceDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "iTunesBlockMusicService",
|
||||
"booleanActions": 9,
|
||||
"defaultValue": false,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 16,
|
||||
"nameResourceKey": "blockITunesRadioName",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "iTunesBlockRadio",
|
||||
"booleanActions": 9,
|
||||
"defaultValue": false,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 16,
|
||||
"nameResourceKey": "blockITunesStoreName",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "iTunesBlocked",
|
||||
"booleanActions": 9,
|
||||
"defaultValue": false,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 16,
|
||||
"nameResourceKey": "blockFindMyDeviceName",
|
||||
"descriptionResourceKey": "blockFindMyDeviceDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "findMyDeviceInFindMyAppBlocked",
|
||||
"booleanActions": 9,
|
||||
"defaultValue": false,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 16,
|
||||
"nameResourceKey": "blockFindMyFriendsName",
|
||||
"descriptionResourceKey": "blockFindMyFriendsDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "findMyFriendsInFindMyAppBlocked",
|
||||
"booleanActions": 9,
|
||||
"defaultValue": false,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 16,
|
||||
"nameResourceKey": "blockFindMyFriendsModificationName",
|
||||
"descriptionResourceKey": "blockFindMyFriendsModificationDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "findMyFriendsBlocked",
|
||||
"booleanActions": 9,
|
||||
"defaultValue": false,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 16,
|
||||
"nameResourceKey": "blockSystemAppRemovalName",
|
||||
"descriptionResourceKey": "blockSystemAppRemovalDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "blockSystemAppRemoval",
|
||||
"booleanActions": 9,
|
||||
"defaultValue": false,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 16,
|
||||
"nameResourceKey": "blockSafariName",
|
||||
"descriptionResourceKey": "blockSafariDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "safariBlocked",
|
||||
"booleanActions": 9,
|
||||
"defaultValue": false,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 16,
|
||||
"nameResourceKey": "blockIosSafariAutofillName",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "safariBlockAutofill",
|
||||
"booleanActions": 9,
|
||||
"defaultValue": false,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
}
|
||||
]
|
||||
}
|
||||
102
Documentation/ObjectInfo/builtinapps_macgeneral.json
Normal file
102
Documentation/ObjectInfo/builtinapps_macgeneral.json
Normal file
@@ -0,0 +1,102 @@
|
||||
{
|
||||
"builtinapps_macgeneral": {
|
||||
"isSettingDescription": false,
|
||||
"showAsSectionHeader": true,
|
||||
"dataType": 8,
|
||||
"category": 16,
|
||||
"nameResourceKey": "allEnrollmentTypesHeaderNameMac",
|
||||
"descriptionResourceKey": "allEnrollmentTypesHeaderDescriptionMac",
|
||||
"childSettings": [
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 16,
|
||||
"nameResourceKey": "blockSafariAutofillName",
|
||||
"descriptionResourceKey": "blockSafariAutofillDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "safariBlockAutofill",
|
||||
"booleanActions": 9,
|
||||
"defaultValue": false,
|
||||
"policyType": 60,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 16,
|
||||
"nameResourceKey": "blockCameraNameMacOS",
|
||||
"descriptionResourceKey": "blockCameraDescriptionMacOS",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "cameraBlocked",
|
||||
"booleanActions": 9,
|
||||
"defaultValue": false,
|
||||
"policyType": 60,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 16,
|
||||
"nameResourceKey": "blockITunesMusicServiceNameMacOS",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "iTunesBlockMusicService",
|
||||
"booleanActions": 9,
|
||||
"defaultValue": false,
|
||||
"policyType": 60,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 16,
|
||||
"nameResourceKey": "blockSpotlightInternetResultsNameMacOS",
|
||||
"descriptionResourceKey": "blockSpotlightInternetResultsDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "spotlightBlockInternetResults",
|
||||
"booleanActions": 9,
|
||||
"defaultValue": false,
|
||||
"policyType": 60,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 16,
|
||||
"nameResourceKey": "blockITunesFileSharingName",
|
||||
"descriptionResourceKey": "blockITunesFileSharingDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "iTunesBlockFileSharing",
|
||||
"booleanActions": 9,
|
||||
"defaultValue": false,
|
||||
"policyType": 60,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 60,
|
||||
"enabled": true
|
||||
}
|
||||
}
|
||||
19
Documentation/ObjectInfo/cellular_windows8general.json
Normal file
19
Documentation/ObjectInfo/cellular_windows8general.json
Normal file
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"cellular_windows8general": {
|
||||
"dataType": 0,
|
||||
"category": 17,
|
||||
"nameResourceKey": "blockDataRoamingName",
|
||||
"descriptionResourceKey": "blockDataRoamingDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "cellularBlockDataRoaming",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 91,
|
||||
"enabled": true
|
||||
}
|
||||
}
|
||||
72
Documentation/ObjectInfo/cloudandstorage_androidgeneral.json
Normal file
72
Documentation/ObjectInfo/cloudandstorage_androidgeneral.json
Normal file
@@ -0,0 +1,72 @@
|
||||
{
|
||||
"cloudandstorage_androidgeneral": [
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 18,
|
||||
"nameResourceKey": "blockGoogleBackupName",
|
||||
"descriptionResourceKey": "blockGoogleBackupDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "storageBlockGoogleBackup",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 20,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 18,
|
||||
"nameResourceKey": "blockGoogleAccountAutoSyncName",
|
||||
"descriptionResourceKey": "blockGoogleAccountAutoSyncDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "googleAccountBlockAutoSync",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 20,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 18,
|
||||
"nameResourceKey": "knoxBlockRemovableStorageName",
|
||||
"descriptionResourceKey": "BlockRemovableStorageAndroidDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "storageBlockRemovableStorage",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 20,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 18,
|
||||
"nameResourceKey": "knoxRequireEncryptionOnRemovableStorageName",
|
||||
"descriptionResourceKey": "knoxRequireEncryptionOnRemovableStorageDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "storageRequireRemovableStorageEncryption",
|
||||
"booleanActions": 1,
|
||||
"defaultValue": false,
|
||||
"policyType": 20,
|
||||
"enabled": true
|
||||
}
|
||||
]
|
||||
}
|
||||
237
Documentation/ObjectInfo/cloudandstorage_iosgeneral.json
Normal file
237
Documentation/ObjectInfo/cloudandstorage_iosgeneral.json
Normal file
@@ -0,0 +1,237 @@
|
||||
{
|
||||
"cloudandstorage_iosgeneral": [
|
||||
{
|
||||
"isSettingDescription": false,
|
||||
"showAsSectionHeader": true,
|
||||
"dataType": 8,
|
||||
"category": 18,
|
||||
"nameResourceKey": "allEnrollmentTypesHeaderName",
|
||||
"descriptionResourceKey": "allEnrollmentTypesHeaderDescription",
|
||||
"childSettings": [
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 18,
|
||||
"nameResourceKey": "requireEncryptedBackupName",
|
||||
"descriptionResourceKey": "requireEncryptedBackupDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "iCloudRequireEncryptedBackup",
|
||||
"booleanActions": 9,
|
||||
"defaultValue": false,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 18,
|
||||
"nameResourceKey": "blockManagedAppsCloudSyncName",
|
||||
"descriptionResourceKey": "blockManagedAppsCloudSyncDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "iCloudBlockManagedAppsSync",
|
||||
"booleanActions": 9,
|
||||
"defaultValue": false,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 18,
|
||||
"nameResourceKey": "blockEnterpriseBookBackupName",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "enterpriseBookBlockBackup",
|
||||
"booleanActions": 9,
|
||||
"defaultValue": false,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 18,
|
||||
"nameResourceKey": "blockEnterpriseBookMetadataSyncName",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "enterpriseBookBlockMetadataSync",
|
||||
"booleanActions": 9,
|
||||
"defaultValue": false,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"isSettingDescription": false,
|
||||
"showAsSectionHeader": true,
|
||||
"dataType": 8,
|
||||
"category": 18,
|
||||
"nameResourceKey": "deviceEnrollmentAndAutomatedDeviceEnrollmentHeaderName",
|
||||
"descriptionResourceKey": "deviceEnrollmentAndAutomatedDeviceEnrollmentHeaderDescription",
|
||||
"childSettings": [
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 18,
|
||||
"nameResourceKey": "blockICloudPhotoStreamSyncName",
|
||||
"descriptionResourceKey": "blockICloudPhotoStreamSyncDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "iCloudBlockPhotoStreamSync",
|
||||
"booleanActions": 9,
|
||||
"defaultValue": false,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 18,
|
||||
"nameResourceKey": "blockICloudPhotoLibraryName",
|
||||
"descriptionResourceKey": "blockICloudPhotoLibraryDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "iCloudBlockPhotoLibrary",
|
||||
"booleanActions": 9,
|
||||
"defaultValue": false,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 18,
|
||||
"nameResourceKey": "blockSharedPhotoStreamName",
|
||||
"descriptionResourceKey": "blockSharedPhotoStreamDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "iCloudBlockSharedPhotoStream",
|
||||
"booleanActions": 9,
|
||||
"defaultValue": false,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 18,
|
||||
"nameResourceKey": "blockIosActivityContinuationName",
|
||||
"descriptionResourceKey": "blockIosActivityContinuationDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "iCloudBlockActivityContinuation",
|
||||
"booleanActions": 9,
|
||||
"defaultValue": false,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"isSettingDescription": false,
|
||||
"showAsSectionHeader": true,
|
||||
"dataType": 8,
|
||||
"category": 18,
|
||||
"nameResourceKey": "automatedDeviceEnrollmentHeaderName",
|
||||
"descriptionResourceKey": "automatedDeviceEnrollmentHeaderDescription",
|
||||
"childSettings": [
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 18,
|
||||
"nameResourceKey": "blockICloudBackupName",
|
||||
"descriptionResourceKey": "blockICloudBackupDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "iCloudBlockBackup",
|
||||
"booleanActions": 9,
|
||||
"defaultValue": false,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 18,
|
||||
"nameResourceKey": "blockIosICloudDocumentSyncName",
|
||||
"descriptionResourceKey": "blockIosICloudDocumentSyncDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "iCloudBlockDocumentSync",
|
||||
"booleanActions": 9,
|
||||
"defaultValue": false,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 18,
|
||||
"nameResourceKey": "blockIosKeychainCloudSyncName",
|
||||
"descriptionResourceKey": "blockIosKeychainCloudSyncDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "keychainBlockCloudSync",
|
||||
"booleanActions": 9,
|
||||
"defaultValue": false,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
}
|
||||
]
|
||||
}
|
||||
188
Documentation/ObjectInfo/cloudandstorage_macgeneral.json
Normal file
188
Documentation/ObjectInfo/cloudandstorage_macgeneral.json
Normal file
@@ -0,0 +1,188 @@
|
||||
{
|
||||
"cloudandstorage_macgeneral": {
|
||||
"isSettingDescription": false,
|
||||
"showAsSectionHeader": true,
|
||||
"dataType": 8,
|
||||
"category": 18,
|
||||
"nameResourceKey": "allEnrollmentTypesHeaderNameMac",
|
||||
"descriptionResourceKey": "allEnrollmentTypesHeaderDescriptionMac",
|
||||
"childSettings": [
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 18,
|
||||
"nameResourceKey": "blockKeychainCloudSyncName",
|
||||
"descriptionResourceKey": "blockKeychainCloudSyncDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "keychainBlockCloudSync",
|
||||
"booleanActions": 9,
|
||||
"defaultValue": false,
|
||||
"policyType": 60,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 18,
|
||||
"nameResourceKey": "blockICloudDocumentSyncName",
|
||||
"descriptionResourceKey": "blockICloudDocumentSyncDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "iCloudBlockDocumentSync",
|
||||
"booleanActions": 9,
|
||||
"defaultValue": false,
|
||||
"policyType": 60,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 18,
|
||||
"nameResourceKey": "blockICloudMailName",
|
||||
"descriptionResourceKey": "blockICloudMailDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "iCloudBlockMail",
|
||||
"booleanActions": 9,
|
||||
"defaultValue": false,
|
||||
"policyType": 60,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 18,
|
||||
"nameResourceKey": "blockICloudAddressBookName",
|
||||
"descriptionResourceKey": "blockICloudAddressBookDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "iCloudBlockAddressBook",
|
||||
"booleanActions": 9,
|
||||
"defaultValue": false,
|
||||
"policyType": 60,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 18,
|
||||
"nameResourceKey": "blockICloudCalendarName",
|
||||
"descriptionResourceKey": "blockICloudCalendarDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "iCloudBlockCalendar",
|
||||
"booleanActions": 9,
|
||||
"defaultValue": false,
|
||||
"policyType": 60,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 18,
|
||||
"nameResourceKey": "blockICloudRemindersName",
|
||||
"descriptionResourceKey": "blockICloudRemindersDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "iCloudBlockReminders",
|
||||
"booleanActions": 9,
|
||||
"defaultValue": false,
|
||||
"policyType": 60,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 18,
|
||||
"nameResourceKey": "blockICloudBookmarksName",
|
||||
"descriptionResourceKey": "blockICloudBookmarksDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "iCloudBlockBookmarks",
|
||||
"booleanActions": 9,
|
||||
"defaultValue": false,
|
||||
"policyType": 60,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 18,
|
||||
"nameResourceKey": "blockICloudNotesName",
|
||||
"descriptionResourceKey": "blockICloudNotesDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "iCloudBlockNotes",
|
||||
"booleanActions": 9,
|
||||
"defaultValue": false,
|
||||
"policyType": 60,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 18,
|
||||
"nameResourceKey": "MacBlockICloudPhotoLibraryName",
|
||||
"descriptionResourceKey": "blockICloudPhotoLibraryDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "iCloudBlockPhotoLibrary",
|
||||
"booleanActions": 9,
|
||||
"defaultValue": false,
|
||||
"policyType": 60,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 18,
|
||||
"nameResourceKey": "blockMacActivityContinuationName",
|
||||
"descriptionResourceKey": "blockMacActivityContinuationDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "iCloudBlockActivityContinuation",
|
||||
"booleanActions": 9,
|
||||
"defaultValue": false,
|
||||
"policyType": 60,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 60,
|
||||
"enabled": true
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,82 @@
|
||||
{
|
||||
"cloudandstorage_windows10general": [
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 18,
|
||||
"nameResourceKey": "blockMicrosoftAccountName",
|
||||
"descriptionResourceKey": "blockMicrosoftAccountDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "microsoftAccountBlocked",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 78,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 18,
|
||||
"nameResourceKey": "blockNonMicrosoftAccountName",
|
||||
"descriptionResourceKey": "blockNonMicrosoftAccountDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "accountsBlockAddingNonMicrosoftAccountEmail",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 78,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 18,
|
||||
"nameResourceKey": "blockSettingsSynchronizationForMicrosoftAccountName",
|
||||
"descriptionResourceKey": "blockSettingsSynchronizationForMicrosoftAccountDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "microsoftAccountBlockSettingsSync",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 78,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 18,
|
||||
"nameResourceKey": "AccountsSignInAssistantSettingsName",
|
||||
"descriptionResourceKey": "AccountsSignInAssistantSettingsDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "NotConfigured",
|
||||
"value": "notConfigured",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "disableOption",
|
||||
"value": "disabled",
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "microsoftAccountSignInAssistantSettings",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "notConfigured",
|
||||
"unconfiguredValue": "notConfigured",
|
||||
"policyType": 78,
|
||||
"enabled": true
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,37 @@
|
||||
{
|
||||
"cloudandstorage_windows8general": [
|
||||
{
|
||||
"dataType": 20,
|
||||
"category": 18,
|
||||
"nameResourceKey": "workFoldersURLName",
|
||||
"descriptionResourceKey": "workFoldersURLDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "workFoldersUrl",
|
||||
"booleanActions": 0,
|
||||
"policyType": 91,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 18,
|
||||
"nameResourceKey": "microsoftAccountOptionalForMailName",
|
||||
"descriptionResourceKey": "microsoftAccountOptionalForMailDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "accountsBlockAddingNonMicrosoftAccountEmail",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 91,
|
||||
"enabled": true
|
||||
}
|
||||
]
|
||||
}
|
||||
116
Documentation/ObjectInfo/cloudprint_windows10general.json
Normal file
116
Documentation/ObjectInfo/cloudprint_windows10general.json
Normal file
@@ -0,0 +1,116 @@
|
||||
{
|
||||
"cloudprint_windows10general": [
|
||||
{
|
||||
"dataType": 20,
|
||||
"category": 19,
|
||||
"nameResourceKey": "cloudPrintDiscoveryEndPointName",
|
||||
"descriptionResourceKey": "cloudPrintDiscoveryEndPointDescription",
|
||||
"emptyValueResourceKey": "cloudPrintDiscoveryEndPointExample",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "enterpriseCloudPrintDiscoveryEndPoint",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "",
|
||||
"unconfiguredValue": "",
|
||||
"policyType": 78,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 20,
|
||||
"category": 19,
|
||||
"nameResourceKey": "cloudPrintOAuthAuthorityName",
|
||||
"descriptionResourceKey": "cloudPrintOAuthAuthorityDescription",
|
||||
"emptyValueResourceKey": "cloudPrintOAuthAuthorityExample",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "enterpriseCloudPrintOAuthAuthority",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "",
|
||||
"unconfiguredValue": "",
|
||||
"policyType": 78,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 20,
|
||||
"category": 19,
|
||||
"nameResourceKey": "cloudPrintOAuthClientIdName",
|
||||
"descriptionResourceKey": "cloudPrintOAuthClientIdDescription",
|
||||
"emptyValueResourceKey": "cloudPrintOAuthClientIdExample",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "enterpriseCloudPrintOAuthClientIdentifier",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "",
|
||||
"unconfiguredValue": "",
|
||||
"policyType": 78,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 20,
|
||||
"category": 19,
|
||||
"nameResourceKey": "cloudPrintResourceIdName",
|
||||
"descriptionResourceKey": "cloudPrintResourceIdDescription",
|
||||
"emptyValueResourceKey": "cloudPrintResourceIdExample",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "enterpriseCloudPrintResourceIdentifier",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "",
|
||||
"unconfiguredValue": "",
|
||||
"policyType": 78,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 14,
|
||||
"category": 19,
|
||||
"nameResourceKey": "cloudPrintDiscoveryMaxLimitName",
|
||||
"descriptionResourceKey": "cloudPrintDiscoveryMaxLimitDescription",
|
||||
"emptyValueResourceKey": "cloudPrintDiscoveryMaxLimitExample",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "enterpriseCloudPrintDiscoveryMaxLimit",
|
||||
"booleanActions": 0,
|
||||
"policyType": 78,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 20,
|
||||
"category": 19,
|
||||
"nameResourceKey": "mopriaDiscoveryResourceIdName",
|
||||
"descriptionResourceKey": "mopriaDiscoveryResourceIdDescription",
|
||||
"emptyValueResourceKey": "mopriaDiscoveryResourceIdExample",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "enterpriseCloudPrintMopriaDiscoveryResourceIdentifier",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "",
|
||||
"unconfiguredValue": "",
|
||||
"policyType": 78,
|
||||
"enabled": true
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,34 @@
|
||||
{
|
||||
"complianceemailprofile_complianceios": {
|
||||
"isSettingDescription": false,
|
||||
"showAsSectionHeader": false,
|
||||
"dataType": 8,
|
||||
"category": 62,
|
||||
"nameResourceKey": "complianceEmailProfileHeader",
|
||||
"childSettings": [
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 62,
|
||||
"nameResourceKey": "complianceEmailProfileRequired",
|
||||
"descriptionResourceKey": "complianceEmailProfileRequiredDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "managedEmailProfileRequired",
|
||||
"booleanActions": 1,
|
||||
"defaultValue": false,
|
||||
"policyType": 33,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 33,
|
||||
"enabled": true
|
||||
}
|
||||
}
|
||||
269
Documentation/ObjectInfo/connecteddevices_iosgeneral.json
Normal file
269
Documentation/ObjectInfo/connecteddevices_iosgeneral.json
Normal file
@@ -0,0 +1,269 @@
|
||||
{
|
||||
"connecteddevices_iosgeneral": [
|
||||
{
|
||||
"isSettingDescription": false,
|
||||
"showAsSectionHeader": true,
|
||||
"dataType": 8,
|
||||
"category": 20,
|
||||
"nameResourceKey": "allEnrollmentTypesHeaderName",
|
||||
"descriptionResourceKey": "allEnrollmentTypesHeaderDescription",
|
||||
"childSettings": [
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 20,
|
||||
"nameResourceKey": "forceWatchWristDetectionName",
|
||||
"descriptionResourceKey": "forceWatchWristDetectionDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "appleWatchForceWristDetection",
|
||||
"booleanActions": 9,
|
||||
"defaultValue": false,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"isSettingDescription": false,
|
||||
"showAsSectionHeader": true,
|
||||
"dataType": 8,
|
||||
"category": 20,
|
||||
"nameResourceKey": "deviceEnrollmentAndAutomatedDeviceEnrollmentHeaderName",
|
||||
"descriptionResourceKey": "deviceEnrollmentAndAutomatedDeviceEnrollmentHeaderDescription",
|
||||
"childSettings": [
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 20,
|
||||
"nameResourceKey": "forceAirPlayOutgoingRequestsPairingPasswordName",
|
||||
"descriptionResourceKey": "forceAirPlayOutgoingRequestsPairingPasswordDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "airPlayForcePairingPasswordForOutgoingRequests",
|
||||
"booleanActions": 9,
|
||||
"defaultValue": false,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"isSettingDescription": false,
|
||||
"showAsSectionHeader": true,
|
||||
"dataType": 8,
|
||||
"category": 20,
|
||||
"nameResourceKey": "automatedDeviceEnrollmentHeaderName",
|
||||
"descriptionResourceKey": "automatedDeviceEnrollmentHeaderDescription",
|
||||
"childSettings": [
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 20,
|
||||
"nameResourceKey": "blockAirDropName",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "airDropBlocked",
|
||||
"booleanActions": 9,
|
||||
"defaultValue": false,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 20,
|
||||
"nameResourceKey": "blockAppleWatchPairingName",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "appleWatchBlockPairing",
|
||||
"booleanActions": 9,
|
||||
"defaultValue": false,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 20,
|
||||
"nameResourceKey": "blockBluetoothModificationName",
|
||||
"descriptionResourceKey": "blockBluetoothModificationDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "bluetoothBlockModification",
|
||||
"booleanActions": 9,
|
||||
"defaultValue": false,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 20,
|
||||
"nameResourceKey": "blockHostPairingName",
|
||||
"descriptionResourceKey": "blockHostPairingDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "hostPairingBlocked",
|
||||
"booleanActions": 9,
|
||||
"defaultValue": false,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 20,
|
||||
"nameResourceKey": "blockAirPrintNameIOS",
|
||||
"childSettings": [
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 20,
|
||||
"nameResourceKey": "blockAirPrintCredentialsStorageName",
|
||||
"descriptionResourceKey": "blockAirPrintCredentialsStorageDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "airPrintBlockCredentialsStorage",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 20,
|
||||
"nameResourceKey": "forceAirPrintTrustedTLSNameIOS",
|
||||
"descriptionResourceKey": "forceAirPrintTrustedTLSDescriptionIOS",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "airPrintForceTrustedTLS",
|
||||
"booleanActions": 9,
|
||||
"defaultValue": false,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 20,
|
||||
"nameResourceKey": "blockAirPrintiBeaconDiscoveryNameIOS",
|
||||
"descriptionResourceKey": "blockAirPrintiBeaconDiscoveryDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "airPrintBlockiBeaconDiscovery",
|
||||
"booleanActions": 9,
|
||||
"defaultValue": false,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "airPrintBlocked",
|
||||
"booleanActions": 9,
|
||||
"defaultValue": false,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 20,
|
||||
"nameResourceKey": "blockProximitySetupToNewDeviceName",
|
||||
"descriptionResourceKey": "blockProximitySetupToNewDeviceDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "proximityBlockSetupToNewDevice",
|
||||
"booleanActions": 9,
|
||||
"defaultValue": false,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 20,
|
||||
"nameResourceKey": "blockFilesUsbDriveAccessName",
|
||||
"descriptionResourceKey": "blockFilesUsbDriveAccessDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "filesUsbDriveAccessBlocked",
|
||||
"booleanActions": 9,
|
||||
"defaultValue": false,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 20,
|
||||
"nameResourceKey": "nfcBlockedName",
|
||||
"descriptionResourceKey": "nfcBlockedDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "nfcBlocked",
|
||||
"booleanActions": 9,
|
||||
"defaultValue": false,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 45,
|
||||
"enabled": true
|
||||
}
|
||||
]
|
||||
}
|
||||
51
Documentation/ObjectInfo/connecteddevices_macgeneral.json
Normal file
51
Documentation/ObjectInfo/connecteddevices_macgeneral.json
Normal file
@@ -0,0 +1,51 @@
|
||||
{
|
||||
"connecteddevices_macgeneral": {
|
||||
"isSettingDescription": false,
|
||||
"showAsSectionHeader": true,
|
||||
"dataType": 8,
|
||||
"category": 20,
|
||||
"nameResourceKey": "allEnrollmentTypesHeaderNameMac",
|
||||
"descriptionResourceKey": "allEnrollmentTypesHeaderDescriptionMac",
|
||||
"childSettings": [
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 20,
|
||||
"nameResourceKey": "blockAirDropNameMacOS",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "airDropBlocked",
|
||||
"booleanActions": 9,
|
||||
"defaultValue": false,
|
||||
"policyType": 60,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 20,
|
||||
"nameResourceKey": "blockAppleWatchAutoUnlockName",
|
||||
"descriptionResourceKey": "blockAppleWatchAutoUnlockDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "appleWatchBlockAutoUnlock",
|
||||
"booleanActions": 9,
|
||||
"defaultValue": false,
|
||||
"policyType": 60,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 60,
|
||||
"enabled": true
|
||||
}
|
||||
}
|
||||
140
Documentation/ObjectInfo/connectivity_androidgeneral.json
Normal file
140
Documentation/ObjectInfo/connectivity_androidgeneral.json
Normal file
@@ -0,0 +1,140 @@
|
||||
{
|
||||
"connectivity_androidgeneral": [
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 21,
|
||||
"nameResourceKey": "knoxBlockDataRoamingName",
|
||||
"descriptionResourceKey": "BlockDataRoamingAndroidDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "cellularBlockDataRoaming",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 20,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 21,
|
||||
"nameResourceKey": "blockSMSAndMMSName",
|
||||
"descriptionResourceKey": "blockSMSAndMMSAndroidDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "cellularBlockMessaging",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 20,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 21,
|
||||
"nameResourceKey": "knoxBlockVoiceDialingName",
|
||||
"descriptionResourceKey": "blockVoiceDialingAndroidDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "voiceDialingBlocked",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 20,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 21,
|
||||
"nameResourceKey": "knoxBlockVoiceRoamingName",
|
||||
"descriptionResourceKey": "blockVoiceRoamingAndroidDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "cellularBlockVoiceRoaming",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 20,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 21,
|
||||
"nameResourceKey": "knoxBlockBluetoothName",
|
||||
"descriptionResourceKey": "blockBluetoothAndroidDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "bluetoothBlocked",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 20,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 21,
|
||||
"nameResourceKey": "knoxBlockNFCName",
|
||||
"descriptionResourceKey": "blockNFCAndroidDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "nfcBlocked",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 20,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 21,
|
||||
"nameResourceKey": "knoxBlockWiFiName",
|
||||
"descriptionResourceKey": "blockWiFiAndroidDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "wiFiBlocked",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 20,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 21,
|
||||
"nameResourceKey": "knoxBlockWiFiTetheringName",
|
||||
"descriptionResourceKey": "blockWiFiTetheringAndroidDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "cellularBlockWiFiTethering",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 20,
|
||||
"enabled": true
|
||||
}
|
||||
]
|
||||
}
|
||||
327
Documentation/ObjectInfo/connectivity_windows10general.json
Normal file
327
Documentation/ObjectInfo/connectivity_windows10general.json
Normal file
@@ -0,0 +1,327 @@
|
||||
{
|
||||
"connectivity_windows10general": [
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 21,
|
||||
"nameResourceKey": "cellularDataName",
|
||||
"descriptionResourceKey": "cellularDataDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "notConfigured",
|
||||
"value": "allowed",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "blockOption",
|
||||
"value": "blocked",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "allowNotEditableOption",
|
||||
"value": "required",
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "cellularData",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "allowed",
|
||||
"unconfiguredValue": "allowed",
|
||||
"policyType": 78,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 21,
|
||||
"nameResourceKey": "blockDataRoamingName",
|
||||
"descriptionResourceKey": "blockDataRoamingDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "cellularBlockDataWhenRoaming",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 78,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 21,
|
||||
"nameResourceKey": "vpnOverCellularName",
|
||||
"descriptionResourceKey": "empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "cellularBlockVpn",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 78,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 21,
|
||||
"nameResourceKey": "vpnRoamingOverCellularName",
|
||||
"descriptionResourceKey": "empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "cellularBlockVpnWhenRoaming",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 78,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 21,
|
||||
"nameResourceKey": "blockConnectedDevicesServiceName",
|
||||
"descriptionResourceKey": "blockConnectedDevicesServiceDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "connectedDevicesServiceBlocked",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 78,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 21,
|
||||
"nameResourceKey": "blockNFCName",
|
||||
"descriptionResourceKey": "blockNFCDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "nfcBlocked",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 78,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 21,
|
||||
"nameResourceKey": "blockWiFiName",
|
||||
"descriptionResourceKey": "blockWiFiDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "wiFiBlocked",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 78,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 21,
|
||||
"nameResourceKey": "blockWiFiHotspotAutoConnectName",
|
||||
"descriptionResourceKey": "blockWiFiHotspotAutoConnectDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "wiFiBlockAutomaticConnectHotspots",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 78,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 21,
|
||||
"nameResourceKey": "blockManualWifiConfigurationName",
|
||||
"descriptionResourceKey": "blockManualWifiConfigurationDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "wiFiBlockManualConfiguration",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 78,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 14,
|
||||
"category": 21,
|
||||
"nameResourceKey": "wiFiScanIntervalName",
|
||||
"descriptionResourceKey": "wiFiScanIntervalDescription",
|
||||
"emptyValueResourceKey": "wifiScanIntervalPlaceholder",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "wiFiScanInterval",
|
||||
"booleanActions": 0,
|
||||
"policyType": 78,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"isSettingDescription": false,
|
||||
"showAsSectionHeader": false,
|
||||
"dataType": 8,
|
||||
"category": 21,
|
||||
"nameResourceKey": "win10BluetoothHeader",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 78,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 21,
|
||||
"nameResourceKey": "blockBluetoothName",
|
||||
"descriptionResourceKey": "blockBluetoothDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "bluetoothBlocked",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 78,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 21,
|
||||
"nameResourceKey": "blockBluetoothDiscoverableModeName",
|
||||
"descriptionResourceKey": "blockBluetoothDiscoverableModeDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "bluetoothBlockDiscoverableMode",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 78,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 21,
|
||||
"nameResourceKey": "blockBluetoothPrepairingName",
|
||||
"descriptionResourceKey": "blockBluetoothPrepairingDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "bluetoothBlockPrePairing",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 78,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 21,
|
||||
"nameResourceKey": "blockBluetoothAdvertisingName",
|
||||
"descriptionResourceKey": "blockBluetoothAdvertisingDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "bluetoothBlockAdvertising",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 78,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 21,
|
||||
"nameResourceKey": "bluetoothBlockPromptedProximalConnectionsName",
|
||||
"descriptionResourceKey": "bluetoothBlockPromptedProximalConnectionsDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "bluetoothBlockPromptedProximalConnections",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"unconfiguredValue": false,
|
||||
"policyType": 78,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"columns": [
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 20,
|
||||
"category": 21,
|
||||
"nameResourceKey": "bluetoothAllowedServicesName",
|
||||
"emptyValueResourceKey": "guidExample",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "guidExample",
|
||||
"booleanActions": 0,
|
||||
"policyType": 78,
|
||||
"enabled": true
|
||||
}
|
||||
}
|
||||
],
|
||||
"dataType": 21,
|
||||
"category": 21,
|
||||
"nameResourceKey": "bluetoothAllowedServicesName",
|
||||
"descriptionResourceKey": "bluetoothAllowedServicesDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "bluetoothAllowedServices",
|
||||
"booleanActions": 0,
|
||||
"policyType": 78,
|
||||
"enabled": true
|
||||
}
|
||||
]
|
||||
}
|
||||
106
Documentation/ObjectInfo/connectivity_windowsphonegeneral.json
Normal file
106
Documentation/ObjectInfo/connectivity_windowsphonegeneral.json
Normal file
@@ -0,0 +1,106 @@
|
||||
{
|
||||
"connectivity_windowsphonegeneral": [
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 21,
|
||||
"nameResourceKey": "blockWiFiName",
|
||||
"descriptionResourceKey": "blockWiFiDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "wifiBlocked",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 100,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 21,
|
||||
"nameResourceKey": "blockWiFiTetheringName",
|
||||
"descriptionResourceKey": "empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "cellularBlockWifiTethering",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 100,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 21,
|
||||
"nameResourceKey": "blockWiFiHotspotAutoConnectName",
|
||||
"descriptionResourceKey": "blockWiFiHotspotAutoConnectDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "wifiBlockAutomaticConnectHotspots",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 100,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 21,
|
||||
"nameResourceKey": "blockWiFiHotspotReportingName",
|
||||
"descriptionResourceKey": "blockWiFiHotspotReportingDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "wifiBlockHotspotReporting",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 100,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 21,
|
||||
"nameResourceKey": "blockNFCName",
|
||||
"descriptionResourceKey": "blockNFCDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "nfcBlocked",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 100,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 21,
|
||||
"nameResourceKey": "blockBluetoothName",
|
||||
"descriptionResourceKey": "blockBluetoothDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "bluetoothBlocked",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 100,
|
||||
"enabled": true
|
||||
}
|
||||
]
|
||||
}
|
||||
795
Documentation/ObjectInfo/contentcaching_macdevicefeatures.json
Normal file
795
Documentation/ObjectInfo/contentcaching_macdevicefeatures.json
Normal file
@@ -0,0 +1,795 @@
|
||||
{
|
||||
"contentcaching_macdevicefeatures": {
|
||||
"isSettingDescription": false,
|
||||
"showAsSectionHeader": true,
|
||||
"dataType": 8,
|
||||
"category": 22,
|
||||
"nameResourceKey": "allEnrollmentTypesHeaderNameMac",
|
||||
"descriptionResourceKey": "allEnrollmentTypesHeaderDescriptionMac",
|
||||
"childSettings": [
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 22,
|
||||
"nameResourceKey": "contentCachingEnabledName",
|
||||
"descriptionResourceKey": "contentCachingEnabledDescription",
|
||||
"childSettings": [
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 22,
|
||||
"nameResourceKey": "contentCachingTypeName",
|
||||
"descriptionResourceKey": "contentCachingTypeDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "contentCachingTypeAllContentOption",
|
||||
"value": "notConfigured",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "contentCachingTypeUserContentOnlyOption",
|
||||
"value": "userContentOnly",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "contentCachingTypeSharedContentOnlyOption",
|
||||
"value": "sharedContentOnly",
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "contentCachingType",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "notConfigured",
|
||||
"policyType": 57,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 14,
|
||||
"category": 22,
|
||||
"nameResourceKey": "contentCachingMaxSizeBytesName",
|
||||
"descriptionResourceKey": "contentCachingMaxSizeBytesDescription",
|
||||
"emptyValueResourceKey": "contentCachingMaxSizeBytesEmptyValue",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "contentCachingMaxSizeBytes",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": 0,
|
||||
"policyType": 57,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 20,
|
||||
"category": 22,
|
||||
"nameResourceKey": "contentCachingDataPathName",
|
||||
"descriptionResourceKey": "contentCachingDataPathDescription",
|
||||
"emptyValueResourceKey": "contentCachingDataPathEmptyValue",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "contentCachingDataPath",
|
||||
"booleanActions": 0,
|
||||
"policyType": 57,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 14,
|
||||
"category": 22,
|
||||
"nameResourceKey": "contentCachingPortName",
|
||||
"descriptionResourceKey": "contentCachingPortDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "contentCachingPort",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": 0,
|
||||
"policyType": 57,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 22,
|
||||
"nameResourceKey": "contentCachingDisableConnectionSharingName",
|
||||
"descriptionResourceKey": "contentCachingDisableConnectionSharingDescription",
|
||||
"childSettings": [
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 22,
|
||||
"nameResourceKey": "contentCachingForceConnectionSharingName",
|
||||
"descriptionResourceKey": "contentCachingForceConnectionSharingDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "contentCachingForceConnectionSharing",
|
||||
"booleanActions": 9,
|
||||
"policyType": 57,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "contentCachingDisableConnectionSharing",
|
||||
"booleanActions": 9,
|
||||
"policyType": 57,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 22,
|
||||
"nameResourceKey": "contentCachingLogClientIdentitiesName",
|
||||
"descriptionResourceKey": "contentCachingLogClientIdentitiesDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "contentCachingLogClientIdentities",
|
||||
"booleanActions": 9,
|
||||
"policyType": 57,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 22,
|
||||
"nameResourceKey": "contentCachingBlockDeletionName",
|
||||
"descriptionResourceKey": "contentCachingBlockDeletionDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "contentCachingBlockDeletion",
|
||||
"booleanActions": 9,
|
||||
"policyType": 57,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 22,
|
||||
"nameResourceKey": "contentCachingShowAlertsName",
|
||||
"descriptionResourceKey": "contentCachingShowAlertsDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "contentCachingShowAlerts",
|
||||
"booleanActions": 9,
|
||||
"policyType": 57,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 22,
|
||||
"nameResourceKey": "contentCachingKeepAwakeName",
|
||||
"descriptionResourceKey": "contentCachingKeepAwakeDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "contentCachingKeepAwake",
|
||||
"booleanActions": 9,
|
||||
"policyType": 57,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 22,
|
||||
"nameResourceKey": "contentCachingClientPolicyName",
|
||||
"descriptionResourceKey": "contentCachingClientPolicyDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "notConfigured",
|
||||
"value": "notConfigured",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "clientsInLocalNetworkOption",
|
||||
"value": "clientsInLocalNetwork",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "clientsWithSamePublicIpAddressOption",
|
||||
"value": "clientsWithSamePublicIpAddress",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "clientsInCustomLocalNetworksOption",
|
||||
"value": "clientsInCustomLocalNetworks",
|
||||
"children": [
|
||||
{
|
||||
"columns": [
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 16,
|
||||
"category": 22,
|
||||
"nameResourceKey": "iPRangeAddressTypeName",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "notConfigured",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "iPv4Option",
|
||||
"value": "#microsoft.graph.iPv4Range",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "iPv6Option",
|
||||
"value": "#microsoft.graph.iPv6Range",
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "@odata.type",
|
||||
"booleanActions": 0,
|
||||
"policyType": 57,
|
||||
"enabled": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 20,
|
||||
"category": 22,
|
||||
"nameResourceKey": "iPRangeLowerAddressName",
|
||||
"emptyValueResourceKey": "iPRangeLowerAddressEmptyValue",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "lowerAddress",
|
||||
"booleanActions": 0,
|
||||
"policyType": 57,
|
||||
"enabled": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 20,
|
||||
"category": 22,
|
||||
"nameResourceKey": "iPRangeUpperAddressName",
|
||||
"emptyValueResourceKey": "iPRangeUpperAddressEmptyValue",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "upperAddress",
|
||||
"booleanActions": 0,
|
||||
"policyType": 57,
|
||||
"enabled": true
|
||||
}
|
||||
}
|
||||
],
|
||||
"dataType": 21,
|
||||
"category": 22,
|
||||
"nameResourceKey": "contentCachingClientListenRangesName",
|
||||
"descriptionResourceKey": "contentCachingClientListenRangesDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "contentCachingClientListenRanges",
|
||||
"booleanActions": 0,
|
||||
"policyType": 57,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "clientsInCustomLocalNetworksWithFallbackOption",
|
||||
"value": "clientsInCustomLocalNetworksWithFallback",
|
||||
"children": [
|
||||
{
|
||||
"columns": [
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 16,
|
||||
"category": 22,
|
||||
"nameResourceKey": "iPRangeAddressTypeName",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "notConfigured",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "iPv4Option",
|
||||
"value": "#microsoft.graph.iPv4Range",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "iPv6Option",
|
||||
"value": "#microsoft.graph.iPv6Range",
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "@odata.type",
|
||||
"booleanActions": 0,
|
||||
"policyType": 57,
|
||||
"enabled": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 20,
|
||||
"category": 22,
|
||||
"nameResourceKey": "iPRangeLowerAddressName",
|
||||
"emptyValueResourceKey": "iPRangeLowerAddressEmptyValue",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "lowerAddress",
|
||||
"booleanActions": 0,
|
||||
"policyType": 57,
|
||||
"enabled": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 20,
|
||||
"category": 22,
|
||||
"nameResourceKey": "iPRangeUpperAddressName",
|
||||
"emptyValueResourceKey": "iPRangeUpperAddressEmptyValue",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "upperAddress",
|
||||
"booleanActions": 0,
|
||||
"policyType": 57,
|
||||
"enabled": true
|
||||
}
|
||||
}
|
||||
],
|
||||
"dataType": 21,
|
||||
"category": 22,
|
||||
"nameResourceKey": "contentCachingClientListenRangesName",
|
||||
"descriptionResourceKey": "contentCachingClientListenRangesDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "contentCachingClientListenRanges",
|
||||
"booleanActions": 0,
|
||||
"policyType": 57,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "contentCachingClientPolicy",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "notConfigured",
|
||||
"policyType": 57,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"columns": [
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 16,
|
||||
"category": 22,
|
||||
"nameResourceKey": "iPRangeAddressTypeName",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "notConfigured",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "iPv4Option",
|
||||
"value": "#microsoft.graph.iPv4Range",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "iPv6Option",
|
||||
"value": "#microsoft.graph.iPv6Range",
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "@odata.type",
|
||||
"booleanActions": 0,
|
||||
"policyType": 57,
|
||||
"enabled": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 20,
|
||||
"category": 22,
|
||||
"nameResourceKey": "iPRangeLowerAddressName",
|
||||
"emptyValueResourceKey": "iPRangeLowerAddressEmptyValue",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "lowerAddress",
|
||||
"booleanActions": 0,
|
||||
"policyType": 57,
|
||||
"enabled": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 20,
|
||||
"category": 22,
|
||||
"nameResourceKey": "iPRangeUpperAddressName",
|
||||
"emptyValueResourceKey": "iPRangeUpperAddressEmptyValue",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "upperAddress",
|
||||
"booleanActions": 0,
|
||||
"policyType": 57,
|
||||
"enabled": true
|
||||
}
|
||||
}
|
||||
],
|
||||
"dataType": 21,
|
||||
"category": 22,
|
||||
"nameResourceKey": "contentCachingPublicRangesName",
|
||||
"descriptionResourceKey": "contentCachingPublicRangesDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "contentCachingPublicRanges",
|
||||
"booleanActions": 0,
|
||||
"policyType": 57,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 22,
|
||||
"nameResourceKey": "contentCachingPeerPolicyName",
|
||||
"descriptionResourceKey": "contentCachingPeerPolicyDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "notConfigured",
|
||||
"value": "notConfigured",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "peersInLocalNetworkOption",
|
||||
"value": "peersInLocalNetwork",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "peersWithSamePublicIpAddressOption",
|
||||
"value": "peersWithSamePublicIpAddress",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "peersInCustomLocalNetworksOption",
|
||||
"value": "peersInCustomLocalNetworks",
|
||||
"children": [
|
||||
{
|
||||
"columns": [
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 16,
|
||||
"category": 22,
|
||||
"nameResourceKey": "iPRangeAddressTypeName",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "notConfigured",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "iPv4Option",
|
||||
"value": "#microsoft.graph.iPv4Range",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "iPv6Option",
|
||||
"value": "#microsoft.graph.iPv6Range",
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "@odata.type",
|
||||
"booleanActions": 0,
|
||||
"policyType": 57,
|
||||
"enabled": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 20,
|
||||
"category": 22,
|
||||
"nameResourceKey": "iPRangeLowerAddressName",
|
||||
"emptyValueResourceKey": "iPRangeLowerAddressEmptyValue",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "lowerAddress",
|
||||
"booleanActions": 0,
|
||||
"policyType": 57,
|
||||
"enabled": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 20,
|
||||
"category": 22,
|
||||
"nameResourceKey": "iPRangeUpperAddressName",
|
||||
"emptyValueResourceKey": "iPRangeUpperAddressEmptyValue",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "upperAddress",
|
||||
"booleanActions": 0,
|
||||
"policyType": 57,
|
||||
"enabled": true
|
||||
}
|
||||
}
|
||||
],
|
||||
"dataType": 21,
|
||||
"category": 22,
|
||||
"nameResourceKey": "contentCachingPeerListenRangesName",
|
||||
"descriptionResourceKey": "contentCachingPeerListenRangesDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "contentCachingPeerListenRanges",
|
||||
"booleanActions": 0,
|
||||
"policyType": 57,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"columns": [
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 16,
|
||||
"category": 22,
|
||||
"nameResourceKey": "iPRangeAddressTypeName",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "notConfigured",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "iPv4Option",
|
||||
"value": "#microsoft.graph.iPv4Range",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "iPv6Option",
|
||||
"value": "#microsoft.graph.iPv6Range",
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "@odata.type",
|
||||
"booleanActions": 0,
|
||||
"policyType": 57,
|
||||
"enabled": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 20,
|
||||
"category": 22,
|
||||
"nameResourceKey": "iPRangeLowerAddressName",
|
||||
"emptyValueResourceKey": "iPRangeLowerAddressEmptyValue",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "lowerAddress",
|
||||
"booleanActions": 0,
|
||||
"policyType": 57,
|
||||
"enabled": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 20,
|
||||
"category": 22,
|
||||
"nameResourceKey": "iPRangeUpperAddressName",
|
||||
"emptyValueResourceKey": "iPRangeUpperAddressEmptyValue",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "upperAddress",
|
||||
"booleanActions": 0,
|
||||
"policyType": 57,
|
||||
"enabled": true
|
||||
}
|
||||
}
|
||||
],
|
||||
"dataType": 21,
|
||||
"category": 22,
|
||||
"nameResourceKey": "contentCachingPeerFilterRangesName",
|
||||
"descriptionResourceKey": "contentCachingPeerFilterRangesDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "contentCachingPeerFilterRanges",
|
||||
"booleanActions": 0,
|
||||
"policyType": 57,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "contentCachingPeerPolicy",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "notConfigured",
|
||||
"policyType": 57,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"columns": [
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 20,
|
||||
"category": 22,
|
||||
"nameResourceKey": "contentCachingParentsName",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "contentCachingParents",
|
||||
"booleanActions": 0,
|
||||
"policyType": 57,
|
||||
"enabled": true
|
||||
}
|
||||
}
|
||||
],
|
||||
"dataType": 21,
|
||||
"category": 22,
|
||||
"nameResourceKey": "contentCachingParentsName",
|
||||
"descriptionResourceKey": "contentCachingParentsDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "contentCachingParents",
|
||||
"booleanActions": 0,
|
||||
"policyType": 57,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 22,
|
||||
"nameResourceKey": "contentCachingParentSelectionPolicyName",
|
||||
"descriptionResourceKey": "contentCachingParentSelectionPolicyDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "notConfigured",
|
||||
"value": "notConfigured",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "roundRobinOption",
|
||||
"value": "roundRobin",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "firstAvailableOption",
|
||||
"value": "firstAvailable",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "urlPathHashOption",
|
||||
"value": "urlPathHash",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "randomOption",
|
||||
"value": "random",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "stickyAvailableOption",
|
||||
"value": "stickyAvailable",
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "contentCachingParentSelectionPolicy",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "notConfigured",
|
||||
"policyType": 57,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "contentCachingEnabled",
|
||||
"booleanActions": 9,
|
||||
"policyType": 57,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 57,
|
||||
"enabled": true
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,271 @@
|
||||
{
|
||||
"controlpanelandsettings_windows10general": {
|
||||
"dataType": 0,
|
||||
"category": 23,
|
||||
"nameResourceKey": "settingsAppName",
|
||||
"descriptionResourceKey": "settingsAppDescription",
|
||||
"childSettings": [
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 23,
|
||||
"nameResourceKey": "systemPageName",
|
||||
"descriptionResourceKey": "systemPageDescription",
|
||||
"childSettings": [
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 23,
|
||||
"nameResourceKey": "settingsBlockChangePowerSleepName",
|
||||
"descriptionResourceKey": "settingsBlockChangePowerSleepDesc",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "settingsBlockChangePowerSleep",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 78,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "settingsBlockSystemPage",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 78,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 23,
|
||||
"nameResourceKey": "devicesPageName",
|
||||
"descriptionResourceKey": "devicesPageDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "settingsBlockDevicesPage",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 78,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 23,
|
||||
"nameResourceKey": "networkAndInternetPageName",
|
||||
"descriptionResourceKey": "networkAndInternetPageDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "settingsBlockNetworkInternetPage",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 78,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 23,
|
||||
"nameResourceKey": "personalizationPageName",
|
||||
"descriptionResourceKey": "personalizationPageDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "settingsBlockPersonalizationPage",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 78,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 23,
|
||||
"nameResourceKey": "appsPageName",
|
||||
"descriptionResourceKey": "appsPageDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "settingsBlockAppsPage",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 78,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 23,
|
||||
"nameResourceKey": "accountsPageName",
|
||||
"descriptionResourceKey": "accountsPageDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "settingsBlockAccountsPage",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 78,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 23,
|
||||
"nameResourceKey": "timeAndLanguagePageName",
|
||||
"descriptionResourceKey": "timeAndLanguagePageDescription",
|
||||
"childSettings": [
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 23,
|
||||
"nameResourceKey": "settingsBlockChangeSystemTimeName",
|
||||
"descriptionResourceKey": "settingsBlockChangeSystemTimeDesc",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "settingsBlockChangeSystemTime",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 78,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 23,
|
||||
"nameResourceKey": "settingsBlockChangeRegionName",
|
||||
"descriptionResourceKey": "settingsBlockChangeRegionDesc",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "settingsBlockChangeRegion",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 78,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 23,
|
||||
"nameResourceKey": "settingsBlockChangeLanguageName",
|
||||
"descriptionResourceKey": "settingsBlockChangeLanguageDesc",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "settingsBlockChangeLanguage",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 78,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "settingsBlockTimeLanguagePage",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 78,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 23,
|
||||
"nameResourceKey": "gamingPageName",
|
||||
"descriptionResourceKey": "gamingPageDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "settingsBlockGamingPage",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 78,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 23,
|
||||
"nameResourceKey": "easeOfAccessPageName",
|
||||
"descriptionResourceKey": "easeOfAccessPageDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "settingsBlockEaseOfAccessPage",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 78,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 23,
|
||||
"nameResourceKey": "privacyPageName",
|
||||
"descriptionResourceKey": "privacyPageDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "settingsBlockPrivacyPage",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 78,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 23,
|
||||
"nameResourceKey": "updateAndSecurityPageName",
|
||||
"descriptionResourceKey": "updateAndSecurityPageDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "settingsBlockUpdateSecurityPage",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 78,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "settingsBlockSettingsApp",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 78,
|
||||
"enabled": true
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,39 @@
|
||||
{
|
||||
"credentialguard_windows10endpointprotection": {
|
||||
"dataType": 16,
|
||||
"category": 24,
|
||||
"nameResourceKey": "deviceGuardCredentialGuardName",
|
||||
"descriptionResourceKey": "deviceGuardCredentialGuardDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "notConfigured",
|
||||
"value": "notConfigured",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "disableOption",
|
||||
"value": "disable",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "enableWithUEFILock",
|
||||
"value": "enableWithUEFILock",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "enableWithoutUEFILock",
|
||||
"value": "enableWithoutUEFILock",
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "deviceGuardLocalSystemAuthorityCredentialGuardSettings",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "notConfigured",
|
||||
"unconfiguredValue": "notConfigured",
|
||||
"policyType": 76,
|
||||
"enabled": true
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
{
|
||||
"customcompliance_compliancewindows10": {
|
||||
"dataType": 25,
|
||||
"category": 142,
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 35,
|
||||
"enabled": true
|
||||
}
|
||||
}
|
||||
39
Documentation/ObjectInfo/customconfiguration_ioscustom.json
Normal file
39
Documentation/ObjectInfo/customconfiguration_ioscustom.json
Normal file
@@ -0,0 +1,39 @@
|
||||
{
|
||||
"customconfiguration_ioscustom": [
|
||||
{
|
||||
"dataType": 20,
|
||||
"category": 25,
|
||||
"nameResourceKey": "customPolicyConfigurationProfileName",
|
||||
"descriptionResourceKey": "customPolicyConfigurationProfileDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "payloadName",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "",
|
||||
"policyType": 40,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataEntityKey": "payload",
|
||||
"filenameEntityKey": "payloadFileName",
|
||||
"dataType": 2,
|
||||
"category": 25,
|
||||
"nameResourceKey": "customPolicyConfigurationProfileFileName",
|
||||
"descriptionResourceKey": "empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "payload",
|
||||
"booleanActions": 0,
|
||||
"policyType": 40,
|
||||
"enabled": true
|
||||
}
|
||||
]
|
||||
}
|
||||
39
Documentation/ObjectInfo/customconfiguration_maccustom.json
Normal file
39
Documentation/ObjectInfo/customconfiguration_maccustom.json
Normal file
@@ -0,0 +1,39 @@
|
||||
{
|
||||
"customconfiguration_maccustom": [
|
||||
{
|
||||
"dataType": 20,
|
||||
"category": 25,
|
||||
"nameResourceKey": "customPolicyConfigurationProfileName",
|
||||
"descriptionResourceKey": "customPolicyConfigurationProfileDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "payloadName",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "",
|
||||
"policyType": 55,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataEntityKey": "payload",
|
||||
"filenameEntityKey": "payloadFileName",
|
||||
"dataType": 2,
|
||||
"category": 25,
|
||||
"nameResourceKey": "customPolicyConfigurationProfileFileName",
|
||||
"descriptionResourceKey": "empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "payload",
|
||||
"booleanActions": 0,
|
||||
"policyType": 55,
|
||||
"enabled": true
|
||||
}
|
||||
]
|
||||
}
|
||||
271
Documentation/ObjectInfo/customomasettings_androidcustom.json
Normal file
271
Documentation/ObjectInfo/customomasettings_androidcustom.json
Normal file
@@ -0,0 +1,271 @@
|
||||
{
|
||||
"customomasettings_androidcustom": {
|
||||
"columns": [
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 20,
|
||||
"category": 26,
|
||||
"nameResourceKey": "nameName",
|
||||
"descriptionResourceKey": "empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "displayName",
|
||||
"booleanActions": 0,
|
||||
"policyType": 0,
|
||||
"enabled": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 20,
|
||||
"category": 26,
|
||||
"nameResourceKey": "descriptionName",
|
||||
"descriptionResourceKey": "empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "description",
|
||||
"booleanActions": 0,
|
||||
"policyType": 0,
|
||||
"enabled": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 20,
|
||||
"category": 26,
|
||||
"nameResourceKey": "oMAURIName",
|
||||
"descriptionResourceKey": "empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "omaUri",
|
||||
"booleanActions": 0,
|
||||
"policyType": 0,
|
||||
"enabled": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 16,
|
||||
"category": 26,
|
||||
"nameResourceKey": "dataTypeName",
|
||||
"descriptionResourceKey": "empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "notConfigured",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "stringName",
|
||||
"value": "#microsoft.graph.omaSettingString",
|
||||
"children": [
|
||||
{
|
||||
"dataType": 12,
|
||||
"category": 26,
|
||||
"nameResourceKey": "valueName",
|
||||
"descriptionResourceKey": "empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "value",
|
||||
"booleanActions": 0,
|
||||
"policyType": 0,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "stringXMLName",
|
||||
"value": "#microsoft.graph.omaSettingStringXml",
|
||||
"children": [
|
||||
{
|
||||
"dataEntityKey": "value",
|
||||
"filenameEntityKey": "fileName",
|
||||
"dataType": 2,
|
||||
"category": 26,
|
||||
"nameResourceKey": "vPNPolicyCustomXMLName",
|
||||
"descriptionResourceKey": "empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "value",
|
||||
"booleanActions": 0,
|
||||
"policyType": 0,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "dateTimeName",
|
||||
"value": "#microsoft.graph.omaSettingDateTime",
|
||||
"children": [
|
||||
{
|
||||
"dataType": 7,
|
||||
"category": 26,
|
||||
"nameResourceKey": "valueName",
|
||||
"descriptionResourceKey": "empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "value",
|
||||
"booleanActions": 0,
|
||||
"policyType": 0,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "integerName",
|
||||
"value": "#microsoft.graph.omaSettingInteger",
|
||||
"children": [
|
||||
{
|
||||
"dataType": 14,
|
||||
"category": 26,
|
||||
"nameResourceKey": "valueName",
|
||||
"descriptionResourceKey": "empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "value",
|
||||
"booleanActions": 0,
|
||||
"policyType": 0,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "floatingPointName",
|
||||
"value": "#microsoft.graph.omaSettingFloatingPoint",
|
||||
"children": [
|
||||
{
|
||||
"dataType": 20,
|
||||
"category": 26,
|
||||
"nameResourceKey": "valueName",
|
||||
"descriptionResourceKey": "empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "value",
|
||||
"booleanActions": 0,
|
||||
"policyType": 0,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "booleanName",
|
||||
"value": "#microsoft.graph.omaSettingBoolean",
|
||||
"children": [
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 26,
|
||||
"nameResourceKey": "valueName",
|
||||
"descriptionResourceKey": "empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "trueOption",
|
||||
"value": "true",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "falseOption",
|
||||
"value": "false",
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "value",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": false,
|
||||
"policyType": 0,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "base64Name",
|
||||
"value": "#microsoft.graph.omaSettingBase64",
|
||||
"children": [
|
||||
{
|
||||
"dataEntityKey": "value",
|
||||
"filenameEntityKey": "fileName",
|
||||
"dataType": 2,
|
||||
"category": 26,
|
||||
"nameResourceKey": "omaBase64Name",
|
||||
"descriptionResourceKey": "empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "value",
|
||||
"booleanActions": 0,
|
||||
"policyType": 0,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "@odata.type",
|
||||
"booleanActions": 0,
|
||||
"policyType": 0,
|
||||
"enabled": true
|
||||
}
|
||||
}
|
||||
],
|
||||
"dataType": 21,
|
||||
"category": 26,
|
||||
"nameResourceKey": "customPolicyOMAURISettingsName",
|
||||
"descriptionResourceKey": "empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "omaSettings",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "",
|
||||
"policyType": 0,
|
||||
"enabled": true
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,271 @@
|
||||
{
|
||||
"customomasettings_androidforworkcustom": {
|
||||
"columns": [
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 20,
|
||||
"category": 26,
|
||||
"nameResourceKey": "nameName",
|
||||
"descriptionResourceKey": "empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "displayName",
|
||||
"booleanActions": 0,
|
||||
"policyType": 10,
|
||||
"enabled": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 20,
|
||||
"category": 26,
|
||||
"nameResourceKey": "descriptionName",
|
||||
"descriptionResourceKey": "empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "description",
|
||||
"booleanActions": 0,
|
||||
"policyType": 10,
|
||||
"enabled": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 20,
|
||||
"category": 26,
|
||||
"nameResourceKey": "oMAURIName",
|
||||
"descriptionResourceKey": "empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "omaUri",
|
||||
"booleanActions": 0,
|
||||
"policyType": 10,
|
||||
"enabled": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 16,
|
||||
"category": 26,
|
||||
"nameResourceKey": "dataTypeName",
|
||||
"descriptionResourceKey": "empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "notConfigured",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "stringName",
|
||||
"value": "#microsoft.graph.omaSettingString",
|
||||
"children": [
|
||||
{
|
||||
"dataType": 12,
|
||||
"category": 26,
|
||||
"nameResourceKey": "valueName",
|
||||
"descriptionResourceKey": "empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "value",
|
||||
"booleanActions": 0,
|
||||
"policyType": 10,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "stringXMLName",
|
||||
"value": "#microsoft.graph.omaSettingStringXml",
|
||||
"children": [
|
||||
{
|
||||
"dataEntityKey": "value",
|
||||
"filenameEntityKey": "fileName",
|
||||
"dataType": 2,
|
||||
"category": 26,
|
||||
"nameResourceKey": "vPNPolicyCustomXMLName",
|
||||
"descriptionResourceKey": "empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "value",
|
||||
"booleanActions": 0,
|
||||
"policyType": 10,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "dateTimeName",
|
||||
"value": "#microsoft.graph.omaSettingDateTime",
|
||||
"children": [
|
||||
{
|
||||
"dataType": 7,
|
||||
"category": 26,
|
||||
"nameResourceKey": "valueName",
|
||||
"descriptionResourceKey": "empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "value",
|
||||
"booleanActions": 0,
|
||||
"policyType": 10,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "integerName",
|
||||
"value": "#microsoft.graph.omaSettingInteger",
|
||||
"children": [
|
||||
{
|
||||
"dataType": 14,
|
||||
"category": 26,
|
||||
"nameResourceKey": "valueName",
|
||||
"descriptionResourceKey": "empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "value",
|
||||
"booleanActions": 0,
|
||||
"policyType": 10,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "floatingPointName",
|
||||
"value": "#microsoft.graph.omaSettingFloatingPoint",
|
||||
"children": [
|
||||
{
|
||||
"dataType": 20,
|
||||
"category": 26,
|
||||
"nameResourceKey": "valueName",
|
||||
"descriptionResourceKey": "empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "value",
|
||||
"booleanActions": 0,
|
||||
"policyType": 10,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "booleanName",
|
||||
"value": "#microsoft.graph.omaSettingBoolean",
|
||||
"children": [
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 26,
|
||||
"nameResourceKey": "valueName",
|
||||
"descriptionResourceKey": "empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "trueOption",
|
||||
"value": "true",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "falseOption",
|
||||
"value": "false",
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "value",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": false,
|
||||
"policyType": 10,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "base64Name",
|
||||
"value": "#microsoft.graph.omaSettingBase64",
|
||||
"children": [
|
||||
{
|
||||
"dataEntityKey": "value",
|
||||
"filenameEntityKey": "fileName",
|
||||
"dataType": 2,
|
||||
"category": 26,
|
||||
"nameResourceKey": "omaBase64Name",
|
||||
"descriptionResourceKey": "empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "value",
|
||||
"booleanActions": 0,
|
||||
"policyType": 10,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "@odata.type",
|
||||
"booleanActions": 0,
|
||||
"policyType": 10,
|
||||
"enabled": true
|
||||
}
|
||||
}
|
||||
],
|
||||
"dataType": 21,
|
||||
"category": 26,
|
||||
"nameResourceKey": "customPolicyOMAURISettingsName",
|
||||
"descriptionResourceKey": "empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "omaSettings",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "",
|
||||
"policyType": 10,
|
||||
"enabled": true
|
||||
}
|
||||
}
|
||||
271
Documentation/ObjectInfo/customomasettings_windows10custom.json
Normal file
271
Documentation/ObjectInfo/customomasettings_windows10custom.json
Normal file
@@ -0,0 +1,271 @@
|
||||
{
|
||||
"customomasettings_windows10custom": {
|
||||
"columns": [
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 20,
|
||||
"category": 26,
|
||||
"nameResourceKey": "nameName",
|
||||
"descriptionResourceKey": "empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "displayName",
|
||||
"booleanActions": 0,
|
||||
"policyType": 73,
|
||||
"enabled": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 20,
|
||||
"category": 26,
|
||||
"nameResourceKey": "descriptionName",
|
||||
"descriptionResourceKey": "empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "description",
|
||||
"booleanActions": 0,
|
||||
"policyType": 73,
|
||||
"enabled": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 20,
|
||||
"category": 26,
|
||||
"nameResourceKey": "oMAURIName",
|
||||
"descriptionResourceKey": "empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "omaUri",
|
||||
"booleanActions": 0,
|
||||
"policyType": 73,
|
||||
"enabled": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 16,
|
||||
"category": 26,
|
||||
"nameResourceKey": "dataTypeName",
|
||||
"descriptionResourceKey": "empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "notConfigured",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "stringName",
|
||||
"value": "#microsoft.graph.omaSettingString",
|
||||
"children": [
|
||||
{
|
||||
"dataType": 12,
|
||||
"category": 26,
|
||||
"nameResourceKey": "valueName",
|
||||
"descriptionResourceKey": "empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "value",
|
||||
"booleanActions": 0,
|
||||
"policyType": 73,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "stringXMLName",
|
||||
"value": "#microsoft.graph.omaSettingStringXml",
|
||||
"children": [
|
||||
{
|
||||
"dataEntityKey": "value",
|
||||
"filenameEntityKey": "fileName",
|
||||
"dataType": 2,
|
||||
"category": 26,
|
||||
"nameResourceKey": "vPNPolicyCustomXMLName",
|
||||
"descriptionResourceKey": "empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "value",
|
||||
"booleanActions": 0,
|
||||
"policyType": 73,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "dateTimeName",
|
||||
"value": "#microsoft.graph.omaSettingDateTime",
|
||||
"children": [
|
||||
{
|
||||
"dataType": 7,
|
||||
"category": 26,
|
||||
"nameResourceKey": "valueName",
|
||||
"descriptionResourceKey": "empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "value",
|
||||
"booleanActions": 0,
|
||||
"policyType": 73,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "integerName",
|
||||
"value": "#microsoft.graph.omaSettingInteger",
|
||||
"children": [
|
||||
{
|
||||
"dataType": 14,
|
||||
"category": 26,
|
||||
"nameResourceKey": "valueName",
|
||||
"descriptionResourceKey": "empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "value",
|
||||
"booleanActions": 0,
|
||||
"policyType": 73,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "floatingPointName",
|
||||
"value": "#microsoft.graph.omaSettingFloatingPoint",
|
||||
"children": [
|
||||
{
|
||||
"dataType": 20,
|
||||
"category": 26,
|
||||
"nameResourceKey": "valueName",
|
||||
"descriptionResourceKey": "empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "value",
|
||||
"booleanActions": 0,
|
||||
"policyType": 73,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "booleanName",
|
||||
"value": "#microsoft.graph.omaSettingBoolean",
|
||||
"children": [
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 26,
|
||||
"nameResourceKey": "valueName",
|
||||
"descriptionResourceKey": "empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "trueOption",
|
||||
"value": "true",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "falseOption",
|
||||
"value": "false",
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "value",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": false,
|
||||
"policyType": 73,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "base64Name",
|
||||
"value": "#microsoft.graph.omaSettingBase64",
|
||||
"children": [
|
||||
{
|
||||
"dataEntityKey": "value",
|
||||
"filenameEntityKey": "fileName",
|
||||
"dataType": 2,
|
||||
"category": 26,
|
||||
"nameResourceKey": "omaBase64Name",
|
||||
"descriptionResourceKey": "empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "value",
|
||||
"booleanActions": 0,
|
||||
"policyType": 73,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "@odata.type",
|
||||
"booleanActions": 0,
|
||||
"policyType": 73,
|
||||
"enabled": true
|
||||
}
|
||||
}
|
||||
],
|
||||
"dataType": 21,
|
||||
"category": 26,
|
||||
"nameResourceKey": "customPolicyOMAURISettingsName",
|
||||
"descriptionResourceKey": "empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "omaSettings",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "",
|
||||
"policyType": 73,
|
||||
"enabled": true
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,271 @@
|
||||
{
|
||||
"customomasettings_windowsphonecustom": {
|
||||
"columns": [
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 20,
|
||||
"category": 26,
|
||||
"nameResourceKey": "nameName",
|
||||
"descriptionResourceKey": "empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "displayName",
|
||||
"booleanActions": 0,
|
||||
"policyType": 98,
|
||||
"enabled": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 20,
|
||||
"category": 26,
|
||||
"nameResourceKey": "descriptionName",
|
||||
"descriptionResourceKey": "empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "description",
|
||||
"booleanActions": 0,
|
||||
"policyType": 98,
|
||||
"enabled": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 20,
|
||||
"category": 26,
|
||||
"nameResourceKey": "oMAURIName",
|
||||
"descriptionResourceKey": "empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "omaUri",
|
||||
"booleanActions": 0,
|
||||
"policyType": 98,
|
||||
"enabled": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 16,
|
||||
"category": 26,
|
||||
"nameResourceKey": "dataTypeName",
|
||||
"descriptionResourceKey": "empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "notConfigured",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "stringName",
|
||||
"value": "#microsoft.graph.omaSettingString",
|
||||
"children": [
|
||||
{
|
||||
"dataType": 12,
|
||||
"category": 26,
|
||||
"nameResourceKey": "valueName",
|
||||
"descriptionResourceKey": "empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "value",
|
||||
"booleanActions": 0,
|
||||
"policyType": 98,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "stringXMLName",
|
||||
"value": "#microsoft.graph.omaSettingStringXml",
|
||||
"children": [
|
||||
{
|
||||
"dataEntityKey": "value",
|
||||
"filenameEntityKey": "fileName",
|
||||
"dataType": 2,
|
||||
"category": 26,
|
||||
"nameResourceKey": "vPNPolicyCustomXMLName",
|
||||
"descriptionResourceKey": "empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "value",
|
||||
"booleanActions": 0,
|
||||
"policyType": 98,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "dateTimeName",
|
||||
"value": "#microsoft.graph.omaSettingDateTime",
|
||||
"children": [
|
||||
{
|
||||
"dataType": 7,
|
||||
"category": 26,
|
||||
"nameResourceKey": "valueName",
|
||||
"descriptionResourceKey": "empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "value",
|
||||
"booleanActions": 0,
|
||||
"policyType": 98,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "integerName",
|
||||
"value": "#microsoft.graph.omaSettingInteger",
|
||||
"children": [
|
||||
{
|
||||
"dataType": 14,
|
||||
"category": 26,
|
||||
"nameResourceKey": "valueName",
|
||||
"descriptionResourceKey": "empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "value",
|
||||
"booleanActions": 0,
|
||||
"policyType": 98,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "floatingPointName",
|
||||
"value": "#microsoft.graph.omaSettingFloatingPoint",
|
||||
"children": [
|
||||
{
|
||||
"dataType": 20,
|
||||
"category": 26,
|
||||
"nameResourceKey": "valueName",
|
||||
"descriptionResourceKey": "empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "value",
|
||||
"booleanActions": 0,
|
||||
"policyType": 98,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "booleanName",
|
||||
"value": "#microsoft.graph.omaSettingBoolean",
|
||||
"children": [
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 26,
|
||||
"nameResourceKey": "valueName",
|
||||
"descriptionResourceKey": "empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "trueOption",
|
||||
"value": "true",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "falseOption",
|
||||
"value": "false",
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "value",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": false,
|
||||
"policyType": 98,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "base64Name",
|
||||
"value": "#microsoft.graph.omaSettingBase64",
|
||||
"children": [
|
||||
{
|
||||
"dataEntityKey": "value",
|
||||
"filenameEntityKey": "fileName",
|
||||
"dataType": 2,
|
||||
"category": 26,
|
||||
"nameResourceKey": "omaBase64Name",
|
||||
"descriptionResourceKey": "empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "value",
|
||||
"booleanActions": 0,
|
||||
"policyType": 98,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "@odata.type",
|
||||
"booleanActions": 0,
|
||||
"policyType": 98,
|
||||
"enabled": true
|
||||
}
|
||||
}
|
||||
],
|
||||
"dataType": 21,
|
||||
"category": 26,
|
||||
"nameResourceKey": "customPolicyOMAURISettingsName",
|
||||
"descriptionResourceKey": "empty",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "omaSettings",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "",
|
||||
"policyType": 98,
|
||||
"enabled": true
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,38 @@
|
||||
{
|
||||
"custompreferences_maccustompreferences": [
|
||||
{
|
||||
"dataType": 20,
|
||||
"category": 27,
|
||||
"nameResourceKey": "customAppConfigurationDomainName",
|
||||
"descriptionResourceKey": "customAppConfigurationDomainDescription",
|
||||
"emptyValueResourceKey": "customAppConfigurationDomainEmptyValue",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "bundleId",
|
||||
"booleanActions": 0,
|
||||
"policyType": 56,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataEntityKey": "configurationXml",
|
||||
"filenameEntityKey": "fileName",
|
||||
"dataType": 2,
|
||||
"category": 27,
|
||||
"nameResourceKey": "customAppConfigurationFileName",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "configurationXml",
|
||||
"booleanActions": 0,
|
||||
"policyType": 56,
|
||||
"enabled": true
|
||||
}
|
||||
]
|
||||
}
|
||||
1666
Documentation/ObjectInfo/defender_windows10general.json
Normal file
1666
Documentation/ObjectInfo/defender_windows10general.json
Normal file
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,571 @@
|
||||
{
|
||||
"defendersecuritycenter_windows10endpointprotection": [
|
||||
{
|
||||
"isSettingDescription": false,
|
||||
"showAsSectionHeader": false,
|
||||
"dataType": 8,
|
||||
"category": 31,
|
||||
"nameResourceKey": "defenderSecurityCenterHeaderText",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 76,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"isSettingDescription": true,
|
||||
"showAsSectionHeader": false,
|
||||
"dataType": 8,
|
||||
"category": 31,
|
||||
"nameResourceKey": "defenderSecurityCenterSubHeaderText",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 76,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 31,
|
||||
"nameResourceKey": "defenderSecurityCenterDisableVirusUIName",
|
||||
"descriptionResourceKey": "defenderSecurityCenterDisableVirusUIDescription",
|
||||
"childSettings": [
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 31,
|
||||
"nameResourceKey": "defenderSecurityCenterDisableRansomwareUIName",
|
||||
"descriptionResourceKey": "defenderSecurityCenterDisableRansomwareUIDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "NotConfiguredAlwaysOnOption",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "allowOption",
|
||||
"value": false,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "blockOption",
|
||||
"value": true,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "defenderSecurityCenterDisableRansomwareUI",
|
||||
"booleanActions": 0,
|
||||
"policyType": 76,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "NotConfiguredAlwaysOnOption",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "allowOption",
|
||||
"value": false,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "blockOption",
|
||||
"value": true,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "defenderSecurityCenterDisableVirusUI",
|
||||
"booleanActions": 0,
|
||||
"policyType": 76,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 31,
|
||||
"nameResourceKey": "defenderSecurityCenterDisableAccountUIName",
|
||||
"descriptionResourceKey": "defenderSecurityCenterDisableAccountUIDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "NotConfiguredAlwaysOnOption",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "allowOption",
|
||||
"value": false,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "blockOption",
|
||||
"value": true,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "defenderSecurityCenterDisableAccountUI",
|
||||
"booleanActions": 0,
|
||||
"policyType": 76,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 31,
|
||||
"nameResourceKey": "defenderSecurityCenterDisableNetworkUIName",
|
||||
"descriptionResourceKey": "defenderSecurityCenterDisableNetworkUIDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "NotConfiguredAlwaysOnOption",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "allowOption",
|
||||
"value": false,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "blockOption",
|
||||
"value": true,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "defenderSecurityCenterDisableNetworkUI",
|
||||
"booleanActions": 0,
|
||||
"policyType": 76,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 31,
|
||||
"nameResourceKey": "defenderSecurityCenterDisableAppBrowserUIName",
|
||||
"descriptionResourceKey": "defenderSecurityCenterDisableAppBrowserUIDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "NotConfiguredAlwaysOnOption",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "allowOption",
|
||||
"value": false,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "blockOption",
|
||||
"value": true,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "defenderSecurityCenterDisableAppBrowserUI",
|
||||
"booleanActions": 0,
|
||||
"policyType": 76,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 19,
|
||||
"category": 31,
|
||||
"nameResourceKey": "defenderSecurityCenterDisableHardwareUIName",
|
||||
"descriptionResourceKey": "defenderSecurityCenterDisableHardwareUIDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "hideOption",
|
||||
"value": true,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "notConfigured",
|
||||
"value": false,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "defenderSecurityCenterDisableHardwareUI",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": false,
|
||||
"policyType": 76,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 31,
|
||||
"nameResourceKey": "defenderSecurityCenterDisableHealthUIName",
|
||||
"descriptionResourceKey": "defenderSecurityCenterDisableHealthUIDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "NotConfiguredAlwaysOnOption",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "allowOption",
|
||||
"value": false,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "blockOption",
|
||||
"value": true,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "defenderSecurityCenterDisableHealthUI",
|
||||
"booleanActions": 0,
|
||||
"policyType": 76,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 31,
|
||||
"nameResourceKey": "defenderSecurityCenterDisableFamilyUIName",
|
||||
"descriptionResourceKey": "defenderSecurityCenterDisableFamilyUIDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "NotConfiguredAlwaysOnOption",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "allowOption",
|
||||
"value": false,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "blockOption",
|
||||
"value": true,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "defenderSecurityCenterDisableFamilyUI",
|
||||
"booleanActions": 0,
|
||||
"policyType": 76,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 31,
|
||||
"nameResourceKey": "defenderSecurityCenterNotificationsFromAppName",
|
||||
"descriptionResourceKey": "defenderSecurityCenterNotificationsFromAppDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "notConfigured",
|
||||
"value": "notConfigured",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "DefenderSecurityCenterNotificationsFromAppBlockNoncriticalNotificationsName",
|
||||
"value": "blockNoncriticalNotifications",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "DefenderSecurityCenterNotificationsFromAppBlockAllNotificationsName",
|
||||
"value": "blockAllNotifications",
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "defenderSecurityCenterNotificationsFromApp",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "notConfigured",
|
||||
"unconfiguredValue": "notConfigured",
|
||||
"policyType": 76,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 31,
|
||||
"nameResourceKey": "defenderSecurityCenterDisableNotificationAreaUIName",
|
||||
"descriptionResourceKey": "defenderSecurityCenterDisableNotificationAreaUIDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "NotConfiguredAlwaysOnOption",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "allowOption",
|
||||
"value": false,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "blockOption",
|
||||
"value": true,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "defenderSecurityCenterDisableNotificationAreaUI",
|
||||
"booleanActions": 0,
|
||||
"policyType": 76,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 31,
|
||||
"nameResourceKey": "defenderSecurityCenterDisableClearTpmUIName",
|
||||
"descriptionResourceKey": "defenderSecurityCenterDisableClearTpmUIDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "NotConfiguredAlwaysOnOption",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "allowOption",
|
||||
"value": false,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "blockOption",
|
||||
"value": true,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "defenderSecurityCenterDisableClearTpmUI",
|
||||
"booleanActions": 0,
|
||||
"policyType": 76,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 31,
|
||||
"nameResourceKey": "defenderSecurityCenterDisableVulnerableTpmFirmwareUpdateUIName",
|
||||
"descriptionResourceKey": "defenderSecurityCenterDisableVulnerableTpmFirmwareUpdateUIDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "NotConfiguredAlwaysOnOption",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "allowOption",
|
||||
"value": false,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "blockOption",
|
||||
"value": true,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "defenderSecurityCenterDisableVulnerableTpmFirmwareUpdateUI",
|
||||
"booleanActions": 0,
|
||||
"policyType": 76,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 31,
|
||||
"nameResourceKey": "defenderSecurityCenterTamperProtectionName",
|
||||
"descriptionResourceKey": "defenderSecurityCenterTamperProtectionDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "notConfigured",
|
||||
"value": "notConfigured",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "DefenderSecurityCenterTamperProtectionEnable",
|
||||
"value": "enable",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "DefenderSecurityCenterTamperProtectionDisable",
|
||||
"value": "disable",
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "windowsDefenderTamperProtection",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "notConfigured",
|
||||
"unconfiguredValue": "notConfigured",
|
||||
"policyType": 76,
|
||||
"enabled": false
|
||||
},
|
||||
{
|
||||
"isSettingDescription": false,
|
||||
"showAsSectionHeader": false,
|
||||
"dataType": 8,
|
||||
"category": 31,
|
||||
"nameResourceKey": "defenderSecurityCenterITContactInformationHeaderText",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 76,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"isSettingDescription": true,
|
||||
"showAsSectionHeader": false,
|
||||
"dataType": 8,
|
||||
"category": 31,
|
||||
"nameResourceKey": "defenderSecurityCenterITContactInformationSubHeaderText",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 76,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 31,
|
||||
"nameResourceKey": "defenderSecurityCenterITContactDisplayName",
|
||||
"descriptionResourceKey": "defenderSecurityCenterITContactDisplayDescription",
|
||||
"childSettings": [
|
||||
{
|
||||
"dataType": 20,
|
||||
"category": 31,
|
||||
"nameResourceKey": "defenderSecurityCenterOrganizationDisplayNameName",
|
||||
"descriptionResourceKey": "defenderSecurityCenterOrganizationDisplayNameName",
|
||||
"emptyValueResourceKey": "defenderSecurityCenterOrganizationDisplayNamePlaceholder",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "defenderSecurityCenterOrganizationDisplayName",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "",
|
||||
"policyType": 76,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"isSettingDescription": false,
|
||||
"showAsSectionHeader": false,
|
||||
"dataType": 8,
|
||||
"category": 31,
|
||||
"nameResourceKey": "defenderSecurityCenterContactOptionsText",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 76,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 20,
|
||||
"category": 31,
|
||||
"nameResourceKey": "defenderSecurityCenterHelpPhoneName",
|
||||
"descriptionResourceKey": "defenderSecurityCenterHelpPhoneDescription",
|
||||
"emptyValueResourceKey": "defenderSecurityCenterHelpPhonePlaceholder",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "defenderSecurityCenterHelpPhone",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "",
|
||||
"policyType": 76,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 20,
|
||||
"category": 31,
|
||||
"nameResourceKey": "defenderSecurityCenterHelpEmailName",
|
||||
"descriptionResourceKey": "defenderSecurityCenterHelpEmailDescription",
|
||||
"emptyValueResourceKey": "defenderSecurityCenterHelpEmailPlaceholder",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "defenderSecurityCenterHelpEmail",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "",
|
||||
"policyType": 76,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 20,
|
||||
"category": 31,
|
||||
"nameResourceKey": "defenderSecurityCenterHelpURLName",
|
||||
"descriptionResourceKey": "defenderSecurityCenterHelpURLDescription",
|
||||
"emptyValueResourceKey": "defenderSecurityCenterHelpURLPlaceholder",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "defenderSecurityCenterHelpURL",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "",
|
||||
"policyType": 76,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "defenderSecurityCenterITContactDisplayDisplayInAppAndInNotificationsName",
|
||||
"value": "displayInAppAndInNotifications",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "defenderSecurityCenterITContactDisplayDisplayOnlyInAppName",
|
||||
"value": "displayOnlyInApp",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "defenderSecurityCenterITContactDisplayDisplayOnlyInNotificationsName",
|
||||
"value": "displayOnlyInNotifications",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "defenderSecurityCenterITContactDisplayDontDisplayName",
|
||||
"value": "notConfigured",
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "defenderSecurityCenterITContactDisplay",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "notConfigured",
|
||||
"unconfiguredValue": "notConfigured",
|
||||
"policyType": 76,
|
||||
"enabled": true
|
||||
}
|
||||
]
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,101 @@
|
||||
{
|
||||
"derivedcredentialauthenticationconfiguration_androiddeviceownerderivedcredentialappauthenticationconfiguration": [
|
||||
{
|
||||
"dataType": 9,
|
||||
"category": 35,
|
||||
"childSettings": [
|
||||
{
|
||||
"dataType": 10,
|
||||
"category": 35,
|
||||
"nameResourceKey": "derivedCredentialsSearchingForTenantLevel",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 3,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 10,
|
||||
"category": 35,
|
||||
"nameResourceKey": "derivedCredentialsTenantLevelNotConfigured",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 3,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "derivedCredentialSettings@odata.bind",
|
||||
"booleanActions": 0,
|
||||
"policyType": 3,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"isSettingDescription": false,
|
||||
"showAsSectionHeader": false,
|
||||
"dataType": 8,
|
||||
"category": 35,
|
||||
"nameResourceKey": "derivedCredentialAppAuthenticationHeader",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 3,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"isSettingDescription": false,
|
||||
"showAsSectionHeader": false,
|
||||
"dataType": 8,
|
||||
"category": 35,
|
||||
"nameResourceKey": "derivedCredentialAppAuthenticationHeaderLearnMore",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 3,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 19,
|
||||
"category": 35,
|
||||
"nameResourceKey": "useDerivedCredentialForAppAuthentication",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "yes",
|
||||
"value": true,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "no",
|
||||
"value": false,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"defaultValue": true,
|
||||
"policyType": 3,
|
||||
"enabled": true
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,101 @@
|
||||
{
|
||||
"derivedcredentialauthenticationconfiguration_iosderivedcredentialauthenticationconfiguration": [
|
||||
{
|
||||
"dataType": 9,
|
||||
"category": 35,
|
||||
"childSettings": [
|
||||
{
|
||||
"dataType": 10,
|
||||
"category": 35,
|
||||
"nameResourceKey": "derivedCredentialsSearchingForTenantLevel",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 42,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 10,
|
||||
"category": 35,
|
||||
"nameResourceKey": "derivedCredentialsTenantLevelNotConfigured",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 42,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "derivedCredentialSettings@odata.bind",
|
||||
"booleanActions": 0,
|
||||
"policyType": 42,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"isSettingDescription": false,
|
||||
"showAsSectionHeader": false,
|
||||
"dataType": 8,
|
||||
"category": 35,
|
||||
"nameResourceKey": "derivedCredentialAppAuthenticationHeader",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 42,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"isSettingDescription": false,
|
||||
"showAsSectionHeader": false,
|
||||
"dataType": 8,
|
||||
"category": 35,
|
||||
"nameResourceKey": "derivedCredentialAppAuthenticationHeaderLearnMore",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 42,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 19,
|
||||
"category": 35,
|
||||
"nameResourceKey": "useDerivedCredentialForAppAuthentication",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "yes",
|
||||
"value": true,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "no",
|
||||
"value": false,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"defaultValue": true,
|
||||
"policyType": 42,
|
||||
"enabled": true
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,829 @@
|
||||
{
|
||||
"deviceexperience_androiddeviceownergeneral": {
|
||||
"isSettingDescription": false,
|
||||
"showAsSectionHeader": true,
|
||||
"dataType": 8,
|
||||
"category": 43,
|
||||
"nameResourceKey": "fullyManagedAndDedicatedAndroidEnrollmentTypesHeaderName",
|
||||
"descriptionResourceKey": "fullyManagedAndDedicatedAndroidEnrollmentTypesHeaderDescription",
|
||||
"childSettings": [
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 43,
|
||||
"nameResourceKey": "enrollmentProfileTypeName",
|
||||
"descriptionResourceKey": "enrollmentProfileTypeDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "notConfigured",
|
||||
"value": "notConfigured",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "enrollmentProfileTypeDedicatedDevice",
|
||||
"value": "dedicatedDevice",
|
||||
"children": [
|
||||
{
|
||||
"isSettingDescription": false,
|
||||
"showAsSectionHeader": false,
|
||||
"dataType": 8,
|
||||
"category": 43,
|
||||
"nameResourceKey": "deviceOwnerKioskHeadingText",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 2,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"isSettingDescription": false,
|
||||
"showAsSectionHeader": false,
|
||||
"dataType": 8,
|
||||
"category": 43,
|
||||
"nameResourceKey": "deviceOwnerKioskLearnMoreText",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 2,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 43,
|
||||
"nameResourceKey": "kioskModeName",
|
||||
"descriptionResourceKey": "kioskModeDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "notConfigured",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "kioskModeSingle",
|
||||
"value": "single",
|
||||
"children": [
|
||||
{
|
||||
"complexOptions": [
|
||||
{
|
||||
"dataType": 11,
|
||||
"category": 43,
|
||||
"nameResourceKey": "kioskModeManagedAppName",
|
||||
"descriptionResourceKey": "kioskModeManagedAppDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "kioskModeManagedAppId",
|
||||
"booleanActions": 0,
|
||||
"policyType": 2,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"dataType": 5,
|
||||
"category": 43,
|
||||
"nameResourceKey": "kioskModeManagedAppName",
|
||||
"emptyValueResourceKey": "selectManagedApp",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "kioskModeManagedApp",
|
||||
"booleanActions": 0,
|
||||
"policyType": 2,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "kioskModeMulti",
|
||||
"value": "multi",
|
||||
"children": [
|
||||
{
|
||||
"dataType": 25,
|
||||
"category": 43,
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 2,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 43,
|
||||
"nameResourceKey": "kioskFolderIconName",
|
||||
"descriptionResourceKey": "kioskFolderIconDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "kioskFolderIconNotConfigured",
|
||||
"value": "notConfigured",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "kioskFolderIconDarkSquare",
|
||||
"value": "darkSquare",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "kioskFolderIconDarkCircle",
|
||||
"value": "darkCircle",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "kioskFolderIconLightSquare",
|
||||
"value": "lightSquare",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "kioskFolderIconLightCircle",
|
||||
"value": "lightCircle",
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "kioskModeFolderIcon",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "notConfigured",
|
||||
"unconfiguredValue": "notConfigured",
|
||||
"policyType": 2,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 43,
|
||||
"nameResourceKey": "kioskIconSizeName",
|
||||
"descriptionResourceKey": "kioskIconSizeDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "kioskIconSizeNotConfigured",
|
||||
"value": "notConfigured",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "kioskIconSizeSmallest",
|
||||
"value": "smallest",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "kioskIconSizeSmall",
|
||||
"value": "small",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "kioskIconSizeRegular",
|
||||
"value": "regular",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "kioskIconSizeLarge",
|
||||
"value": "large",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "kioskIconSizeLargest",
|
||||
"value": "largest",
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "kioskModeIconSize",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "notConfigured",
|
||||
"unconfiguredValue": "notConfigured",
|
||||
"policyType": 2,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 43,
|
||||
"nameResourceKey": "kioskScreenOrientationName",
|
||||
"descriptionResourceKey": "kioskScreenOrientationDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "kioskScreenOrientationNotConfigured",
|
||||
"value": "notConfigured",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "kioskScreenOrientationPortrait",
|
||||
"value": "portrait",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "kioskScreenOrientationLandscape",
|
||||
"value": "landscape",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "kioskScreenOrientationAutoRotate",
|
||||
"value": "autoRotate",
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "kioskModeScreenOrientation",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "notConfigured",
|
||||
"unconfiguredValue": "notConfigured",
|
||||
"policyType": 2,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 43,
|
||||
"nameResourceKey": "kioskAppNotificationBadgeName",
|
||||
"descriptionResourceKey": "kioskAppNotificationBadgeDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "kioskModeShowAppNotificationBadge",
|
||||
"booleanActions": 2,
|
||||
"defaultValue": false,
|
||||
"policyType": 2,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 43,
|
||||
"nameResourceKey": "virtualHomeButtonName",
|
||||
"descriptionResourceKey": "virtualHomeButtonDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "virtualHomeButtonNotConfigured",
|
||||
"value": "notConfigured",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "virtualHomeButtonSwipeUp",
|
||||
"value": "swipeUp",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "virtualHomeButtonFloating",
|
||||
"value": "floating",
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "kioskModeVirtualHomeButtonType",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "notConfigured",
|
||||
"unconfiguredValue": "notConfigured",
|
||||
"policyType": 2,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 43,
|
||||
"nameResourceKey": "kioskDropOutName",
|
||||
"descriptionResourceKey": "kioskDropOutDescription",
|
||||
"childSettings": [
|
||||
{
|
||||
"dataType": 20,
|
||||
"category": 43,
|
||||
"nameResourceKey": "kioskModeExitCodeName",
|
||||
"descriptionResourceKey": "kioskModeExitCodeDescription",
|
||||
"emptyValueResourceKey": "kioskDropOutCodeEmptyValueKey",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "kioskModeExitCode",
|
||||
"booleanActions": 0,
|
||||
"policyType": 2,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "kioskDropOut",
|
||||
"booleanActions": 2,
|
||||
"defaultValue": false,
|
||||
"policyType": 2,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 20,
|
||||
"category": 43,
|
||||
"nameResourceKey": "backgroundWallpaperName",
|
||||
"descriptionResourceKey": "backgroundWallpaperDescription",
|
||||
"emptyValueResourceKey": "backgroundWallpaperEmptyValueKey",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "kioskModeWallpaperUrl",
|
||||
"booleanActions": 0,
|
||||
"policyType": 2,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 43,
|
||||
"nameResourceKey": "kioskManagedSettingsName",
|
||||
"descriptionResourceKey": "kioskManagedSettingsDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "kioskModeManagedSettingsEntryDisabled",
|
||||
"booleanActions": 5,
|
||||
"defaultValue": false,
|
||||
"policyType": 2,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 43,
|
||||
"nameResourceKey": "kioskDebugMenuName",
|
||||
"descriptionResourceKey": "kioskDebugMenuDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "kioskModeDebugMenuEasyAccessEnabled",
|
||||
"booleanActions": 2,
|
||||
"defaultValue": false,
|
||||
"policyType": 2,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 43,
|
||||
"nameResourceKey": "kioskWifiConfigName",
|
||||
"descriptionResourceKey": "kioskWifiConfigDescription",
|
||||
"childSettings": [
|
||||
{
|
||||
"columns": [
|
||||
{
|
||||
"metadata": {
|
||||
"dataType": 20,
|
||||
"category": 43,
|
||||
"nameResourceKey": "kioskWifiSsidColumnName",
|
||||
"emptyValueResourceKey": "kioskWifiSsidEmptyValueKey",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "name",
|
||||
"booleanActions": 0,
|
||||
"policyType": 2,
|
||||
"enabled": true
|
||||
}
|
||||
}
|
||||
],
|
||||
"dataType": 21,
|
||||
"category": 43,
|
||||
"nameResourceKey": "kioskWifiSsidsName",
|
||||
"descriptionResourceKey": "kioskWifiSsidsDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "kioskModeWifiAllowedSsids",
|
||||
"booleanActions": 0,
|
||||
"policyType": 2,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "kioskModeWiFiConfigurationEnabled",
|
||||
"booleanActions": 2,
|
||||
"defaultValue": false,
|
||||
"policyType": 2,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 43,
|
||||
"nameResourceKey": "kioskBluetoothConfigName",
|
||||
"descriptionResourceKey": "kioskBluetoothConfigDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "kioskModeBluetoothConfigurationEnabled",
|
||||
"booleanActions": 2,
|
||||
"defaultValue": false,
|
||||
"policyType": 2,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 43,
|
||||
"nameResourceKey": "kioskFlashlightConfigName",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "kioskModeFlashlightConfigurationEnabled",
|
||||
"booleanActions": 2,
|
||||
"defaultValue": false,
|
||||
"policyType": 2,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 43,
|
||||
"nameResourceKey": "kioskMediaVolumeConfigName",
|
||||
"descriptionResourceKey": "kioskMediaVolumeConfigDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "kioskModeMediaVolumeConfigurationEnabled",
|
||||
"booleanActions": 2,
|
||||
"defaultValue": false,
|
||||
"policyType": 2,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 43,
|
||||
"nameResourceKey": "kioskDeviceInfoName",
|
||||
"descriptionResourceKey": "kioskDeviceInfoDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "kioskModeShowDeviceInfo",
|
||||
"booleanActions": 2,
|
||||
"defaultValue": false,
|
||||
"policyType": 2,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 43,
|
||||
"nameResourceKey": "kioskScreenSaverConfigName",
|
||||
"descriptionResourceKey": "kioskScreenSaverConfigDescription",
|
||||
"childSettings": [
|
||||
{
|
||||
"dataType": 20,
|
||||
"category": 43,
|
||||
"nameResourceKey": "kioskScreenSaverImageConfigName",
|
||||
"emptyValueResourceKey": "kioskScreenSaverImageEmptyValueKey",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "kioskModeScreenSaverImageUrl",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "",
|
||||
"policyType": 2,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 14,
|
||||
"category": 43,
|
||||
"nameResourceKey": "kioskScreenSaverDisplayTimeConfigName",
|
||||
"descriptionResourceKey": "kioskScreenSaverDisplayTimeConfigDescription",
|
||||
"emptyValueResourceKey": "kioskScreenSaverSecondsEmptyValueKey",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "kioskModeScreenSaverDisplayTimeInSeconds",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": 0,
|
||||
"policyType": 2,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 14,
|
||||
"category": 43,
|
||||
"nameResourceKey": "kioskScreenSaverStartDelayConfigName",
|
||||
"descriptionResourceKey": "kioskScreenSaverStartDelayConfigDescription",
|
||||
"emptyValueResourceKey": "kioskScreenSaverSecondsEmptyValueKey",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "kioskModeScreenSaverStartDelayInSeconds",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": 30,
|
||||
"policyType": 2,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 43,
|
||||
"nameResourceKey": "kioskScreenSaverDetectMediaConfigName",
|
||||
"descriptionResourceKey": "kioskScreenSaverDetectMediaConfigDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "kioskModeScreenSaverDetectMediaDisabled",
|
||||
"booleanActions": 2,
|
||||
"defaultValue": true,
|
||||
"policyType": 2,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "kioskModeScreenSaverConfigurationEnabled",
|
||||
"booleanActions": 2,
|
||||
"defaultValue": false,
|
||||
"policyType": 2,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "kioskMode",
|
||||
"booleanActions": 0,
|
||||
"policyType": 2,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "enrollmentProfileTypeFullyManaged",
|
||||
"value": "fullyManaged",
|
||||
"children": [
|
||||
{
|
||||
"isSettingDescription": false,
|
||||
"showAsSectionHeader": false,
|
||||
"dataType": 8,
|
||||
"category": 43,
|
||||
"nameResourceKey": "enrollmentProfileTypeFullyManagedConfigureMicrosoftLauncher",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 2,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 43,
|
||||
"nameResourceKey": "enrollmentProfileTypeFullyManagedMakeMicrosoftLauncherDefaultName",
|
||||
"descriptionResourceKey": "enrollmentProfileTypeFullyManagedMakeMicrosoftLauncherDefaultDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "microsoftLauncherConfigurationEnabled",
|
||||
"booleanActions": 2,
|
||||
"defaultValue": false,
|
||||
"policyType": 2,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 43,
|
||||
"nameResourceKey": "enrollmentProfileTypeFullyManagedMicrosoftLauncherConfigureCustomWallpaperName",
|
||||
"descriptionResourceKey": "enrollmentProfileTypeFullyManagedMicrosoftLauncherConfigureCustomWallpaperDescription",
|
||||
"childSettings": [
|
||||
{
|
||||
"dataType": 20,
|
||||
"category": 43,
|
||||
"nameResourceKey": "enrollmentProfileTypeFullyManagedMicrosoftLauncherConfigureCustomWallpaperUrlName",
|
||||
"descriptionResourceKey": "enrollmentProfileTypeFullyManagedMicrosoftLauncherConfigureCustomWallpaperUrlDescription",
|
||||
"emptyValueResourceKey": "enrollmentProfileTypeFullyManagedMicrosoftLauncherConfigureCustomWallpaperUrlEmptyValueKey",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "microsoftLauncherCustomWallpaperImageUrl",
|
||||
"booleanActions": 0,
|
||||
"policyType": 2,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 43,
|
||||
"nameResourceKey": "enrollmentProfileTypeFullyManagedMicrosoftLauncherConfigureCustomWallpaperAllowUserModifyName",
|
||||
"descriptionResourceKey": "enrollmentProfileTypeFullyManagedMicrosoftLauncherConfigureCustomWallpaperAllowUserModifyDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "microsoftLauncherCustomWallpaperAllowUserModification",
|
||||
"booleanActions": 2,
|
||||
"defaultValue": false,
|
||||
"policyType": 2,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "microsoftLauncherCustomWallpaperEnabled",
|
||||
"booleanActions": 2,
|
||||
"defaultValue": false,
|
||||
"policyType": 2,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 43,
|
||||
"nameResourceKey": "enrollmentProfileTypeFullyManagedMicrosoftLauncherConfigureEnableLauncherFeedName",
|
||||
"descriptionResourceKey": "enrollmentProfileTypeFullyManagedMicrosoftLauncherConfigureEnableLauncherFeedDescription",
|
||||
"childSettings": [
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 43,
|
||||
"nameResourceKey": "enrollmentProfileTypeFullyManagedMicrosoftLauncherConfigureEnableLauncherFeedAllowUserModifyName",
|
||||
"descriptionResourceKey": "enrollmentProfileTypeFullyManagedMicrosoftLauncherConfigureEnableLauncherFeedAllowUserModifyDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "microsoftLauncherFeedAllowUserModification",
|
||||
"booleanActions": 2,
|
||||
"defaultValue": false,
|
||||
"policyType": 2,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "microsoftLauncherFeedEnabled",
|
||||
"booleanActions": 2,
|
||||
"defaultValue": false,
|
||||
"policyType": 2,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 43,
|
||||
"nameResourceKey": "enrollmentProfileTypeFullyManagedMicrosoftLauncherConfigureEnableLauncherDockPresenceName",
|
||||
"descriptionResourceKey": "enrollmentProfileTypeFullyManagedMicrosoftLauncherConfigureEnableLauncherDockPresenceDescription",
|
||||
"childSettings": [
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 43,
|
||||
"nameResourceKey": "enrollmentProfileTypeFullyManagedMicrosoftLauncherConfigureEnableLauncherDockPresenceAllowUserModifyName",
|
||||
"descriptionResourceKey": "enrollmentProfileTypeFullyManagedMicrosoftLauncherConfigureEnableLauncherDockPresenceAllowUserModifyDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "microsoftLauncherDockPresenceAllowUserModification",
|
||||
"booleanActions": 2,
|
||||
"defaultValue": false,
|
||||
"policyType": 2,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "notConfigured",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "enrollmentProfileTypeFullyManagedMicrosoftLauncherConfigureDockPresenceShow",
|
||||
"value": "show",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "enrollmentProfileTypeFullyManagedMicrosoftLauncherConfigureDockPresenceHide",
|
||||
"value": "hide",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "enrollmentProfileTypeFullyManagedMicrosoftLauncherConfigureDockPresenceDisabled",
|
||||
"value": "disabled",
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "microsoftLauncherDockPresenceConfiguration",
|
||||
"booleanActions": 0,
|
||||
"policyType": 2,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 43,
|
||||
"nameResourceKey": "enrollmentProfileTypeFullyManagedMicrosoftLauncherConfigureEnableLauncherSearchBarPlacementName",
|
||||
"descriptionResourceKey": "enrollmentProfileTypeFullyManagedMicrosoftLauncherConfigureEnableLauncherSearchBarPlacementDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "notConfigured",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "enrollmentProfileTypeFullyManagedMicrosoftLauncherConfigureSearchBarPlacementTop",
|
||||
"value": "top",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "enrollmentProfileTypeFullyManagedMicrosoftLauncherConfigureSearchBarPlacementBottom",
|
||||
"value": "bottom",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "enrollmentProfileTypeFullyManagedMicrosoftLauncherConfigureSearchBarPlacementHide",
|
||||
"value": "hide",
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "microsoftLauncherSearchBarPlacementConfiguration",
|
||||
"booleanActions": 0,
|
||||
"policyType": 2,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "enrollmentProfile",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "notConfigured",
|
||||
"policyType": 2,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 2,
|
||||
"enabled": true
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,383 @@
|
||||
{
|
||||
"devicefirmwareconfigurationinterface_windows10devicefirmwareconfigurationinterface": [
|
||||
{
|
||||
"isSettingDescription": false,
|
||||
"showAsSectionHeader": false,
|
||||
"dataType": 8,
|
||||
"category": 135,
|
||||
"nameResourceKey": "dfciHeaderName",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 107,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"isSettingDescription": false,
|
||||
"showAsSectionHeader": false,
|
||||
"dataType": 8,
|
||||
"category": 135,
|
||||
"nameResourceKey": "securityFeaturesName",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 107,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 135,
|
||||
"nameResourceKey": "changeUefiSettingsPermissionName",
|
||||
"descriptionResourceKey": "changeUefiSettingsPermissionDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "notConfiguredOnly",
|
||||
"value": "notConfiguredOnly",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "none",
|
||||
"value": "none",
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "changeUefiSettingsPermission",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "notConfiguredOnly",
|
||||
"unconfiguredValue": "notConfiguredOnly",
|
||||
"policyType": 107,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 135,
|
||||
"nameResourceKey": "virtualizationOfCpuAndIOName",
|
||||
"descriptionResourceKey": "virtualizationOfCpuAndIODescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "notConfigured",
|
||||
"value": "notConfigured",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "enabledOption",
|
||||
"value": "enabled",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "disabledOption",
|
||||
"value": "disabled",
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "virtualizationOfCpuAndIO",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "notConfigured",
|
||||
"unconfiguredValue": "notConfigured",
|
||||
"policyType": 107,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 135,
|
||||
"nameResourceKey": "windowsPlatformBinaryTableName",
|
||||
"descriptionResourceKey": "windowsPlatformBinaryTableDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "notConfigured",
|
||||
"value": "notConfigured",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "enabledOption",
|
||||
"value": "enabled",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "disabledOption",
|
||||
"value": "disabled",
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "windowsPlatformBinaryTable",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "notConfigured",
|
||||
"unconfiguredValue": "notConfigured",
|
||||
"policyType": 107,
|
||||
"enabled": false
|
||||
},
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 135,
|
||||
"nameResourceKey": "simultaneousMultiThreadingName",
|
||||
"descriptionResourceKey": "simultaneousMultiThreadingDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "notConfigured",
|
||||
"value": "notConfigured",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "enabledOption",
|
||||
"value": "enabled",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "disabledOption",
|
||||
"value": "disabled",
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "simultaneousMultiThreading",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "notConfigured",
|
||||
"unconfiguredValue": "notConfigured",
|
||||
"policyType": 107,
|
||||
"enabled": false
|
||||
},
|
||||
{
|
||||
"isSettingDescription": false,
|
||||
"showAsSectionHeader": false,
|
||||
"dataType": 8,
|
||||
"category": 135,
|
||||
"nameResourceKey": "builtInHardwareName",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 107,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"isSettingDescription": false,
|
||||
"showAsSectionHeader": false,
|
||||
"dataType": 8,
|
||||
"category": 135,
|
||||
"nameResourceKey": "dfciBuiltinHeaderDescName",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 107,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 135,
|
||||
"nameResourceKey": "camerasName",
|
||||
"descriptionResourceKey": "camerasDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "notConfigured",
|
||||
"value": "notConfigured",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "enabledOption",
|
||||
"value": "enabled",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "disabledOption",
|
||||
"value": "disabled",
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "cameras",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "notConfigured",
|
||||
"unconfiguredValue": "notConfigured",
|
||||
"policyType": 107,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 135,
|
||||
"nameResourceKey": "microphonesAndSpeakersName",
|
||||
"descriptionResourceKey": "microphonesAndSpeakersDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "notConfigured",
|
||||
"value": "notConfigured",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "enabledOption",
|
||||
"value": "enabled",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "disabledOption",
|
||||
"value": "disabled",
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "microphonesAndSpeakers",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "notConfigured",
|
||||
"unconfiguredValue": "notConfigured",
|
||||
"policyType": 107,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 135,
|
||||
"nameResourceKey": "radiosName",
|
||||
"descriptionResourceKey": "radiosDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "notConfigured",
|
||||
"value": "notConfigured",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "enabledOption",
|
||||
"value": "enabled",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "disabledOption",
|
||||
"value": "disabled",
|
||||
"children": [
|
||||
{
|
||||
"dataType": 10,
|
||||
"category": 135,
|
||||
"nameResourceKey": "radioWarningInfoBox",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 107,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "radios",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "notConfigured",
|
||||
"unconfiguredValue": "notConfigured",
|
||||
"policyType": 107,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"isSettingDescription": false,
|
||||
"showAsSectionHeader": false,
|
||||
"dataType": 8,
|
||||
"category": 135,
|
||||
"nameResourceKey": "bootOptionsName",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 107,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 135,
|
||||
"nameResourceKey": "bootFromExternalMediaName",
|
||||
"descriptionResourceKey": "bootFromExternalMediaDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "notConfigured",
|
||||
"value": "notConfigured",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "enabledOption",
|
||||
"value": "enabled",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "disabledOption",
|
||||
"value": "disabled",
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "bootFromExternalMedia",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "notConfigured",
|
||||
"unconfiguredValue": "notConfigured",
|
||||
"policyType": 107,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 135,
|
||||
"nameResourceKey": "bootFromBuiltInNetworkAdaptersName",
|
||||
"descriptionResourceKey": "bootFromBuiltInNetworkAdaptersDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "notConfigured",
|
||||
"value": "notConfigured",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "enabledOption",
|
||||
"value": "enabled",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "disabledOption",
|
||||
"value": "disabled",
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "bootFromBuiltInNetworkAdapters",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "notConfigured",
|
||||
"unconfiguredValue": "notConfigured",
|
||||
"policyType": 107,
|
||||
"enabled": true
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,181 @@
|
||||
{
|
||||
"deviceguard_windows10endpointprotection": [
|
||||
{
|
||||
"isSettingDescription": true,
|
||||
"showAsSectionHeader": false,
|
||||
"dataType": 8,
|
||||
"category": 38,
|
||||
"nameResourceKey": "Windows10EndpointProtectionDeviceGuardLearnMore",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 76,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 38,
|
||||
"nameResourceKey": "Win10AppLockerEnforcementTypeName",
|
||||
"descriptionResourceKey": "Win10AppLockerEnforcementTypeDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "Win10appLockerApplicationControlNotConfiguredName",
|
||||
"value": "notConfigured",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "Win10appLockerApplicationControlAllowName",
|
||||
"value": "allow",
|
||||
"children": [
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 38,
|
||||
"nameResourceKey": "Win10AppLockerApplicationControlTypeName",
|
||||
"descriptionResourceKey": "Win10appLockerApplicationControlAllowDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "Win10appLockerApplicationControlEnforceComponentsAndStoreAppsName",
|
||||
"value": "enforceComponentsAndStoreApps",
|
||||
"children": [
|
||||
{
|
||||
"isSettingDescription": true,
|
||||
"showAsSectionHeader": false,
|
||||
"dataType": 8,
|
||||
"category": 38,
|
||||
"nameResourceKey": "Win10appLockerApplicationControlEnforceComponentsAndStoreAppsDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 76,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "Win10appLockerApplicationControlEnforceComponentsStoreAppsAndSmartlockerName",
|
||||
"value": "enforceComponentsStoreAppsAndSmartlocker",
|
||||
"children": [
|
||||
{
|
||||
"isSettingDescription": true,
|
||||
"showAsSectionHeader": false,
|
||||
"dataType": 8,
|
||||
"category": 38,
|
||||
"nameResourceKey": "Win10appLockerApplicationControlEnforceComponentsStoreAppsAndSmartlockerDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 76,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "appLockerApplicationControl",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "enforceComponentsAndStoreApps",
|
||||
"unconfiguredValue": "notConfigured",
|
||||
"policyType": 76,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "Win10appLockerApplicationControlAuditOnlyName",
|
||||
"value": "audit",
|
||||
"children": [
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 38,
|
||||
"nameResourceKey": "Win10AppLockerApplicationControlTypeName",
|
||||
"descriptionResourceKey": "Win10AppLockerApplicationControlTypeAuditDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "Win10appLockerApplicationControlAuditComponentsAndStoreAppsName",
|
||||
"value": "auditComponentsAndStoreApps",
|
||||
"children": [
|
||||
{
|
||||
"isSettingDescription": true,
|
||||
"showAsSectionHeader": false,
|
||||
"dataType": 8,
|
||||
"category": 38,
|
||||
"nameResourceKey": "Win10appLockerApplicationControlAuditComponentsAndStoreAppsDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 76,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "Win10appLockerApplicationControlAuditComponentsStoreAppsAndSmartlockerName",
|
||||
"value": "auditComponentsStoreAppsAndSmartlocker",
|
||||
"children": [
|
||||
{
|
||||
"isSettingDescription": true,
|
||||
"showAsSectionHeader": false,
|
||||
"dataType": 8,
|
||||
"category": 38,
|
||||
"nameResourceKey": "Win10appLockerApplicationControlAuditComponentsStoreAppsAndSmartlockerDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 76,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "appLockerApplicationControl",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "auditComponentsAndStoreApps",
|
||||
"unconfiguredValue": "notConfigured",
|
||||
"policyType": 76,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "appLockerApplicationControlType",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "notConfigured",
|
||||
"policyType": 76,
|
||||
"enabled": true
|
||||
}
|
||||
]
|
||||
}
|
||||
195
Documentation/ObjectInfo/devicehealth_complianceandroid.json
Normal file
195
Documentation/ObjectInfo/devicehealth_complianceandroid.json
Normal file
@@ -0,0 +1,195 @@
|
||||
{
|
||||
"devicehealth_complianceandroid": [
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 36,
|
||||
"nameResourceKey": "complianceBlockDAManagedDevicesName",
|
||||
"descriptionResourceKey": "complianceBlockDAManagedDevicesDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "securityBlockDeviceAdministratorManagedDevices",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 29,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 36,
|
||||
"nameResourceKey": "complianceRootedAllowedName",
|
||||
"descriptionResourceKey": "complianceRootedAllowedDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "securityBlockJailbrokenDevices",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 29,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 36,
|
||||
"nameResourceKey": "complianceDeviceThreatProtectionRequirementName",
|
||||
"descriptionResourceKey": "complianceDeviceThreatProtectionRequirementDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "notConfigured",
|
||||
"value": "unavailable",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "secured",
|
||||
"value": "secured",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "lowOption",
|
||||
"value": "low",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "mediumOption",
|
||||
"value": "medium",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "highOption",
|
||||
"value": "high",
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "deviceThreatProtectionRequiredSecurityLevel",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "unavailable",
|
||||
"unconfiguredValue": "unavailable",
|
||||
"policyType": 29,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"isSettingDescription": false,
|
||||
"showAsSectionHeader": false,
|
||||
"dataType": 8,
|
||||
"category": 36,
|
||||
"nameResourceKey": "googlePlayProtectHeader",
|
||||
"childSettings": [
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 36,
|
||||
"nameResourceKey": "requireGooglePlayServicesName",
|
||||
"descriptionResourceKey": "requireGooglePlayServicesDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "securityRequireGooglePlayServices",
|
||||
"booleanActions": 1,
|
||||
"defaultValue": false,
|
||||
"policyType": 29,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 36,
|
||||
"nameResourceKey": "requireUpToDateSecurityProvidersName",
|
||||
"descriptionResourceKey": "requireUpToDateSecurityProvidersDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "securityRequireUpToDateSecurityProviders",
|
||||
"booleanActions": 1,
|
||||
"defaultValue": false,
|
||||
"policyType": 29,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 36,
|
||||
"nameResourceKey": "complianceSecurityEnableThreatScanOnAppsName",
|
||||
"descriptionResourceKey": "complianceSecurityEnableThreatScanOnAppsDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "requireAppVerify",
|
||||
"booleanActions": 1,
|
||||
"defaultValue": false,
|
||||
"policyType": 29,
|
||||
"enabled": false
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 36,
|
||||
"nameResourceKey": "complianceSecurityEnableThreatScanOnAppsName",
|
||||
"descriptionResourceKey": "complianceSecurityEnableThreatScanOnAppsDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "securityRequireVerifyApps",
|
||||
"booleanActions": 1,
|
||||
"defaultValue": false,
|
||||
"policyType": 29,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 36,
|
||||
"nameResourceKey": "safetyNetAttestationOptionsName",
|
||||
"descriptionResourceKey": "safetyNetAttestationOptionsDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "notConfigured",
|
||||
"value": "notConfigured",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "androidSafetyNetbasicIntegrity",
|
||||
"value": "basicIntegrity",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "androidSafetyNetBasicIntegrityAndCertified",
|
||||
"value": "basicIntegrityAndCertified",
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "androidSafetyNetAttestationOptions",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "notConfigured",
|
||||
"unconfiguredValue": "notConfigured",
|
||||
"policyType": 29,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 29,
|
||||
"enabled": true
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,93 @@
|
||||
{
|
||||
"devicehealth_complianceandroiddeviceowner": [
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 36,
|
||||
"nameResourceKey": "complianceDeviceThreatProtectionRequirementName",
|
||||
"descriptionResourceKey": "complianceDeviceThreatProtectionRequirementDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "notConfigured",
|
||||
"value": "unavailable",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "secured",
|
||||
"value": "secured",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "lowOption",
|
||||
"value": "low",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "mediumOption",
|
||||
"value": "medium",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "highOption",
|
||||
"value": "high",
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "deviceThreatProtectionRequiredSecurityLevel",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "unavailable",
|
||||
"unconfiguredValue": "unavailable",
|
||||
"policyType": 31,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"isSettingDescription": false,
|
||||
"showAsSectionHeader": false,
|
||||
"dataType": 8,
|
||||
"category": 36,
|
||||
"nameResourceKey": "googlePlayProtectHeader",
|
||||
"childSettings": [
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 36,
|
||||
"nameResourceKey": "safetyNetAttestationOptionsName",
|
||||
"descriptionResourceKey": "safetyNetAttestationOptionsDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "notConfigured",
|
||||
"value": "notConfigured",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "androidSafetyNetbasicIntegrity",
|
||||
"value": "basicIntegrity",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "androidSafetyNetBasicIntegrityAndCertified",
|
||||
"value": "basicIntegrityAndCertified",
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "androidSafetyNetAttestationOptions",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "notConfigured",
|
||||
"unconfiguredValue": "notConfigured",
|
||||
"policyType": 31,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 31,
|
||||
"enabled": true
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,144 @@
|
||||
{
|
||||
"devicehealth_complianceandroidforwork": [
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 36,
|
||||
"nameResourceKey": "complianceRootedAllowedName",
|
||||
"descriptionResourceKey": "complianceRootedAllowedDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "securityBlockJailbrokenDevices",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 30,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 36,
|
||||
"nameResourceKey": "complianceDeviceThreatProtectionRequirementName",
|
||||
"descriptionResourceKey": "complianceDeviceThreatProtectionRequirementDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "notConfigured",
|
||||
"value": "unavailable",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "secured",
|
||||
"value": "secured",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "lowOption",
|
||||
"value": "low",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "mediumOption",
|
||||
"value": "medium",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "highOption",
|
||||
"value": "high",
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "deviceThreatProtectionRequiredSecurityLevel",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "unavailable",
|
||||
"unconfiguredValue": "unavailable",
|
||||
"policyType": 30,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"isSettingDescription": false,
|
||||
"showAsSectionHeader": false,
|
||||
"dataType": 8,
|
||||
"category": 36,
|
||||
"nameResourceKey": "googlePlayProtectHeader",
|
||||
"childSettings": [
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 36,
|
||||
"nameResourceKey": "requireGooglePlayServicesName",
|
||||
"descriptionResourceKey": "requireGooglePlayServicesDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "securityRequireGooglePlayServices",
|
||||
"booleanActions": 1,
|
||||
"defaultValue": false,
|
||||
"policyType": 30,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 36,
|
||||
"nameResourceKey": "requireUpToDateSecurityProvidersName",
|
||||
"descriptionResourceKey": "requireUpToDateSecurityProvidersDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "securityRequireUpToDateSecurityProviders",
|
||||
"booleanActions": 1,
|
||||
"defaultValue": false,
|
||||
"policyType": 30,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 36,
|
||||
"nameResourceKey": "safetyNetAttestationOptionsName",
|
||||
"descriptionResourceKey": "safetyNetAttestationOptionsDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "notConfigured",
|
||||
"value": "notConfigured",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "androidSafetyNetbasicIntegrity",
|
||||
"value": "basicIntegrity",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "androidSafetyNetBasicIntegrityAndCertified",
|
||||
"value": "basicIntegrityAndCertified",
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "androidSafetyNetAttestationOptions",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "notConfigured",
|
||||
"unconfiguredValue": "notConfigured",
|
||||
"policyType": 30,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 30,
|
||||
"enabled": true
|
||||
}
|
||||
]
|
||||
}
|
||||
63
Documentation/ObjectInfo/devicehealth_complianceios.json
Normal file
63
Documentation/ObjectInfo/devicehealth_complianceios.json
Normal file
@@ -0,0 +1,63 @@
|
||||
{
|
||||
"devicehealth_complianceios": [
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 36,
|
||||
"nameResourceKey": "complianceJailbreakAllowedName",
|
||||
"descriptionResourceKey": "complianceJailbreakAllowedDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "securityBlockJailbrokenDevices",
|
||||
"booleanActions": 3,
|
||||
"defaultValue": false,
|
||||
"policyType": 33,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 36,
|
||||
"nameResourceKey": "complianceDeviceThreatProtectionRequirementName",
|
||||
"descriptionResourceKey": "complianceDeviceThreatProtectionRequirementDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "notConfigured",
|
||||
"value": "unavailable",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "secured",
|
||||
"value": "secured",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "lowOption",
|
||||
"value": "low",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "mediumOption",
|
||||
"value": "medium",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "highOption",
|
||||
"value": "high",
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "deviceThreatProtectionRequiredSecurityLevel",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "unavailable",
|
||||
"unconfiguredValue": "unavailable",
|
||||
"policyType": 33,
|
||||
"enabled": true
|
||||
}
|
||||
]
|
||||
}
|
||||
19
Documentation/ObjectInfo/devicehealth_compliancemac.json
Normal file
19
Documentation/ObjectInfo/devicehealth_compliancemac.json
Normal file
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"devicehealth_compliancemac": {
|
||||
"dataType": 0,
|
||||
"category": 36,
|
||||
"nameResourceKey": "complianceSystemIntegrityProtectionName",
|
||||
"descriptionResourceKey": "complianceSystemIntegrityProtectionDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "systemIntegrityProtectionEnabled",
|
||||
"booleanActions": 1,
|
||||
"defaultValue": false,
|
||||
"policyType": 34,
|
||||
"enabled": true
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,68 @@
|
||||
{
|
||||
"devicehealth_compliancewindows10": {
|
||||
"isSettingDescription": false,
|
||||
"showAsSectionHeader": false,
|
||||
"dataType": 8,
|
||||
"category": 36,
|
||||
"nameResourceKey": "complianceWindowsDeviceHealthAttestationHeader",
|
||||
"childSettings": [
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 36,
|
||||
"nameResourceKey": "bitLockerEnabledName",
|
||||
"descriptionResourceKey": "bitLockerEnabledDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "bitLockerEnabled",
|
||||
"booleanActions": 1,
|
||||
"defaultValue": false,
|
||||
"policyType": 35,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 36,
|
||||
"nameResourceKey": "secureBootEnabledName",
|
||||
"descriptionResourceKey": "secureBootEnabledDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "secureBootEnabled",
|
||||
"booleanActions": 1,
|
||||
"defaultValue": false,
|
||||
"policyType": 35,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 36,
|
||||
"nameResourceKey": "codeIntegrityEnabledName",
|
||||
"descriptionResourceKey": "codeIntegrityEnabledDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "codeIntegrityEnabled",
|
||||
"booleanActions": 1,
|
||||
"defaultValue": false,
|
||||
"policyType": 35,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 35,
|
||||
"enabled": true
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,431 @@
|
||||
{
|
||||
"devicepassword_androiddeviceownergeneral": [
|
||||
{
|
||||
"isSettingDescription": false,
|
||||
"showAsSectionHeader": true,
|
||||
"dataType": 8,
|
||||
"category": 39,
|
||||
"nameResourceKey": "allAndroidCorpEnrollmentTypesHeaderName",
|
||||
"descriptionResourceKey": "allAndroidCorpEnrollmentTypesHeaderDescription",
|
||||
"childSettings": [
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 39,
|
||||
"nameResourceKey": "requiredPasswordTypeName",
|
||||
"descriptionResourceKey": "androidEnterpriseRequiredPasswordTypeDescription",
|
||||
"emptyValueResourceKey": "passwordExpirationInDaysEmptyValueKey",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "selectTypeOption",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "deviceDefault",
|
||||
"value": "deviceDefault",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "requiredNoRestiction",
|
||||
"value": "required",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "biometricWeak",
|
||||
"value": "lowSecurityBiometric",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "numericOption",
|
||||
"value": "numeric",
|
||||
"children": [
|
||||
{
|
||||
"dataType": 14,
|
||||
"category": 39,
|
||||
"nameResourceKey": "complianceMinimumPasswordLengthName",
|
||||
"descriptionResourceKey": "passwordMinimumLengthDescription",
|
||||
"emptyValueResourceKey": "minimumPasswordLengthEmptyValueKeyFourToSixteen",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "passwordMinimumLength",
|
||||
"booleanActions": 0,
|
||||
"policyType": 2,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "numericComplex",
|
||||
"value": "numericComplex",
|
||||
"children": [
|
||||
{
|
||||
"dataType": 14,
|
||||
"category": 39,
|
||||
"nameResourceKey": "complianceMinimumPasswordLengthName",
|
||||
"descriptionResourceKey": "passwordMinimumLengthDescription",
|
||||
"emptyValueResourceKey": "minimumPasswordLengthEmptyValueKeyFourToSixteen",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "passwordMinimumLength",
|
||||
"booleanActions": 0,
|
||||
"policyType": 2,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "alphabeticOption",
|
||||
"value": "alphabetic",
|
||||
"children": [
|
||||
{
|
||||
"dataType": 14,
|
||||
"category": 39,
|
||||
"nameResourceKey": "complianceMinimumPasswordLengthName",
|
||||
"descriptionResourceKey": "passwordMinimumLengthDescription",
|
||||
"emptyValueResourceKey": "minimumPasswordLengthEmptyValueKeyFourToSixteen",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "passwordMinimumLength",
|
||||
"booleanActions": 0,
|
||||
"policyType": 2,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "alphanumericOption",
|
||||
"value": "alphanumeric",
|
||||
"children": [
|
||||
{
|
||||
"dataType": 14,
|
||||
"category": 39,
|
||||
"nameResourceKey": "complianceMinimumPasswordLengthName",
|
||||
"descriptionResourceKey": "passwordMinimumLengthDescription",
|
||||
"emptyValueResourceKey": "minimumPasswordLengthEmptyValueKeyFourToSixteen",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "passwordMinimumLength",
|
||||
"booleanActions": 0,
|
||||
"policyType": 2,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "alphanumericWithSymbolsOption",
|
||||
"value": "alphanumericWithSymbols",
|
||||
"children": [
|
||||
{
|
||||
"dataType": 14,
|
||||
"category": 39,
|
||||
"nameResourceKey": "complianceMinimumPasswordLengthName",
|
||||
"descriptionResourceKey": "passwordMinimumLengthDescription",
|
||||
"emptyValueResourceKey": "minimumPasswordLengthEmptyValueKeyFourToSixteen",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "passwordMinimumLength",
|
||||
"booleanActions": 0,
|
||||
"policyType": 2,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 14,
|
||||
"category": 39,
|
||||
"nameResourceKey": "passwordMinimumLetterCharactersName",
|
||||
"descriptionResourceKey": "",
|
||||
"emptyValueResourceKey": "passwordEmptyValueKeyZeroToSixteen",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "passwordMinimumLetterCharacters",
|
||||
"booleanActions": 0,
|
||||
"policyType": 2,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 14,
|
||||
"category": 39,
|
||||
"nameResourceKey": "passwordMinimumLowerCaseCharactersName",
|
||||
"descriptionResourceKey": "",
|
||||
"emptyValueResourceKey": "passwordEmptyValueKeyZeroToSixteen",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "passwordMinimumLowerCaseCharacters",
|
||||
"booleanActions": 0,
|
||||
"policyType": 2,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 14,
|
||||
"category": 39,
|
||||
"nameResourceKey": "passwordMinimumUpperCaseCharactersName",
|
||||
"descriptionResourceKey": "",
|
||||
"emptyValueResourceKey": "passwordEmptyValueKeyZeroToSixteen",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "passwordMinimumUpperCaseCharacters",
|
||||
"booleanActions": 0,
|
||||
"policyType": 2,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 14,
|
||||
"category": 39,
|
||||
"nameResourceKey": "passwordMinimumNonLetterCharactersName",
|
||||
"descriptionResourceKey": "",
|
||||
"emptyValueResourceKey": "passwordEmptyValueKeyZeroToSixteen",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "passwordMinimumNonLetterCharacters",
|
||||
"booleanActions": 0,
|
||||
"policyType": 2,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 14,
|
||||
"category": 39,
|
||||
"nameResourceKey": "passwordMinimumNumericCharactersName",
|
||||
"descriptionResourceKey": "",
|
||||
"emptyValueResourceKey": "passwordEmptyValueKeyZeroToSixteen",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "passwordMinimumNumericCharacters",
|
||||
"booleanActions": 0,
|
||||
"policyType": 2,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 14,
|
||||
"category": 39,
|
||||
"nameResourceKey": "passwordMinimumSymbolCharactersName",
|
||||
"descriptionResourceKey": "passwordMinimumSymbolCharactersDescription",
|
||||
"emptyValueResourceKey": "passwordEmptyValueKeyZeroToSixteen",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "passwordMinimumSymbolCharacters",
|
||||
"booleanActions": 0,
|
||||
"policyType": 2,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "customPasswordOption",
|
||||
"value": "customPassword",
|
||||
"children": [
|
||||
{
|
||||
"dataType": 20,
|
||||
"category": 39,
|
||||
"nameResourceKey": "androidDeviceOwnerCustomPasswordName",
|
||||
"descriptionResourceKey": "androidDeviceOwnerCustomPasswordDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "customPassword",
|
||||
"booleanActions": 0,
|
||||
"policyType": 2,
|
||||
"enabled": false
|
||||
}
|
||||
],
|
||||
"enabled": false
|
||||
}
|
||||
],
|
||||
"entityKey": "passwordRequiredType",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "deviceDefault",
|
||||
"unconfiguredValue": "deviceDefault",
|
||||
"policyType": 2,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 14,
|
||||
"category": 39,
|
||||
"nameResourceKey": "passwordExpirationName",
|
||||
"descriptionResourceKey": "passwordExpirationDescription",
|
||||
"emptyValueResourceKey": "passwordExpirationInDaysEmptyValueOneYearKey",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "passwordExpirationDays",
|
||||
"booleanActions": 0,
|
||||
"policyType": 2,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 14,
|
||||
"category": 39,
|
||||
"nameResourceKey": "passwordPreviousPasswordBlockCountName",
|
||||
"descriptionResourceKey": "passwordPreviousPasswordBlockCountDescription",
|
||||
"emptyValueResourceKey": "numberOfPreviousPasswordsToBlockEmptyValueKey",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "passwordPreviousPasswordCountToBlock",
|
||||
"booleanActions": 0,
|
||||
"policyType": 2,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 14,
|
||||
"category": 39,
|
||||
"nameResourceKey": "passwordSignInFailureCountBeforeFactoryResetName",
|
||||
"descriptionResourceKey": "passwordSignInFailureCountBeforeFactoryResetDescription",
|
||||
"emptyValueResourceKey": "passwordSignInFailureCountBeforeFactoryResetEmptyValueKey",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "passwordSignInFailureCountBeforeFactoryReset",
|
||||
"booleanActions": 0,
|
||||
"policyType": 2,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 13,
|
||||
"category": 39,
|
||||
"nameResourceKey": "passwordBlockKeyguardFeaturesName",
|
||||
"descriptionResourceKey": "passwordBlockKeyguardFeaturesDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "cameraOptionAndroid",
|
||||
"value": "camera",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "notificationsOptionAndroid",
|
||||
"value": "notifications",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "unredactedNotificationsOption",
|
||||
"value": "unredactedNotifications",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "remoteInputOptionAndroid",
|
||||
"value": "remoteInput",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "trustAgentsOptionAndroid",
|
||||
"value": "trustAgents",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "fingerprintOptionAndroid",
|
||||
"value": "fingerprint",
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "passwordBlockKeyguardFeaturesList",
|
||||
"booleanActions": 0,
|
||||
"policyType": 2,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 2,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"isSettingDescription": false,
|
||||
"showAsSectionHeader": true,
|
||||
"dataType": 8,
|
||||
"category": 39,
|
||||
"nameResourceKey": "fullyManagedAndDedicatedAndroidEnrollmentTypesHeaderName",
|
||||
"descriptionResourceKey": "fullyManagedAndDedicatedAndroidEnrollmentTypesHeaderDescription",
|
||||
"childSettings": [
|
||||
{
|
||||
"dataType": 0,
|
||||
"category": 39,
|
||||
"nameResourceKey": "keyguardDisabledName",
|
||||
"descriptionResourceKey": "keyguardDisabledDescriptionAndroid",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "passwordBlockKeyguard",
|
||||
"booleanActions": 5,
|
||||
"defaultValue": false,
|
||||
"policyType": 2,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 2,
|
||||
"enabled": true
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,222 @@
|
||||
{
|
||||
"devicepassword_aospdeviceownerdevice": [
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 39,
|
||||
"nameResourceKey": "requiredPasswordTypeName",
|
||||
"descriptionResourceKey": "androidEnterpriseRequiredPasswordTypeDescription",
|
||||
"emptyValueResourceKey": "passwordExpirationInDaysEmptyValueKey",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "selectTypeOption",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "deviceDefault",
|
||||
"value": "deviceDefault",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "requiredNoRestiction",
|
||||
"value": "required",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "biometricWeak",
|
||||
"value": "lowSecurityBiometric",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "numericOption",
|
||||
"value": "numeric",
|
||||
"children": [
|
||||
{
|
||||
"dataType": 14,
|
||||
"category": 39,
|
||||
"nameResourceKey": "complianceMinimumPasswordLengthName",
|
||||
"descriptionResourceKey": "passwordMinimumLengthDescription",
|
||||
"emptyValueResourceKey": "minimumPasswordLengthEmptyValueKeyFourToSixteen",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "passwordMinimumLength",
|
||||
"booleanActions": 0,
|
||||
"policyType": 28,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "numericComplex",
|
||||
"value": "numericComplex",
|
||||
"children": [
|
||||
{
|
||||
"dataType": 14,
|
||||
"category": 39,
|
||||
"nameResourceKey": "complianceMinimumPasswordLengthName",
|
||||
"descriptionResourceKey": "passwordMinimumLengthDescription",
|
||||
"emptyValueResourceKey": "minimumPasswordLengthEmptyValueKeyFourToSixteen",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "passwordMinimumLength",
|
||||
"booleanActions": 0,
|
||||
"policyType": 28,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "alphabeticOption",
|
||||
"value": "alphabetic",
|
||||
"children": [
|
||||
{
|
||||
"dataType": 14,
|
||||
"category": 39,
|
||||
"nameResourceKey": "complianceMinimumPasswordLengthName",
|
||||
"descriptionResourceKey": "passwordMinimumLengthDescription",
|
||||
"emptyValueResourceKey": "minimumPasswordLengthEmptyValueKeyFourToSixteen",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "passwordMinimumLength",
|
||||
"booleanActions": 0,
|
||||
"policyType": 28,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "alphanumericOption",
|
||||
"value": "alphanumeric",
|
||||
"children": [
|
||||
{
|
||||
"dataType": 14,
|
||||
"category": 39,
|
||||
"nameResourceKey": "complianceMinimumPasswordLengthName",
|
||||
"descriptionResourceKey": "passwordMinimumLengthDescription",
|
||||
"emptyValueResourceKey": "minimumPasswordLengthEmptyValueKeyFourToSixteen",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "passwordMinimumLength",
|
||||
"booleanActions": 0,
|
||||
"policyType": 28,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "alphanumericWithSymbolsOption",
|
||||
"value": "alphanumericWithSymbols",
|
||||
"children": [
|
||||
{
|
||||
"dataType": 14,
|
||||
"category": 39,
|
||||
"nameResourceKey": "complianceMinimumPasswordLengthName",
|
||||
"descriptionResourceKey": "passwordMinimumLengthDescription",
|
||||
"emptyValueResourceKey": "minimumPasswordLengthEmptyValueKeyFourToSixteen",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "passwordMinimumLength",
|
||||
"booleanActions": 0,
|
||||
"policyType": 28,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "passwordRequiredType",
|
||||
"booleanActions": 0,
|
||||
"defaultValue": "deviceDefault",
|
||||
"unconfiguredValue": "deviceDefault",
|
||||
"policyType": 28,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 14,
|
||||
"category": 39,
|
||||
"nameResourceKey": "passwordSignInFailureCountBeforeFactoryResetName",
|
||||
"descriptionResourceKey": "passwordSignInFailureCountBeforeFactoryResetDescription",
|
||||
"emptyValueResourceKey": "passwordSignInFailureCountBeforeFactoryResetEmptyValueKey",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "passwordSignInFailureCountBeforeFactoryReset",
|
||||
"booleanActions": 0,
|
||||
"policyType": 28,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 16,
|
||||
"category": 39,
|
||||
"nameResourceKey": "minutesOfInactivityBeforeScreenTurnsOffName",
|
||||
"descriptionResourceKey": "minutesOfInactivityBeforeScreenTurnsOffDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
{
|
||||
"nameResourceKey": "notConfigured",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "oneMinuteOption",
|
||||
"value": 1,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "fiveMinutesOption",
|
||||
"value": 5,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "fifteenMinutesOption",
|
||||
"value": 15,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "thirtyMinutesOption",
|
||||
"value": 30,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"nameResourceKey": "oneHourOption",
|
||||
"value": 60,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"entityKey": "passwordMinutesOfInactivityBeforeScreenTimeout",
|
||||
"booleanActions": 0,
|
||||
"policyType": 28,
|
||||
"enabled": true
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,49 @@
|
||||
{
|
||||
"deviceproperties_complianceandroid": {
|
||||
"isSettingDescription": false,
|
||||
"showAsSectionHeader": false,
|
||||
"dataType": 8,
|
||||
"category": 40,
|
||||
"nameResourceKey": "complianceOsVersionRestrictionHeader",
|
||||
"childSettings": [
|
||||
{
|
||||
"dataType": 20,
|
||||
"category": 40,
|
||||
"nameResourceKey": "complianceOsVersionRestrictionMinimumName",
|
||||
"descriptionResourceKey": "complianceOsVersionRestrictionMinimumAndroidDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "osMinimumVersion",
|
||||
"booleanActions": 0,
|
||||
"policyType": 29,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 20,
|
||||
"category": 40,
|
||||
"nameResourceKey": "complianceOsVersionRestrictionMaximumName",
|
||||
"descriptionResourceKey": "complianceOsVersionRestrictionMaximumAndroidDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "osMaximumVersion",
|
||||
"booleanActions": 0,
|
||||
"policyType": 29,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 29,
|
||||
"enabled": true
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,65 @@
|
||||
{
|
||||
"deviceproperties_complianceandroiddeviceowner": {
|
||||
"isSettingDescription": false,
|
||||
"showAsSectionHeader": false,
|
||||
"dataType": 8,
|
||||
"category": 40,
|
||||
"nameResourceKey": "complianceOsVersionRestrictionHeader",
|
||||
"childSettings": [
|
||||
{
|
||||
"dataType": 20,
|
||||
"category": 40,
|
||||
"nameResourceKey": "complianceOsVersionRestrictionMinimumName",
|
||||
"descriptionResourceKey": "complianceOsVersionRestrictionMinimumAndroidDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "osMinimumVersion",
|
||||
"booleanActions": 0,
|
||||
"policyType": 31,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 20,
|
||||
"category": 40,
|
||||
"nameResourceKey": "complianceOsVersionRestrictionMaximumName",
|
||||
"descriptionResourceKey": "complianceOsVersionRestrictionMaximumAndroidDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "osMaximumVersion",
|
||||
"booleanActions": 0,
|
||||
"policyType": 31,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 20,
|
||||
"category": 40,
|
||||
"nameResourceKey": "complianceMinimumSecurityPatchLevelName",
|
||||
"descriptionResourceKey": "complianceMinimumSecurityPatchLevelDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "minAndroidSecurityPatchLevel",
|
||||
"booleanActions": 0,
|
||||
"policyType": 31,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 31,
|
||||
"enabled": true
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,49 @@
|
||||
{
|
||||
"deviceproperties_complianceandroidforwork": {
|
||||
"isSettingDescription": false,
|
||||
"showAsSectionHeader": false,
|
||||
"dataType": 8,
|
||||
"category": 40,
|
||||
"nameResourceKey": "complianceOsVersionRestrictionHeader",
|
||||
"childSettings": [
|
||||
{
|
||||
"dataType": 20,
|
||||
"category": 40,
|
||||
"nameResourceKey": "complianceOsVersionRestrictionMinimumName",
|
||||
"descriptionResourceKey": "complianceOsVersionRestrictionMinimumAndroidDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "osMinimumVersion",
|
||||
"booleanActions": 0,
|
||||
"policyType": 30,
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"dataType": 20,
|
||||
"category": 40,
|
||||
"nameResourceKey": "complianceOsVersionRestrictionMaximumName",
|
||||
"descriptionResourceKey": "complianceOsVersionRestrictionMaximumAndroidDescription",
|
||||
"childSettings": [
|
||||
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"entityKey": "osMaximumVersion",
|
||||
"booleanActions": 0,
|
||||
"policyType": 30,
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"options": [
|
||||
|
||||
],
|
||||
"booleanActions": 0,
|
||||
"policyType": 30,
|
||||
"enabled": true
|
||||
}
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user