3.7.0
This commit is contained in:
@@ -12,7 +12,7 @@
|
|||||||
RootModule = 'CloudAPIPowerShellManagement.psm1'
|
RootModule = 'CloudAPIPowerShellManagement.psm1'
|
||||||
|
|
||||||
# Version number of this module.
|
# Version number of this module.
|
||||||
ModuleVersion = '3.6.0'
|
ModuleVersion = '3.7.0'
|
||||||
|
|
||||||
# Supported PSEditions
|
# Supported PSEditions
|
||||||
# CompatiblePSEditions = @()
|
# CompatiblePSEditions = @()
|
||||||
|
|||||||
112
Core.psm1
112
Core.psm1
@@ -11,7 +11,7 @@ This module handles the WPF UI
|
|||||||
|
|
||||||
function Get-ModuleVersion
|
function Get-ModuleVersion
|
||||||
{
|
{
|
||||||
'3.6.0'
|
'3.7.0'
|
||||||
}
|
}
|
||||||
|
|
||||||
function Initialize-Window
|
function Initialize-Window
|
||||||
@@ -895,13 +895,77 @@ function Show-AuthenticationInfo
|
|||||||
if($profileObj)
|
if($profileObj)
|
||||||
{
|
{
|
||||||
$profileObj.Tag = "ProfilePicture"
|
$profileObj.Tag = "ProfilePicture"
|
||||||
$profileObj.SetValue([System.Windows.Controls.Grid]::ColumnProperty,1) | Out-Null
|
$profileObj.SetValue([System.Windows.Controls.Grid]::ColumnProperty,2) | Out-Null
|
||||||
$global:grdMenu.Children.Add($profileObj) | Out-Null
|
$global:grdMenu.Children.Add($profileObj) | Out-Null
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
[System.Windows.Forms.Application]::DoEvents()
|
[System.Windows.Forms.Application]::DoEvents()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function Set-EnvironmentInfo
|
||||||
|
{
|
||||||
|
param($environmentName)
|
||||||
|
|
||||||
|
if(-not $global:grdEnvironment)
|
||||||
|
{
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if($global:grdEnvironment -and $environmentName)
|
||||||
|
{
|
||||||
|
$global:grdEnvironment.Visibility = "Visible"
|
||||||
|
if((Get-SettingValue "MenuShowOrganizationName") -eq $true)
|
||||||
|
{
|
||||||
|
$global:lblEnvironment.Content = $environmentName
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
$global:lblEnvironment.Content = ""
|
||||||
|
}
|
||||||
|
$bgColor = (Get-SettingValue "MenuBGColor")
|
||||||
|
$fgColor = (Get-SettingValue "MenuFGColor")
|
||||||
|
if(-not $script:mnuDefaultBGColor)
|
||||||
|
{
|
||||||
|
$script:mnuDefaultBGColor = $global:mnuMain.Background
|
||||||
|
}
|
||||||
|
if(-not $script:mnuDefaultFGColor)
|
||||||
|
{
|
||||||
|
$script:mnuDefaultFGColor = $global:mnuMain.Foreground
|
||||||
|
}
|
||||||
|
|
||||||
|
if(-not $bgColor)
|
||||||
|
{
|
||||||
|
$bgColor = $script:mnuDefaultBGColor
|
||||||
|
}
|
||||||
|
|
||||||
|
if($bgColor)
|
||||||
|
{
|
||||||
|
$global:grdMenu.Background = $bgColor
|
||||||
|
$global:mnuMain.Background = $bgColor
|
||||||
|
}
|
||||||
|
|
||||||
|
if(-not $fgColor)
|
||||||
|
{
|
||||||
|
$fgColor = $script:mnuDefaultFGColor
|
||||||
|
}
|
||||||
|
|
||||||
|
if($fgColor)
|
||||||
|
{
|
||||||
|
$global:lblEnvironment.Foreground = $fgColor
|
||||||
|
$global:mnuMain.Foreground = $fgColor
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
$global:grdEnvironment.Visibility = "Collapsed"
|
||||||
|
$global:lblEnvironment.Text = ""
|
||||||
|
$global:mnuMain.Background = $script:mnuDefaultBGColor
|
||||||
|
$global:mnuMain.Foreground = $script:mnuDefaultFGColor
|
||||||
|
$global:lblEnvironment.Foreground = $script:mnuDefaultFGColor
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region Generic functions
|
#region Generic functions
|
||||||
@@ -1102,10 +1166,11 @@ function Initialize-Settings
|
|||||||
|
|
||||||
$global:Debug = Get-SettingValue "Debug"
|
$global:Debug = Get-SettingValue "Debug"
|
||||||
$global:logFile = $null
|
$global:logFile = $null
|
||||||
$global:logFileMaxSize = $null
|
$global:logFileMaxSize = $null
|
||||||
|
|
||||||
if($Updated -eq $true)
|
if($Updated -eq $true)
|
||||||
{
|
{
|
||||||
|
Set-EnvironmentInfo $global:Organization.displayName
|
||||||
Invoke-ModuleFunction "Invoke-SettingsUpdated"
|
Invoke-ModuleFunction "Invoke-SettingsUpdated"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1843,6 +1908,20 @@ function Show-SettingsForm
|
|||||||
function Add-DefaultSettings
|
function Add-DefaultSettings
|
||||||
{
|
{
|
||||||
$global:appSettingSections = @()
|
$global:appSettingSections = @()
|
||||||
|
|
||||||
|
$script:lstColors = @()
|
||||||
|
$script:lstColors += [PSCustomObject]@{
|
||||||
|
Name = ""
|
||||||
|
Value = ""
|
||||||
|
}
|
||||||
|
|
||||||
|
foreach($color in ([System.Drawing.Color].GetProperties() | Where { $_.PropertyType -eq [System.Drawing.Color] } | Sort -Property Name | Select Name).Name)
|
||||||
|
{
|
||||||
|
$script:lstColors += [PSCustomObject]@{
|
||||||
|
Name = $color
|
||||||
|
Value = $color
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
$global:appSettingSections += (New-Object PSObject -Property @{
|
$global:appSettingSections += (New-Object PSObject -Property @{
|
||||||
Title = "General"
|
Title = "General"
|
||||||
@@ -1892,7 +1971,32 @@ function Add-DefaultSettings
|
|||||||
Type = "Boolean"
|
Type = "Boolean"
|
||||||
DefaultValue = $true
|
DefaultValue = $true
|
||||||
Description = "Check GitHub if there is a later version available"
|
Description = "Check GitHub if there is a later version available"
|
||||||
}) "General"
|
}) "General"
|
||||||
|
|
||||||
|
Add-SettingsObject (New-Object PSObject -Property @{
|
||||||
|
Title = "Menu Background color"
|
||||||
|
Key = "MenuBGColor"
|
||||||
|
Type = "List"
|
||||||
|
ItemsSource = $script:lstColors
|
||||||
|
DefaultValue = ""
|
||||||
|
}) "General"
|
||||||
|
|
||||||
|
Add-SettingsObject (New-Object PSObject -Property @{
|
||||||
|
Title = "Menu Foreground color"
|
||||||
|
Key = "MenuFGColor"
|
||||||
|
Type = "List"
|
||||||
|
ItemsSource = $script:lstColors
|
||||||
|
DefaultValue = ""
|
||||||
|
}) "General"
|
||||||
|
|
||||||
|
Add-SettingsObject (New-Object PSObject -Property @{
|
||||||
|
Title = "Show tenant name"
|
||||||
|
Key = "MenuShowOrganizationName"
|
||||||
|
Type = "Boolean"
|
||||||
|
DefaultValue = $true
|
||||||
|
Description = "Adds the organization name next to the login info on the menu bar"
|
||||||
|
}) "General"
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function Add-SettingsObject
|
function Add-SettingsObject
|
||||||
|
|||||||
@@ -2,146 +2,154 @@
|
|||||||
"0": "AirPlay",
|
"0": "AirPlay",
|
||||||
"1": "AirPrint",
|
"1": "AirPrint",
|
||||||
"2": "AndroidDeviceOwnerApplications",
|
"2": "AndroidDeviceOwnerApplications",
|
||||||
"3": "ApplicationGuard",
|
"3": "AndroidDeviceOwnerPolicyMessages",
|
||||||
"4": "ApplicationRestrictions",
|
"4": "ApplicationGuard",
|
||||||
"5": "ApplicationVisibility",
|
"5": "ApplicationRestrictions",
|
||||||
"6": "Applications",
|
"6": "ApplicationVisibility",
|
||||||
"7": "ApplicationsAndGames",
|
"7": "Applications",
|
||||||
"8": "ApplicationsAndGoogle",
|
"8": "ApplicationsAndGames",
|
||||||
"9": "AppManagement",
|
"9": "ApplicationsAndGoogle",
|
||||||
"10": "AppsAndExperience",
|
"10": "AppManagement",
|
||||||
"11": "AssociatedDomains",
|
"11": "AppsAndExperience",
|
||||||
"12": "AutonomousSingleAppMode",
|
"12": "AssociatedDomains",
|
||||||
"13": "AzureOperationalInsights",
|
"13": "AutonomousSingleAppMode",
|
||||||
"14": "BitLocker",
|
"14": "AzureOperationalInsights",
|
||||||
"15": "Browser",
|
"15": "BitLocker",
|
||||||
"16": "BuiltinApps",
|
"16": "BootOptions",
|
||||||
"17": "Cellular",
|
"17": "Browser",
|
||||||
"18": "CloudAndStorage",
|
"18": "BuiltinApps",
|
||||||
"19": "CloudPrint",
|
"19": "Cameras",
|
||||||
"20": "ConnectedDevices",
|
"20": "Cellular",
|
||||||
"21": "Connectivity",
|
"21": "CloudAndStorage",
|
||||||
"22": "ContentCaching",
|
"22": "CloudPrint",
|
||||||
"23": "ControlPanelAndSettings",
|
"23": "ConnectedDevices",
|
||||||
"24": "CredentialGuard",
|
"24": "Connectivity",
|
||||||
"25": "CustomConfiguration",
|
"25": "ContentCaching",
|
||||||
"26": "CustomOMASettings",
|
"26": "ControlPanelAndSettings",
|
||||||
"27": "CustomPreferences",
|
"27": "CredentialGuard",
|
||||||
"28": "Defender",
|
"28": "CustomConfiguration",
|
||||||
"29": "DefenderExclusions",
|
"29": "CustomOMASettings",
|
||||||
"30": "DefenderExploitGuard",
|
"30": "CustomPreferences",
|
||||||
"31": "DefenderSecurityCenter",
|
"31": "Defender",
|
||||||
"32": "DefenderLocalSecurityOptions",
|
"32": "DefenderExclusions",
|
||||||
"33": "DefenderFirewall",
|
"33": "DefenderExploitGuard",
|
||||||
"34": "DeliveryOptimization",
|
"34": "DefenderSecurityCenter",
|
||||||
"35": "DerivedCredentialAuthenticationConfiguration",
|
"35": "DefenderLocalSecurityOptions",
|
||||||
"36": "DeviceHealth",
|
"36": "DefenderFirewall",
|
||||||
"37": "DeviceAccount",
|
"37": "DeliveryOptimization",
|
||||||
"38": "DeviceGuard",
|
"38": "DerivedCredentialAuthenticationConfiguration",
|
||||||
"39": "DevicePassword",
|
"39": "DeviceHealth",
|
||||||
"40": "DeviceProperties",
|
"40": "DeviceAccount",
|
||||||
"41": "DeviceRestrictions",
|
"41": "DeviceGuard",
|
||||||
"42": "DeviceSecurity",
|
"42": "DevicePassword",
|
||||||
"43": "DeviceExperience",
|
"43": "DeviceProperties",
|
||||||
"44": "Display",
|
"44": "DeviceRestrictions",
|
||||||
"45": "Domains",
|
"45": "DeviceSecurity",
|
||||||
"46": "EditionUpgrade",
|
"46": "DeviceExperience",
|
||||||
"47": "SMode",
|
"47": "DFCISecuritySettings",
|
||||||
"48": "EdgeBrowser",
|
"48": "Display",
|
||||||
"49": "EdgeBrowserSmartScreen",
|
"49": "Domains",
|
||||||
"50": "EnterpriseDataProtection",
|
"50": "EditionUpgrade",
|
||||||
"51": "EducationTeacherCerts",
|
"51": "SMode",
|
||||||
"52": "EducationStudentCerts",
|
"52": "EdgeBrowser",
|
||||||
"53": "EducationTakeATest",
|
"53": "EdgeBrowserSmartScreen",
|
||||||
"54": "EmailProfile",
|
"54": "EnterpriseDataProtection",
|
||||||
"55": "ExpeditedCheckin",
|
"55": "EducationTeacherCerts",
|
||||||
"56": "ExtensibleSingleSignOn",
|
"56": "EducationStudentCerts",
|
||||||
"57": "FileVault",
|
"57": "EducationTakeATest",
|
||||||
"58": "Firewall",
|
"58": "EmailProfile",
|
||||||
"59": "Gatekeeper",
|
"59": "ExpeditedCheckin",
|
||||||
"60": "HealthMonitoring",
|
"60": "ExtensibleSingleSignOn",
|
||||||
"61": "HomeScreenLayout",
|
"61": "FileVault",
|
||||||
"62": "ComplianceEmailProfile",
|
"62": "Firewall",
|
||||||
"63": "IosEducation",
|
"63": "Gatekeeper",
|
||||||
"64": "IOSWallpaper",
|
"64": "HealthMonitoring",
|
||||||
"65": "ImportedPFX",
|
"65": "HomeScreenLayout",
|
||||||
"66": "KernelExtensions",
|
"66": "ComplianceEmailProfile",
|
||||||
"67": "KeyboardAndDictionary",
|
"67": "IosEducation",
|
||||||
"68": "Kiosk",
|
"68": "IOSWallpaper",
|
||||||
"69": "KioskAndroidEnterprise",
|
"69": "ImportedPFX",
|
||||||
"70": "KioskConfiguration",
|
"70": "KernelExtensions",
|
||||||
"71": "KioskConfigurationV2",
|
"71": "KeyboardAndDictionary",
|
||||||
"72": "KioskWebBrowser",
|
"72": "Kiosk",
|
||||||
"73": "EdgeKiosk",
|
"73": "KioskAndroidEnterprise",
|
||||||
"74": "LockedScreenExperience",
|
"74": "KioskConfiguration",
|
||||||
"75": "LockScreenMessage",
|
"75": "KioskConfigurationV2",
|
||||||
"76": "Logging",
|
"76": "KioskWebBrowser",
|
||||||
"77": "LoginItems",
|
"77": "EdgeKiosk",
|
||||||
"78": "LoginWindow",
|
"78": "LockedScreenExperience",
|
||||||
"79": "Malware",
|
"79": "LockScreenMessage",
|
||||||
"80": "Maintenance",
|
"80": "Logging",
|
||||||
"81": "Messaging",
|
"81": "LoginItems",
|
||||||
"82": "NetworkProxy",
|
"82": "LoginWindow",
|
||||||
"83": "NetworkBoundary",
|
"83": "Malware",
|
||||||
"84": "Notifications",
|
"84": "Maintenance",
|
||||||
"85": "Password",
|
"85": "Messaging",
|
||||||
"86": "Personalization",
|
"86": "MicrophonesAndSpeakers",
|
||||||
"87": "PersonalProfile",
|
"87": "NetworkProxy",
|
||||||
"88": "PKCS",
|
"88": "NetworkBoundary",
|
||||||
"89": "PolicyOverride",
|
"89": "Notifications",
|
||||||
"90": "PowerSettings",
|
"90": "Password",
|
||||||
"91": "Printer",
|
"91": "Personalization",
|
||||||
"92": "Privacy",
|
"92": "PersonalProfile",
|
||||||
"93": "PrivacyPerApp",
|
"93": "PKCS",
|
||||||
"94": "PrivacyPreferences",
|
"94": "PolicyOverride",
|
||||||
"95": "Projection",
|
"95": "Ports",
|
||||||
"96": "SCEPProperties",
|
"96": "PowerSettings",
|
||||||
"97": "SharedDevice",
|
"97": "Printer",
|
||||||
"98": "SharedPCAccountManager",
|
"98": "Privacy",
|
||||||
"99": "SingleSignOn",
|
"99": "PrivacyPerApp",
|
||||||
"100": "Search",
|
"100": "PrivacyPreferences",
|
||||||
"101": "Session",
|
"101": "Projection",
|
||||||
"102": "SmartScreen",
|
"102": "Radios",
|
||||||
"103": "SoftwareUpdates",
|
"103": "SCEPProperties",
|
||||||
"104": "Start",
|
"104": "SharedDevice",
|
||||||
"105": "SystemExtensions",
|
"105": "SharedPCAccountManager",
|
||||||
"106": "SystemSecurity",
|
"106": "SingleSignOn",
|
||||||
"107": "SCCMCompliance",
|
"107": "Search",
|
||||||
"108": "TrustedCert",
|
"108": "Session",
|
||||||
"109": "Unsupported",
|
"109": "SmartScreen",
|
||||||
"110": "Updates",
|
"110": "SoftwareUpdates",
|
||||||
"111": "UsersAndAccounts",
|
"111": "Start",
|
||||||
"112": "WiFi",
|
"112": "SystemExtensions",
|
||||||
"113": "Win10Wifi",
|
"113": "SystemSecurity",
|
||||||
"114": "WindowsAtp",
|
"114": "SCCMCompliance",
|
||||||
"115": "WindowsSpotlight",
|
"115": "TrustedCert",
|
||||||
"116": "Wireless",
|
"116": "UEFIAccess",
|
||||||
"117": "WirelessProjection",
|
"117": "Unsupported",
|
||||||
"118": "WorkProfile",
|
"118": "Updates",
|
||||||
"119": "WorkProfilePassword",
|
"119": "UsersAndAccounts",
|
||||||
"120": "VPN",
|
"120": "WakeSettings",
|
||||||
"121": "VPNApps",
|
"121": "WiFi",
|
||||||
"122": "VPNConnectivity",
|
"122": "Win10Wifi",
|
||||||
"123": "VPNSplitTunneling",
|
"123": "WindowsAtp",
|
||||||
"124": "VPNAppsAndTrafficRules",
|
"124": "WindowsSpotlight",
|
||||||
"125": "VPNConditionalAccess",
|
"125": "Wireless",
|
||||||
"126": "VPNDNSTriggers",
|
"126": "WirelessProjection",
|
||||||
"127": "VPNIKEv2",
|
"127": "WorkProfile",
|
||||||
"128": "VPNProxy",
|
"128": "WorkProfilePassword",
|
||||||
"129": "VPNTrustedNetwork",
|
"129": "VPN",
|
||||||
"130": "VPNCustomData",
|
"130": "VPNApps",
|
||||||
"131": "WebContentFilter",
|
"131": "VPNConnectivity",
|
||||||
"132": "XboxServices",
|
"132": "VPNSplitTunneling",
|
||||||
"133": "DomainJoin",
|
"133": "VPNAppsAndTrafficRules",
|
||||||
"134": "WindowsDefenderAtp",
|
"134": "VPNConditionalAccess",
|
||||||
"135": "WindowsHelloForBusiness",
|
"135": "VPNDNSTriggers",
|
||||||
"136": "DeviceFirmwareConfigurationInterface",
|
"136": "VPNIKEv2",
|
||||||
"137": "ZebraMx",
|
"137": "VPNProxy",
|
||||||
"138": "AndroidDefenderAtp",
|
"138": "VPNTrustedNetwork",
|
||||||
"139": "MacDefenderAtp",
|
"139": "VPNCustomData",
|
||||||
"140": "UserRights",
|
"140": "WebContentFilter",
|
||||||
"141": "WiredNetwork",
|
"141": "XboxServices",
|
||||||
"142": "DefenderAntivirus",
|
"142": "DomainJoin",
|
||||||
"143": "CustomCompliance",
|
"143": "WindowsDefenderAtp",
|
||||||
"144": "IosDefenderAtp"
|
"144": "WindowsHelloForBusiness",
|
||||||
|
"145": "ZebraMx",
|
||||||
|
"146": "AndroidDefenderAtp",
|
||||||
|
"147": "MacDefenderAtp",
|
||||||
|
"148": "UserRights",
|
||||||
|
"149": "WiredNetwork",
|
||||||
|
"150": "DefenderAntivirus",
|
||||||
|
"151": "CustomCompliance",
|
||||||
|
"152": "IosDefenderAtp"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -114,7 +114,8 @@
|
|||||||
"AndroidDeviceOwnerApplications",
|
"AndroidDeviceOwnerApplications",
|
||||||
"VPNConnectivity",
|
"VPNConnectivity",
|
||||||
"WorkProfilePassword",
|
"WorkProfilePassword",
|
||||||
"PersonalProfile"
|
"PersonalProfile",
|
||||||
|
"AndroidDeviceOwnerPolicyMessages"
|
||||||
],
|
],
|
||||||
"ShowDisabled": true
|
"ShowDisabled": true
|
||||||
},
|
},
|
||||||
@@ -844,7 +845,14 @@
|
|||||||
"PolicyTypeLanguageId": "deviceFirmwareConfigurationInterface",
|
"PolicyTypeLanguageId": "deviceFirmwareConfigurationInterface",
|
||||||
"PlatformLanguageId": "Windows10",
|
"PlatformLanguageId": "Windows10",
|
||||||
"Categories": [
|
"Categories": [
|
||||||
"DeviceFirmwareConfigurationInterface"
|
"UEFIAccess",
|
||||||
|
"DFCISecuritySettings",
|
||||||
|
"Cameras",
|
||||||
|
"MicrophonesAndSpeakers",
|
||||||
|
"Radios",
|
||||||
|
"BootOptions",
|
||||||
|
"Ports",
|
||||||
|
"WakeSettings"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -3,12 +3,12 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 138,
|
"category": 146,
|
||||||
"nameResourceKey": "complianceAtpDeviceRiskHeader",
|
"nameResourceKey": "complianceAtpDeviceRiskHeader",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 138,
|
"category": 146,
|
||||||
"nameResourceKey": "complianceDeviceRiskATPRequirementName",
|
"nameResourceKey": "complianceDeviceRiskATPRequirementName",
|
||||||
"descriptionResourceKey": "complianceDeviceRiskATPRequirementDescription",
|
"descriptionResourceKey": "complianceDeviceRiskATPRequirementDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|||||||
@@ -3,12 +3,12 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 138,
|
"category": 146,
|
||||||
"nameResourceKey": "complianceAtpDeviceRiskHeader",
|
"nameResourceKey": "complianceAtpDeviceRiskHeader",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 138,
|
"category": 146,
|
||||||
"nameResourceKey": "complianceDeviceRiskATPRequirementName",
|
"nameResourceKey": "complianceDeviceRiskATPRequirementName",
|
||||||
"descriptionResourceKey": "complianceDeviceRiskATPRequirementDescription",
|
"descriptionResourceKey": "complianceDeviceRiskATPRequirementDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|||||||
@@ -3,12 +3,12 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 138,
|
"category": 146,
|
||||||
"nameResourceKey": "complianceAtpDeviceRiskHeader",
|
"nameResourceKey": "complianceAtpDeviceRiskHeader",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 138,
|
"category": 146,
|
||||||
"nameResourceKey": "complianceDeviceRiskATPRequirementName",
|
"nameResourceKey": "complianceDeviceRiskATPRequirementName",
|
||||||
"descriptionResourceKey": "complianceDeviceRiskATPRequirementDescription",
|
"descriptionResourceKey": "complianceDeviceRiskATPRequirementDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|||||||
@@ -0,0 +1,74 @@
|
|||||||
|
{
|
||||||
|
"androiddeviceownerpolicymessages_androiddeviceownergeneral": {
|
||||||
|
"isSettingDescription": false,
|
||||||
|
"showAsSectionHeader": true,
|
||||||
|
"dataType": 8,
|
||||||
|
"category": 3,
|
||||||
|
"nameResourceKey": "allAndroidCorpEnrollmentTypesHeaderName",
|
||||||
|
"descriptionResourceKey": "allAndroidCorpEnrollmentTypesHeaderDescription",
|
||||||
|
"childSettings": [
|
||||||
|
{
|
||||||
|
"isSettingDescription": false,
|
||||||
|
"showAsSectionHeader": true,
|
||||||
|
"dataType": 8,
|
||||||
|
"category": 3,
|
||||||
|
"nameResourceKey": "shortSupportMessageName",
|
||||||
|
"childSettings": [
|
||||||
|
{
|
||||||
|
"dataType": 25,
|
||||||
|
"category": 3,
|
||||||
|
"childSettings": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"options": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"booleanActions": 0,
|
||||||
|
"policyType": 2,
|
||||||
|
"enabled": true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"options": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"booleanActions": 0,
|
||||||
|
"policyType": 2,
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isSettingDescription": false,
|
||||||
|
"showAsSectionHeader": true,
|
||||||
|
"dataType": 8,
|
||||||
|
"category": 3,
|
||||||
|
"nameResourceKey": "longSupportMessageName",
|
||||||
|
"childSettings": [
|
||||||
|
{
|
||||||
|
"dataType": 25,
|
||||||
|
"category": 3,
|
||||||
|
"childSettings": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"options": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"booleanActions": 0,
|
||||||
|
"policyType": 2,
|
||||||
|
"enabled": true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"options": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"booleanActions": 0,
|
||||||
|
"policyType": 2,
|
||||||
|
"enabled": true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"options": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"booleanActions": 0,
|
||||||
|
"policyType": 2,
|
||||||
|
"enabled": true
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -2,7 +2,7 @@
|
|||||||
"applicationguard_windows10endpointprotection": [
|
"applicationguard_windows10endpointprotection": [
|
||||||
{
|
{
|
||||||
"dataType": 10,
|
"dataType": 10,
|
||||||
"category": 3,
|
"category": 4,
|
||||||
"nameResourceKey": "applicationGuardInstallationText",
|
"nameResourceKey": "applicationGuardInstallationText",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -16,13 +16,13 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 3,
|
"category": 4,
|
||||||
"nameResourceKey": "applicationGuardEnabledName",
|
"nameResourceKey": "applicationGuardEnabledName",
|
||||||
"descriptionResourceKey": "applicationGuardEnabledDescription",
|
"descriptionResourceKey": "applicationGuardEnabledDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 3,
|
"category": 4,
|
||||||
"nameResourceKey": "applicationGuardClipboardBehaviorName",
|
"nameResourceKey": "applicationGuardClipboardBehaviorName",
|
||||||
"descriptionResourceKey": "applicationGuardClipboardBehaviorDescription",
|
"descriptionResourceKey": "applicationGuardClipboardBehaviorDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -40,7 +40,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 3,
|
"category": 4,
|
||||||
"nameResourceKey": "applicationGuardClipboardContentName",
|
"nameResourceKey": "applicationGuardClipboardContentName",
|
||||||
"descriptionResourceKey": "applicationGuardClipboardContentDescription",
|
"descriptionResourceKey": "applicationGuardClipboardContentDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -84,7 +84,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 3,
|
"category": 4,
|
||||||
"nameResourceKey": "applicationGuardClipboardContentName",
|
"nameResourceKey": "applicationGuardClipboardContentName",
|
||||||
"descriptionResourceKey": "applicationGuardClipboardContentDescription",
|
"descriptionResourceKey": "applicationGuardClipboardContentDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -128,7 +128,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 3,
|
"category": 4,
|
||||||
"nameResourceKey": "applicationGuardClipboardContentName",
|
"nameResourceKey": "applicationGuardClipboardContentName",
|
||||||
"descriptionResourceKey": "applicationGuardClipboardContentDescription",
|
"descriptionResourceKey": "applicationGuardClipboardContentDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -181,7 +181,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 3,
|
"category": 4,
|
||||||
"nameResourceKey": "applicationGuardBlockNonEnterpriseContentName",
|
"nameResourceKey": "applicationGuardBlockNonEnterpriseContentName",
|
||||||
"descriptionResourceKey": "applicationGuardBlockNonEnterpriseContentDescription",
|
"descriptionResourceKey": "applicationGuardBlockNonEnterpriseContentDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -199,13 +199,13 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 3,
|
"category": 4,
|
||||||
"nameResourceKey": "applicationGuardPrintFromVirtualBrowserName",
|
"nameResourceKey": "applicationGuardPrintFromVirtualBrowserName",
|
||||||
"descriptionResourceKey": "applicationGuardPrintFromVirtualBrowserDescription",
|
"descriptionResourceKey": "applicationGuardPrintFromVirtualBrowserDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 13,
|
"dataType": 13,
|
||||||
"category": 3,
|
"category": 4,
|
||||||
"nameResourceKey": "applicationGuardAllowPrintToName",
|
"nameResourceKey": "applicationGuardAllowPrintToName",
|
||||||
"descriptionResourceKey": "applicationGuardAllowPrintToDescription",
|
"descriptionResourceKey": "applicationGuardAllowPrintToDescription",
|
||||||
"emptyValueResourceKey": "notConfigured",
|
"emptyValueResourceKey": "notConfigured",
|
||||||
@@ -252,7 +252,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 3,
|
"category": 4,
|
||||||
"nameResourceKey": "applicationGuardAuditingName",
|
"nameResourceKey": "applicationGuardAuditingName",
|
||||||
"descriptionResourceKey": "applicationGuardAuditingDescription",
|
"descriptionResourceKey": "applicationGuardAuditingDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -270,7 +270,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 3,
|
"category": 4,
|
||||||
"nameResourceKey": "applicationGuardAllowPersistenceName",
|
"nameResourceKey": "applicationGuardAllowPersistenceName",
|
||||||
"descriptionResourceKey": "applicationGuardAllowPersistenceDescription",
|
"descriptionResourceKey": "applicationGuardAllowPersistenceDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -288,7 +288,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 3,
|
"category": 4,
|
||||||
"nameResourceKey": "applicationGuardAllowVirtualGPUName",
|
"nameResourceKey": "applicationGuardAllowVirtualGPUName",
|
||||||
"descriptionResourceKey": "applicationGuardAllowVirtualGPUDescription",
|
"descriptionResourceKey": "applicationGuardAllowVirtualGPUDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -306,7 +306,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 3,
|
"category": 4,
|
||||||
"nameResourceKey": "applicationGuardAllowFileSaveOnHostName",
|
"nameResourceKey": "applicationGuardAllowFileSaveOnHostName",
|
||||||
"descriptionResourceKey": "applicationGuardAllowFileSaveOnHostDescription",
|
"descriptionResourceKey": "applicationGuardAllowFileSaveOnHostDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -335,13 +335,13 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 3,
|
"category": 4,
|
||||||
"nameResourceKey": "applicationGuardEnabledName",
|
"nameResourceKey": "applicationGuardEnabledName",
|
||||||
"descriptionResourceKey": "applicationGuardEnabledOptionsDescription",
|
"descriptionResourceKey": "applicationGuardEnabledOptionsDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 3,
|
"category": 4,
|
||||||
"nameResourceKey": "applicationGuardClipboardBehaviorName",
|
"nameResourceKey": "applicationGuardClipboardBehaviorName",
|
||||||
"descriptionResourceKey": "applicationGuardClipboardBehaviorDescription",
|
"descriptionResourceKey": "applicationGuardClipboardBehaviorDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -359,7 +359,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 3,
|
"category": 4,
|
||||||
"nameResourceKey": "applicationGuardClipboardContentName",
|
"nameResourceKey": "applicationGuardClipboardContentName",
|
||||||
"descriptionResourceKey": "applicationGuardClipboardContentDescription",
|
"descriptionResourceKey": "applicationGuardClipboardContentDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -403,7 +403,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 3,
|
"category": 4,
|
||||||
"nameResourceKey": "applicationGuardClipboardContentName",
|
"nameResourceKey": "applicationGuardClipboardContentName",
|
||||||
"descriptionResourceKey": "applicationGuardClipboardContentDescription",
|
"descriptionResourceKey": "applicationGuardClipboardContentDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -447,7 +447,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 3,
|
"category": 4,
|
||||||
"nameResourceKey": "applicationGuardClipboardContentName",
|
"nameResourceKey": "applicationGuardClipboardContentName",
|
||||||
"descriptionResourceKey": "applicationGuardClipboardContentDescription",
|
"descriptionResourceKey": "applicationGuardClipboardContentDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -500,7 +500,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 3,
|
"category": 4,
|
||||||
"nameResourceKey": "applicationGuardBlockNonEnterpriseContentName",
|
"nameResourceKey": "applicationGuardBlockNonEnterpriseContentName",
|
||||||
"descriptionResourceKey": "applicationGuardBlockNonEnterpriseContentDescription",
|
"descriptionResourceKey": "applicationGuardBlockNonEnterpriseContentDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -518,13 +518,13 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 3,
|
"category": 4,
|
||||||
"nameResourceKey": "applicationGuardPrintFromVirtualBrowserName",
|
"nameResourceKey": "applicationGuardPrintFromVirtualBrowserName",
|
||||||
"descriptionResourceKey": "applicationGuardPrintFromVirtualBrowserDescription",
|
"descriptionResourceKey": "applicationGuardPrintFromVirtualBrowserDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 13,
|
"dataType": 13,
|
||||||
"category": 3,
|
"category": 4,
|
||||||
"nameResourceKey": "applicationGuardAllowPrintToName",
|
"nameResourceKey": "applicationGuardAllowPrintToName",
|
||||||
"descriptionResourceKey": "applicationGuardAllowPrintToDescription",
|
"descriptionResourceKey": "applicationGuardAllowPrintToDescription",
|
||||||
"emptyValueResourceKey": "notConfigured",
|
"emptyValueResourceKey": "notConfigured",
|
||||||
@@ -571,7 +571,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 3,
|
"category": 4,
|
||||||
"nameResourceKey": "applicationGuardAuditingName",
|
"nameResourceKey": "applicationGuardAuditingName",
|
||||||
"descriptionResourceKey": "applicationGuardAuditingDescription",
|
"descriptionResourceKey": "applicationGuardAuditingDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -589,7 +589,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 3,
|
"category": 4,
|
||||||
"nameResourceKey": "applicationGuardAllowPersistenceName",
|
"nameResourceKey": "applicationGuardAllowPersistenceName",
|
||||||
"descriptionResourceKey": "applicationGuardAllowPersistenceDescription",
|
"descriptionResourceKey": "applicationGuardAllowPersistenceDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -607,7 +607,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 3,
|
"category": 4,
|
||||||
"nameResourceKey": "applicationGuardAllowVirtualGPUName",
|
"nameResourceKey": "applicationGuardAllowVirtualGPUName",
|
||||||
"descriptionResourceKey": "applicationGuardAllowVirtualGPUDescription",
|
"descriptionResourceKey": "applicationGuardAllowVirtualGPUDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -625,7 +625,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 3,
|
"category": 4,
|
||||||
"nameResourceKey": "applicationGuardAllowFileSaveOnHostName",
|
"nameResourceKey": "applicationGuardAllowFileSaveOnHostName",
|
||||||
"descriptionResourceKey": "applicationGuardAllowFileSaveOnHostDescription",
|
"descriptionResourceKey": "applicationGuardAllowFileSaveOnHostDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"applicationrestrictions_androidgeneral": {
|
"applicationrestrictions_androidgeneral": {
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 4,
|
"category": 5,
|
||||||
"nameResourceKey": "restrictedAppsListOptionsName",
|
"nameResourceKey": "restrictedAppsListOptionsName",
|
||||||
"descriptionResourceKey": "restrictedAppsListOptionsDescription",
|
"descriptionResourceKey": "restrictedAppsListOptionsDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -10,7 +10,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 4,
|
"category": 5,
|
||||||
"nameResourceKey": "appUrlName",
|
"nameResourceKey": "appUrlName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"emptyValueResourceKey": "androidAppStoreExample",
|
"emptyValueResourceKey": "androidAppStoreExample",
|
||||||
@@ -29,7 +29,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 4,
|
"category": 5,
|
||||||
"nameResourceKey": "appBundleIdColumn",
|
"nameResourceKey": "appBundleIdColumn",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"emptyValueResourceKey": "bundleIdExample",
|
"emptyValueResourceKey": "bundleIdExample",
|
||||||
@@ -48,7 +48,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 4,
|
"category": 5,
|
||||||
"nameResourceKey": "appNameName",
|
"nameResourceKey": "appNameName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -66,7 +66,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 4,
|
"category": 5,
|
||||||
"nameResourceKey": "appPublisherName",
|
"nameResourceKey": "appPublisherName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -83,7 +83,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 21,
|
"dataType": 21,
|
||||||
"category": 4,
|
"category": 5,
|
||||||
"nameResourceKey": "appListTableName",
|
"nameResourceKey": "appListTableName",
|
||||||
"descriptionResourceKey": "googleAppUrlHelp",
|
"descriptionResourceKey": "googleAppUrlHelp",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 4,
|
"category": 5,
|
||||||
"nameResourceKey": "IosGeneralApplicationRestrictionsHeader",
|
"nameResourceKey": "IosGeneralApplicationRestrictionsHeader",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -20,13 +20,13 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": true,
|
"showAsSectionHeader": true,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 4,
|
"category": 5,
|
||||||
"nameResourceKey": "deviceEnrollmentAndAutomatedDeviceEnrollmentHeaderName",
|
"nameResourceKey": "deviceEnrollmentAndAutomatedDeviceEnrollmentHeaderName",
|
||||||
"descriptionResourceKey": "deviceEnrollmentAndAutomatedDeviceEnrollmentHeaderDescription",
|
"descriptionResourceKey": "deviceEnrollmentAndAutomatedDeviceEnrollmentHeaderDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 4,
|
"category": 5,
|
||||||
"nameResourceKey": "restrictedAppsListOptionsName",
|
"nameResourceKey": "restrictedAppsListOptionsName",
|
||||||
"descriptionResourceKey": "restrictedAppsListOptionsDescription",
|
"descriptionResourceKey": "restrictedAppsListOptionsDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -35,7 +35,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 4,
|
"category": 5,
|
||||||
"nameResourceKey": "appUrlName",
|
"nameResourceKey": "appUrlName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"emptyValueResourceKey": "kioskModeAppStoreExample",
|
"emptyValueResourceKey": "kioskModeAppStoreExample",
|
||||||
@@ -54,7 +54,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 4,
|
"category": 5,
|
||||||
"nameResourceKey": "appBundleIdColumn",
|
"nameResourceKey": "appBundleIdColumn",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"emptyValueResourceKey": "bundleIdExample",
|
"emptyValueResourceKey": "bundleIdExample",
|
||||||
@@ -73,7 +73,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 4,
|
"category": 5,
|
||||||
"nameResourceKey": "appNameName",
|
"nameResourceKey": "appNameName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -91,7 +91,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 4,
|
"category": 5,
|
||||||
"nameResourceKey": "appPublisherName",
|
"nameResourceKey": "appPublisherName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -108,7 +108,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 21,
|
"dataType": 21,
|
||||||
"category": 4,
|
"category": 5,
|
||||||
"nameResourceKey": "appListTableName",
|
"nameResourceKey": "appListTableName",
|
||||||
"descriptionResourceKey": "iosAppUrlHelp",
|
"descriptionResourceKey": "iosAppUrlHelp",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|||||||
@@ -3,13 +3,13 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": true,
|
"showAsSectionHeader": true,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 4,
|
"category": 5,
|
||||||
"nameResourceKey": "allEnrollmentTypesHeaderNameMac",
|
"nameResourceKey": "allEnrollmentTypesHeaderNameMac",
|
||||||
"descriptionResourceKey": "allEnrollmentTypesHeaderDescriptionMac",
|
"descriptionResourceKey": "allEnrollmentTypesHeaderDescriptionMac",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 4,
|
"category": 5,
|
||||||
"nameResourceKey": "restrictedAppsListOptionsName",
|
"nameResourceKey": "restrictedAppsListOptionsName",
|
||||||
"descriptionResourceKey": "restrictedAppsListOptionsDescription",
|
"descriptionResourceKey": "restrictedAppsListOptionsDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -18,7 +18,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 4,
|
"category": 5,
|
||||||
"nameResourceKey": "appBundleIdColumn",
|
"nameResourceKey": "appBundleIdColumn",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"emptyValueResourceKey": "bundleIdExample",
|
"emptyValueResourceKey": "bundleIdExample",
|
||||||
@@ -37,7 +37,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 4,
|
"category": 5,
|
||||||
"nameResourceKey": "appNameName",
|
"nameResourceKey": "appNameName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -55,7 +55,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 4,
|
"category": 5,
|
||||||
"nameResourceKey": "appPublisherName",
|
"nameResourceKey": "appPublisherName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -72,7 +72,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 21,
|
"dataType": 21,
|
||||||
"category": 4,
|
"category": 5,
|
||||||
"nameResourceKey": "appListTableName",
|
"nameResourceKey": "appListTableName",
|
||||||
"descriptionResourceKey": "",
|
"descriptionResourceKey": "",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"applicationrestrictions_windowsphonegeneral": {
|
"applicationrestrictions_windowsphonegeneral": {
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 4,
|
"category": 5,
|
||||||
"nameResourceKey": "blockUsageofUserInstalledStoreApps",
|
"nameResourceKey": "blockUsageofUserInstalledStoreApps",
|
||||||
"descriptionResourceKey": "windowsAppNonComplianceTypeDescription",
|
"descriptionResourceKey": "windowsAppNonComplianceTypeDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -10,7 +10,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 4,
|
"category": 5,
|
||||||
"nameResourceKey": "appUrlName",
|
"nameResourceKey": "appUrlName",
|
||||||
"descriptionResourceKey": "windowsAppUrlHelp",
|
"descriptionResourceKey": "windowsAppUrlHelp",
|
||||||
"emptyValueResourceKey": "windowsAppUrlExample",
|
"emptyValueResourceKey": "windowsAppUrlExample",
|
||||||
@@ -29,7 +29,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 4,
|
"category": 5,
|
||||||
"nameResourceKey": "appNameName",
|
"nameResourceKey": "appNameName",
|
||||||
"descriptionResourceKey": "forYourOwnReference",
|
"descriptionResourceKey": "forYourOwnReference",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -47,7 +47,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 4,
|
"category": 5,
|
||||||
"nameResourceKey": "appPublisherName",
|
"nameResourceKey": "appPublisherName",
|
||||||
"descriptionResourceKey": "forYourOwnReference",
|
"descriptionResourceKey": "forYourOwnReference",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -64,7 +64,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 21,
|
"dataType": 21,
|
||||||
"category": 4,
|
"category": 5,
|
||||||
"nameResourceKey": "appListTableName",
|
"nameResourceKey": "appListTableName",
|
||||||
"descriptionResourceKey": "windowsAppUrlHelp",
|
"descriptionResourceKey": "windowsAppUrlHelp",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
"applications_windows10general": [
|
"applications_windows10general": [
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 6,
|
"category": 7,
|
||||||
"nameResourceKey": "blockAppStoreWindowsMobileOnlyName",
|
"nameResourceKey": "blockAppStoreWindowsMobileOnlyName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -19,7 +19,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 6,
|
"category": 7,
|
||||||
"nameResourceKey": "blockAppStoreAutoUpdate",
|
"nameResourceKey": "blockAppStoreAutoUpdate",
|
||||||
"descriptionResourceKey": "blockAppStoreAutoUpdateDescription",
|
"descriptionResourceKey": "blockAppStoreAutoUpdateDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -36,7 +36,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 6,
|
"category": 7,
|
||||||
"nameResourceKey": "allowAllTrustedAppsSideloading",
|
"nameResourceKey": "allowAllTrustedAppsSideloading",
|
||||||
"descriptionResourceKey": "allowAllTrustedAppsSideloadingDescription",
|
"descriptionResourceKey": "allowAllTrustedAppsSideloadingDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -68,7 +68,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 6,
|
"category": 7,
|
||||||
"nameResourceKey": "developerUnlock",
|
"nameResourceKey": "developerUnlock",
|
||||||
"descriptionResourceKey": "developerUnlockDescription",
|
"descriptionResourceKey": "developerUnlockDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -100,7 +100,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 6,
|
"category": 7,
|
||||||
"nameResourceKey": "allowSharedUserAppData",
|
"nameResourceKey": "allowSharedUserAppData",
|
||||||
"descriptionResourceKey": "allowSharedUserAppDataDescription",
|
"descriptionResourceKey": "allowSharedUserAppDataDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -117,7 +117,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 6,
|
"category": 7,
|
||||||
"nameResourceKey": "enableUsePrivateStoreOnly",
|
"nameResourceKey": "enableUsePrivateStoreOnly",
|
||||||
"descriptionResourceKey": "enableUsePrivateStoreOnlyDescription",
|
"descriptionResourceKey": "enableUsePrivateStoreOnlyDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -134,7 +134,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 6,
|
"category": 7,
|
||||||
"nameResourceKey": "blockStoreOriginatedApps",
|
"nameResourceKey": "blockStoreOriginatedApps",
|
||||||
"descriptionResourceKey": "blockStoreOriginatedAppsDescription",
|
"descriptionResourceKey": "blockStoreOriginatedAppsDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -151,7 +151,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 6,
|
"category": 7,
|
||||||
"nameResourceKey": "restrictAppDataToSystemVolume",
|
"nameResourceKey": "restrictAppDataToSystemVolume",
|
||||||
"descriptionResourceKey": "restrictAppDataToSystemVolumeDescription",
|
"descriptionResourceKey": "restrictAppDataToSystemVolumeDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -168,7 +168,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 6,
|
"category": 7,
|
||||||
"nameResourceKey": "restrictAppInstallToSystemVolume",
|
"nameResourceKey": "restrictAppInstallToSystemVolume",
|
||||||
"descriptionResourceKey": "restrictAppInstallToSystemVolumeDescription",
|
"descriptionResourceKey": "restrictAppInstallToSystemVolumeDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -185,7 +185,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 6,
|
"category": 7,
|
||||||
"nameResourceKey": "blockGameDvr",
|
"nameResourceKey": "blockGameDvr",
|
||||||
"descriptionResourceKey": "blockGameDvrDescription",
|
"descriptionResourceKey": "blockGameDvrDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -202,7 +202,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 6,
|
"category": 7,
|
||||||
"nameResourceKey": "enableAppInstallControlName",
|
"nameResourceKey": "enableAppInstallControlName",
|
||||||
"descriptionResourceKey": "enableAppInstallControlDescription",
|
"descriptionResourceKey": "enableAppInstallControlDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -219,7 +219,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 6,
|
"category": 7,
|
||||||
"nameResourceKey": "smartScreenAppInstallControlName",
|
"nameResourceKey": "smartScreenAppInstallControlName",
|
||||||
"descriptionResourceKey": "smartScreenAppInstallControlDescription",
|
"descriptionResourceKey": "smartScreenAppInstallControlDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -260,7 +260,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 19,
|
"dataType": 19,
|
||||||
"category": 6,
|
"category": 7,
|
||||||
"nameResourceKey": "appManagementMSIAllowUserControlOverInstallName",
|
"nameResourceKey": "appManagementMSIAllowUserControlOverInstallName",
|
||||||
"descriptionResourceKey": "appManagementMSIAllowUserControlOverInstallDesc",
|
"descriptionResourceKey": "appManagementMSIAllowUserControlOverInstallDesc",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -287,7 +287,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 19,
|
"dataType": 19,
|
||||||
"category": 6,
|
"category": 7,
|
||||||
"nameResourceKey": "appManagementMSIAlwaysInstallWithElevatedPrivilegesName",
|
"nameResourceKey": "appManagementMSIAlwaysInstallWithElevatedPrivilegesName",
|
||||||
"descriptionResourceKey": "appManagementMSIAlwaysInstallWithElevatedPrivilegesDesc",
|
"descriptionResourceKey": "appManagementMSIAlwaysInstallWithElevatedPrivilegesDesc",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -314,7 +314,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 12,
|
"dataType": 12,
|
||||||
"category": 6,
|
"category": 7,
|
||||||
"nameResourceKey": "appManagementPackageFamilyNamesToLaunchAfterLogOnName",
|
"nameResourceKey": "appManagementPackageFamilyNamesToLaunchAfterLogOnName",
|
||||||
"descriptionResourceKey": "appManagementPackageFamilyNamesToLaunchAfterLogOnDescription",
|
"descriptionResourceKey": "appManagementPackageFamilyNamesToLaunchAfterLogOnDescription",
|
||||||
"emptyValueResourceKey": "appManagementPackageFamilyNamesToLaunchAfterLogOnPlaceholder",
|
"emptyValueResourceKey": "appManagementPackageFamilyNamesToLaunchAfterLogOnPlaceholder",
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"applications_windowsphonegeneral": {
|
"applications_windowsphonegeneral": {
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 6,
|
"category": 7,
|
||||||
"nameResourceKey": "blockApplicationStoreName",
|
"nameResourceKey": "blockApplicationStoreName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|||||||
@@ -4,18 +4,18 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": true,
|
"showAsSectionHeader": true,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 7,
|
"category": 8,
|
||||||
"nameResourceKey": "allEnrollmentTypesHeaderName",
|
"nameResourceKey": "allEnrollmentTypesHeaderName",
|
||||||
"descriptionResourceKey": "allEnrollmentTypesHeaderDescription",
|
"descriptionResourceKey": "allEnrollmentTypesHeaderDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 7,
|
"category": 8,
|
||||||
"nameResourceKey": "blockManagedDocumentsInUnmanagedAppsName",
|
"nameResourceKey": "blockManagedDocumentsInUnmanagedAppsName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 7,
|
"category": 8,
|
||||||
"nameResourceKey": "allowUnmanagedToReadManagedContactsName",
|
"nameResourceKey": "allowUnmanagedToReadManagedContactsName",
|
||||||
"descriptionResourceKey": "allowUnmanagedToReadManagedContactsDescription",
|
"descriptionResourceKey": "allowUnmanagedToReadManagedContactsDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -42,7 +42,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 7,
|
"category": 8,
|
||||||
"nameResourceKey": "forceAirDropToBeUnmanagedTargetName",
|
"nameResourceKey": "forceAirDropToBeUnmanagedTargetName",
|
||||||
"descriptionResourceKey": "forceAirDropToBeUnmanagedTargetDescription",
|
"descriptionResourceKey": "forceAirDropToBeUnmanagedTargetDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -59,7 +59,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 7,
|
"category": 8,
|
||||||
"nameResourceKey": "blockUnmanagedDocumentsInManagedAppsName",
|
"nameResourceKey": "blockUnmanagedDocumentsInManagedAppsName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -75,7 +75,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 7,
|
"category": 8,
|
||||||
"nameResourceKey": "managedPasteboardRequiredName",
|
"nameResourceKey": "managedPasteboardRequiredName",
|
||||||
"descriptionResourceKey": "managedPasteboardRequiredDescription",
|
"descriptionResourceKey": "managedPasteboardRequiredDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -102,13 +102,13 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": true,
|
"showAsSectionHeader": true,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 7,
|
"category": 8,
|
||||||
"nameResourceKey": "deviceEnrollmentAndAutomatedDeviceEnrollmentHeaderName",
|
"nameResourceKey": "deviceEnrollmentAndAutomatedDeviceEnrollmentHeaderName",
|
||||||
"descriptionResourceKey": "deviceEnrollmentAndAutomatedDeviceEnrollmentHeaderDescription",
|
"descriptionResourceKey": "deviceEnrollmentAndAutomatedDeviceEnrollmentHeaderDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 7,
|
"category": 8,
|
||||||
"nameResourceKey": "requireAppStorePasswordName",
|
"nameResourceKey": "requireAppStorePasswordName",
|
||||||
"descriptionResourceKey": "requireAppStorePasswordDescription",
|
"descriptionResourceKey": "requireAppStorePasswordDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -125,7 +125,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 7,
|
"category": 8,
|
||||||
"nameResourceKey": "blockInAppPurchasesName",
|
"nameResourceKey": "blockInAppPurchasesName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -141,7 +141,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 7,
|
"category": 8,
|
||||||
"nameResourceKey": "blockIBooksStoreEroticaName",
|
"nameResourceKey": "blockIBooksStoreEroticaName",
|
||||||
"descriptionResourceKey": "blockIBooksStoreEroticaDescription",
|
"descriptionResourceKey": "blockIBooksStoreEroticaDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -158,7 +158,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 7,
|
"category": 8,
|
||||||
"nameResourceKey": "allowManagedToWriteUnmanagedContactsName",
|
"nameResourceKey": "allowManagedToWriteUnmanagedContactsName",
|
||||||
"descriptionResourceKey": "allowManagedToWriteUnmanagedContactsDescription",
|
"descriptionResourceKey": "allowManagedToWriteUnmanagedContactsDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -175,7 +175,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 7,
|
"category": 8,
|
||||||
"nameResourceKey": "mediaContentRatingCountryRegionName",
|
"nameResourceKey": "mediaContentRatingCountryRegionName",
|
||||||
"descriptionResourceKey": "mediaContentRatingCountryRegionDescription",
|
"descriptionResourceKey": "mediaContentRatingCountryRegionDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -195,7 +195,7 @@
|
|||||||
"complexOptions": [
|
"complexOptions": [
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 7,
|
"category": 8,
|
||||||
"nameResourceKey": "mediaContentRatingMoviesName",
|
"nameResourceKey": "mediaContentRatingMoviesName",
|
||||||
"descriptionResourceKey": "mediaContentRatingMoviesDescription",
|
"descriptionResourceKey": "mediaContentRatingMoviesDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -246,7 +246,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 7,
|
"category": 8,
|
||||||
"nameResourceKey": "mediaContentRatingTVName",
|
"nameResourceKey": "mediaContentRatingTVName",
|
||||||
"descriptionResourceKey": "mediaContentRatingTVDescription",
|
"descriptionResourceKey": "mediaContentRatingTVDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -307,7 +307,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 6,
|
"dataType": 6,
|
||||||
"category": 7,
|
"category": 8,
|
||||||
"nameResourceKey": "mediaContentRatingAustraliaName",
|
"nameResourceKey": "mediaContentRatingAustraliaName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -323,7 +323,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 7,
|
"category": 8,
|
||||||
"nameResourceKey": "mediaContentRatingAppsName",
|
"nameResourceKey": "mediaContentRatingAppsName",
|
||||||
"descriptionResourceKey": "mediaContentRatingAppsDescription",
|
"descriptionResourceKey": "mediaContentRatingAppsDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -379,7 +379,7 @@
|
|||||||
"complexOptions": [
|
"complexOptions": [
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 7,
|
"category": 8,
|
||||||
"nameResourceKey": "mediaContentRatingMoviesName",
|
"nameResourceKey": "mediaContentRatingMoviesName",
|
||||||
"descriptionResourceKey": "mediaContentRatingMoviesDescription",
|
"descriptionResourceKey": "mediaContentRatingMoviesDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -430,7 +430,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 7,
|
"category": 8,
|
||||||
"nameResourceKey": "mediaContentRatingTVName",
|
"nameResourceKey": "mediaContentRatingTVName",
|
||||||
"descriptionResourceKey": "mediaContentRatingTVDescription",
|
"descriptionResourceKey": "mediaContentRatingTVDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -486,7 +486,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 6,
|
"dataType": 6,
|
||||||
"category": 7,
|
"category": 8,
|
||||||
"nameResourceKey": "mediaContentRatingCanadaName",
|
"nameResourceKey": "mediaContentRatingCanadaName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -502,7 +502,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 7,
|
"category": 8,
|
||||||
"nameResourceKey": "mediaContentRatingAppsName",
|
"nameResourceKey": "mediaContentRatingAppsName",
|
||||||
"descriptionResourceKey": "mediaContentRatingAppsDescription",
|
"descriptionResourceKey": "mediaContentRatingAppsDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -558,7 +558,7 @@
|
|||||||
"complexOptions": [
|
"complexOptions": [
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 7,
|
"category": 8,
|
||||||
"nameResourceKey": "mediaContentRatingMoviesName",
|
"nameResourceKey": "mediaContentRatingMoviesName",
|
||||||
"descriptionResourceKey": "mediaContentRatingMoviesDescription",
|
"descriptionResourceKey": "mediaContentRatingMoviesDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -604,7 +604,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 7,
|
"category": 8,
|
||||||
"nameResourceKey": "mediaContentRatingTVName",
|
"nameResourceKey": "mediaContentRatingTVName",
|
||||||
"descriptionResourceKey": "mediaContentRatingTVDescription",
|
"descriptionResourceKey": "mediaContentRatingTVDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -650,7 +650,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 6,
|
"dataType": 6,
|
||||||
"category": 7,
|
"category": 8,
|
||||||
"nameResourceKey": "mediaContentRatingFranceName",
|
"nameResourceKey": "mediaContentRatingFranceName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -666,7 +666,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 7,
|
"category": 8,
|
||||||
"nameResourceKey": "mediaContentRatingAppsName",
|
"nameResourceKey": "mediaContentRatingAppsName",
|
||||||
"descriptionResourceKey": "mediaContentRatingAppsDescription",
|
"descriptionResourceKey": "mediaContentRatingAppsDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -722,7 +722,7 @@
|
|||||||
"complexOptions": [
|
"complexOptions": [
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 7,
|
"category": 8,
|
||||||
"nameResourceKey": "mediaContentRatingMoviesName",
|
"nameResourceKey": "mediaContentRatingMoviesName",
|
||||||
"descriptionResourceKey": "mediaContentRatingMoviesDescription",
|
"descriptionResourceKey": "mediaContentRatingMoviesDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -773,7 +773,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 7,
|
"category": 8,
|
||||||
"nameResourceKey": "mediaContentRatingTVName",
|
"nameResourceKey": "mediaContentRatingTVName",
|
||||||
"descriptionResourceKey": "mediaContentRatingTVDescription",
|
"descriptionResourceKey": "mediaContentRatingTVDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -824,7 +824,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 6,
|
"dataType": 6,
|
||||||
"category": 7,
|
"category": 8,
|
||||||
"nameResourceKey": "mediaContentRatingGermanyName",
|
"nameResourceKey": "mediaContentRatingGermanyName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -840,7 +840,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 7,
|
"category": 8,
|
||||||
"nameResourceKey": "mediaContentRatingAppsName",
|
"nameResourceKey": "mediaContentRatingAppsName",
|
||||||
"descriptionResourceKey": "mediaContentRatingAppsDescription",
|
"descriptionResourceKey": "mediaContentRatingAppsDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -896,7 +896,7 @@
|
|||||||
"complexOptions": [
|
"complexOptions": [
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 7,
|
"category": 8,
|
||||||
"nameResourceKey": "mediaContentRatingMoviesName",
|
"nameResourceKey": "mediaContentRatingMoviesName",
|
||||||
"descriptionResourceKey": "mediaContentRatingMoviesDescription",
|
"descriptionResourceKey": "mediaContentRatingMoviesDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -952,7 +952,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 7,
|
"category": 8,
|
||||||
"nameResourceKey": "mediaContentRatingTVName",
|
"nameResourceKey": "mediaContentRatingTVName",
|
||||||
"descriptionResourceKey": "mediaContentRatingTVDescription",
|
"descriptionResourceKey": "mediaContentRatingTVDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1003,7 +1003,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 6,
|
"dataType": 6,
|
||||||
"category": 7,
|
"category": 8,
|
||||||
"nameResourceKey": "mediaContentRatingIrelandName",
|
"nameResourceKey": "mediaContentRatingIrelandName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1019,7 +1019,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 7,
|
"category": 8,
|
||||||
"nameResourceKey": "mediaContentRatingAppsName",
|
"nameResourceKey": "mediaContentRatingAppsName",
|
||||||
"descriptionResourceKey": "mediaContentRatingAppsDescription",
|
"descriptionResourceKey": "mediaContentRatingAppsDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1075,7 +1075,7 @@
|
|||||||
"complexOptions": [
|
"complexOptions": [
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 7,
|
"category": 8,
|
||||||
"nameResourceKey": "mediaContentRatingMoviesName",
|
"nameResourceKey": "mediaContentRatingMoviesName",
|
||||||
"descriptionResourceKey": "mediaContentRatingMoviesDescription",
|
"descriptionResourceKey": "mediaContentRatingMoviesDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1121,7 +1121,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 7,
|
"category": 8,
|
||||||
"nameResourceKey": "mediaContentRatingTVName",
|
"nameResourceKey": "mediaContentRatingTVName",
|
||||||
"descriptionResourceKey": "mediaContentRatingTVDescription",
|
"descriptionResourceKey": "mediaContentRatingTVDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1152,7 +1152,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 6,
|
"dataType": 6,
|
||||||
"category": 7,
|
"category": 8,
|
||||||
"nameResourceKey": "mediaContentRatingJapanName",
|
"nameResourceKey": "mediaContentRatingJapanName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1168,7 +1168,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 7,
|
"category": 8,
|
||||||
"nameResourceKey": "mediaContentRatingAppsName",
|
"nameResourceKey": "mediaContentRatingAppsName",
|
||||||
"descriptionResourceKey": "mediaContentRatingAppsDescription",
|
"descriptionResourceKey": "mediaContentRatingAppsDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1224,7 +1224,7 @@
|
|||||||
"complexOptions": [
|
"complexOptions": [
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 7,
|
"category": 8,
|
||||||
"nameResourceKey": "mediaContentRatingMoviesName",
|
"nameResourceKey": "mediaContentRatingMoviesName",
|
||||||
"descriptionResourceKey": "mediaContentRatingMoviesDescription",
|
"descriptionResourceKey": "mediaContentRatingMoviesDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1295,7 +1295,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 7,
|
"category": 8,
|
||||||
"nameResourceKey": "mediaContentRatingTVName",
|
"nameResourceKey": "mediaContentRatingTVName",
|
||||||
"descriptionResourceKey": "mediaContentRatingTVDescription",
|
"descriptionResourceKey": "mediaContentRatingTVDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1336,7 +1336,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 6,
|
"dataType": 6,
|
||||||
"category": 7,
|
"category": 8,
|
||||||
"nameResourceKey": "mediaContentRatingNewZealandName",
|
"nameResourceKey": "mediaContentRatingNewZealandName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1352,7 +1352,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 7,
|
"category": 8,
|
||||||
"nameResourceKey": "mediaContentRatingAppsName",
|
"nameResourceKey": "mediaContentRatingAppsName",
|
||||||
"descriptionResourceKey": "mediaContentRatingAppsDescription",
|
"descriptionResourceKey": "mediaContentRatingAppsDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1408,7 +1408,7 @@
|
|||||||
"complexOptions": [
|
"complexOptions": [
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 7,
|
"category": 8,
|
||||||
"nameResourceKey": "mediaContentRatingMoviesName",
|
"nameResourceKey": "mediaContentRatingMoviesName",
|
||||||
"descriptionResourceKey": "mediaContentRatingMoviesDescription",
|
"descriptionResourceKey": "mediaContentRatingMoviesDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1469,7 +1469,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 7,
|
"category": 8,
|
||||||
"nameResourceKey": "mediaContentRatingTVName",
|
"nameResourceKey": "mediaContentRatingTVName",
|
||||||
"descriptionResourceKey": "mediaContentRatingTVDescription",
|
"descriptionResourceKey": "mediaContentRatingTVDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1500,7 +1500,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 6,
|
"dataType": 6,
|
||||||
"category": 7,
|
"category": 8,
|
||||||
"nameResourceKey": "mediaContentRatingUnitedKingdomName",
|
"nameResourceKey": "mediaContentRatingUnitedKingdomName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1516,7 +1516,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 7,
|
"category": 8,
|
||||||
"nameResourceKey": "mediaContentRatingAppsName",
|
"nameResourceKey": "mediaContentRatingAppsName",
|
||||||
"descriptionResourceKey": "mediaContentRatingAppsDescription",
|
"descriptionResourceKey": "mediaContentRatingAppsDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1572,7 +1572,7 @@
|
|||||||
"complexOptions": [
|
"complexOptions": [
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 7,
|
"category": 8,
|
||||||
"nameResourceKey": "mediaContentRatingMoviesName",
|
"nameResourceKey": "mediaContentRatingMoviesName",
|
||||||
"descriptionResourceKey": "mediaContentRatingMoviesDescription",
|
"descriptionResourceKey": "mediaContentRatingMoviesDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1623,7 +1623,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 7,
|
"category": 8,
|
||||||
"nameResourceKey": "mediaContentRatingTVName",
|
"nameResourceKey": "mediaContentRatingTVName",
|
||||||
"descriptionResourceKey": "mediaContentRatingTVDescription",
|
"descriptionResourceKey": "mediaContentRatingTVDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1679,7 +1679,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 6,
|
"dataType": 6,
|
||||||
"category": 7,
|
"category": 8,
|
||||||
"nameResourceKey": "mediaContentRatingUnitedStatesName",
|
"nameResourceKey": "mediaContentRatingUnitedStatesName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1695,7 +1695,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 7,
|
"category": 8,
|
||||||
"nameResourceKey": "mediaContentRatingAppsName",
|
"nameResourceKey": "mediaContentRatingAppsName",
|
||||||
"descriptionResourceKey": "mediaContentRatingAppsDescription",
|
"descriptionResourceKey": "mediaContentRatingAppsDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1763,19 +1763,19 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": true,
|
"showAsSectionHeader": true,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 7,
|
"category": 8,
|
||||||
"nameResourceKey": "automatedDeviceEnrollmentHeaderName",
|
"nameResourceKey": "automatedDeviceEnrollmentHeaderName",
|
||||||
"descriptionResourceKey": "automatedDeviceEnrollmentHeaderDescription",
|
"descriptionResourceKey": "automatedDeviceEnrollmentHeaderDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 7,
|
"category": 8,
|
||||||
"nameResourceKey": "blockAppStoreName",
|
"nameResourceKey": "blockAppStoreName",
|
||||||
"descriptionResourceKey": "blockAppStoreDescription",
|
"descriptionResourceKey": "blockAppStoreDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 7,
|
"category": 8,
|
||||||
"nameResourceKey": "blockAppStoreUIAppInstallationName",
|
"nameResourceKey": "blockAppStoreUIAppInstallationName",
|
||||||
"descriptionResourceKey": "blockAppStoreUIAppInstallationDescription",
|
"descriptionResourceKey": "blockAppStoreUIAppInstallationDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1792,7 +1792,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 7,
|
"category": 8,
|
||||||
"nameResourceKey": "blockAppStoreAutomaticDownloadsName",
|
"nameResourceKey": "blockAppStoreAutomaticDownloadsName",
|
||||||
"descriptionResourceKey": "blockAppStoreAutomaticDownloadsDescription",
|
"descriptionResourceKey": "blockAppStoreAutomaticDownloadsDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1819,7 +1819,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 7,
|
"category": 8,
|
||||||
"nameResourceKey": "blockAdultContentInItunesName",
|
"nameResourceKey": "blockAdultContentInItunesName",
|
||||||
"descriptionResourceKey": "blockAdultContentInItunesDescription",
|
"descriptionResourceKey": "blockAdultContentInItunesDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1836,7 +1836,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 7,
|
"category": 8,
|
||||||
"nameResourceKey": "blockGameCenterFriendsName",
|
"nameResourceKey": "blockGameCenterFriendsName",
|
||||||
"descriptionResourceKey": "blockGameCenterFriendsDescription",
|
"descriptionResourceKey": "blockGameCenterFriendsDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1853,7 +1853,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 7,
|
"category": 8,
|
||||||
"nameResourceKey": "blockGameCenterName",
|
"nameResourceKey": "blockGameCenterName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -1869,7 +1869,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 7,
|
"category": 8,
|
||||||
"nameResourceKey": "blockMultiplayerGamingName",
|
"nameResourceKey": "blockMultiplayerGamingName",
|
||||||
"descriptionResourceKey": "blockMultiplayerGamingDescription",
|
"descriptionResourceKey": "blockMultiplayerGamingDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1886,7 +1886,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 7,
|
"category": 8,
|
||||||
"nameResourceKey": "blockFilesNetworkDriveAccessName",
|
"nameResourceKey": "blockFilesNetworkDriveAccessName",
|
||||||
"descriptionResourceKey": "blockFilesNetworkDriveAccessDescription",
|
"descriptionResourceKey": "blockFilesNetworkDriveAccessDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|||||||
@@ -3,13 +3,13 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": true,
|
"showAsSectionHeader": true,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 7,
|
"category": 8,
|
||||||
"nameResourceKey": "automatedDeviceEnrollmentHeaderNameMac",
|
"nameResourceKey": "automatedDeviceEnrollmentHeaderNameMac",
|
||||||
"descriptionResourceKey": "automatedDeviceEnrollmentHeaderDescriptionMac",
|
"descriptionResourceKey": "automatedDeviceEnrollmentHeaderDescriptionMac",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 7,
|
"category": 8,
|
||||||
"nameResourceKey": "addingGameCenterFriendsBlockedMacName",
|
"nameResourceKey": "addingGameCenterFriendsBlockedMacName",
|
||||||
"descriptionResourceKey": "addingGameCenterFriendsBlockedMacDescription",
|
"descriptionResourceKey": "addingGameCenterFriendsBlockedMacDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 7,
|
"category": 8,
|
||||||
"nameResourceKey": "gameCenterBlockedMacName",
|
"nameResourceKey": "gameCenterBlockedMacName",
|
||||||
"descriptionResourceKey": "gameCenterBlockedMacDescription",
|
"descriptionResourceKey": "gameCenterBlockedMacDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -43,7 +43,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 7,
|
"category": 8,
|
||||||
"nameResourceKey": "multiplayerGamingBlockedMacName",
|
"nameResourceKey": "multiplayerGamingBlockedMacName",
|
||||||
"descriptionResourceKey": "multiplayerGamingBlockedMacDescription",
|
"descriptionResourceKey": "multiplayerGamingBlockedMacDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"applicationsandgoogle_androidgeneral": {
|
"applicationsandgoogle_androidgeneral": {
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 8,
|
"category": 9,
|
||||||
"nameResourceKey": "blockGooglePlayStoreName",
|
"nameResourceKey": "blockGooglePlayStoreName",
|
||||||
"descriptionResourceKey": "blockGooglePlayStoreDescription",
|
"descriptionResourceKey": "blockGooglePlayStoreDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 5,
|
"category": 6,
|
||||||
"nameResourceKey": "IosGeneralApplicationVisibilityHeader",
|
"nameResourceKey": "IosGeneralApplicationVisibilityHeader",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -20,13 +20,13 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": true,
|
"showAsSectionHeader": true,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 5,
|
"category": 6,
|
||||||
"nameResourceKey": "automatedDeviceEnrollmentHeaderName",
|
"nameResourceKey": "automatedDeviceEnrollmentHeaderName",
|
||||||
"descriptionResourceKey": "automatedDeviceEnrollmentHeaderDescription",
|
"descriptionResourceKey": "automatedDeviceEnrollmentHeaderDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 5,
|
"category": 6,
|
||||||
"nameResourceKey": "visibleAppsListOptionsName",
|
"nameResourceKey": "visibleAppsListOptionsName",
|
||||||
"descriptionResourceKey": "visibleAppsListOptionsDescription",
|
"descriptionResourceKey": "visibleAppsListOptionsDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -35,7 +35,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 5,
|
"category": 6,
|
||||||
"nameResourceKey": "appUrlName",
|
"nameResourceKey": "appUrlName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"emptyValueResourceKey": "kioskModeAppStoreExample",
|
"emptyValueResourceKey": "kioskModeAppStoreExample",
|
||||||
@@ -54,7 +54,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 5,
|
"category": 6,
|
||||||
"nameResourceKey": "appBundleIdColumn",
|
"nameResourceKey": "appBundleIdColumn",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"emptyValueResourceKey": "bundleIdExample",
|
"emptyValueResourceKey": "bundleIdExample",
|
||||||
@@ -73,7 +73,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 5,
|
"category": 6,
|
||||||
"nameResourceKey": "appNameName",
|
"nameResourceKey": "appNameName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -91,7 +91,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 5,
|
"category": 6,
|
||||||
"nameResourceKey": "appPublisherName",
|
"nameResourceKey": "appPublisherName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -108,7 +108,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 21,
|
"dataType": 21,
|
||||||
"category": 5,
|
"category": 6,
|
||||||
"nameResourceKey": "appListTableName",
|
"nameResourceKey": "appListTableName",
|
||||||
"descriptionResourceKey": "iosAppUrlHelp",
|
"descriptionResourceKey": "iosAppUrlHelp",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 9,
|
"category": 10,
|
||||||
"nameResourceKey": "androidAppManagementHeaderName",
|
"nameResourceKey": "androidAppManagementHeaderName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -18,7 +18,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 9,
|
"dataType": 9,
|
||||||
"category": 9,
|
"category": 10,
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"complexOptions": [
|
"complexOptions": [
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 9,
|
"category": 10,
|
||||||
"nameResourceKey": "androidAppsAllowedToBeInstalledtHeaderName",
|
"nameResourceKey": "androidAppsAllowedToBeInstalledtHeaderName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -43,7 +43,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 9,
|
"category": 10,
|
||||||
"nameResourceKey": "singleAppModeAppNameName",
|
"nameResourceKey": "singleAppModeAppNameName",
|
||||||
"descriptionResourceKey": "Empty",
|
"descriptionResourceKey": "Empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -61,7 +61,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 9,
|
"category": 10,
|
||||||
"nameResourceKey": "packageName",
|
"nameResourceKey": "packageName",
|
||||||
"descriptionResourceKey": "Empty",
|
"descriptionResourceKey": "Empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -79,7 +79,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 9,
|
"category": 10,
|
||||||
"nameResourceKey": "appUrlName",
|
"nameResourceKey": "appUrlName",
|
||||||
"descriptionResourceKey": "Empty",
|
"descriptionResourceKey": "Empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -97,7 +97,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 9,
|
"category": 10,
|
||||||
"nameResourceKey": "appPublisherName",
|
"nameResourceKey": "appPublisherName",
|
||||||
"descriptionResourceKey": "Empty",
|
"descriptionResourceKey": "Empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -114,7 +114,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 21,
|
"dataType": 21,
|
||||||
"category": 9,
|
"category": 10,
|
||||||
"nameResourceKey": "Empty",
|
"nameResourceKey": "Empty",
|
||||||
"descriptionResourceKey": "Empty",
|
"descriptionResourceKey": "Empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -130,7 +130,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 5,
|
"dataType": 5,
|
||||||
"category": 9,
|
"category": 10,
|
||||||
"nameResourceKey": "androidAppsAllowedToBeInstalled",
|
"nameResourceKey": "androidAppsAllowedToBeInstalled",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -148,7 +148,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 9,
|
"category": 10,
|
||||||
"nameResourceKey": "androidAppsBlockedFromLaunchHeaderName",
|
"nameResourceKey": "androidAppsBlockedFromLaunchHeaderName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -165,7 +165,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 9,
|
"category": 10,
|
||||||
"nameResourceKey": "singleAppModeAppNameName",
|
"nameResourceKey": "singleAppModeAppNameName",
|
||||||
"descriptionResourceKey": "Empty",
|
"descriptionResourceKey": "Empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -183,7 +183,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 9,
|
"category": 10,
|
||||||
"nameResourceKey": "packageName",
|
"nameResourceKey": "packageName",
|
||||||
"descriptionResourceKey": "Empty",
|
"descriptionResourceKey": "Empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -201,7 +201,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 9,
|
"category": 10,
|
||||||
"nameResourceKey": "appUrlName",
|
"nameResourceKey": "appUrlName",
|
||||||
"descriptionResourceKey": "Empty",
|
"descriptionResourceKey": "Empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -219,7 +219,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 9,
|
"category": 10,
|
||||||
"nameResourceKey": "appPublisherName",
|
"nameResourceKey": "appPublisherName",
|
||||||
"descriptionResourceKey": "Empty",
|
"descriptionResourceKey": "Empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -236,7 +236,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 21,
|
"dataType": 21,
|
||||||
"category": 9,
|
"category": 10,
|
||||||
"nameResourceKey": "Empty",
|
"nameResourceKey": "Empty",
|
||||||
"descriptionResourceKey": "Empty",
|
"descriptionResourceKey": "Empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -252,7 +252,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 5,
|
"dataType": 5,
|
||||||
"category": 9,
|
"category": 10,
|
||||||
"nameResourceKey": "androidAppsBlockedFromLaunch",
|
"nameResourceKey": "androidAppsBlockedFromLaunch",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -270,7 +270,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 9,
|
"category": 10,
|
||||||
"nameResourceKey": "androidHiddenAppsHeaderName",
|
"nameResourceKey": "androidHiddenAppsHeaderName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -287,7 +287,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 9,
|
"category": 10,
|
||||||
"nameResourceKey": "singleAppModeAppNameName",
|
"nameResourceKey": "singleAppModeAppNameName",
|
||||||
"descriptionResourceKey": "Empty",
|
"descriptionResourceKey": "Empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -305,7 +305,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 9,
|
"category": 10,
|
||||||
"nameResourceKey": "packageName",
|
"nameResourceKey": "packageName",
|
||||||
"descriptionResourceKey": "Empty",
|
"descriptionResourceKey": "Empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -323,7 +323,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 9,
|
"category": 10,
|
||||||
"nameResourceKey": "appUrlName",
|
"nameResourceKey": "appUrlName",
|
||||||
"descriptionResourceKey": "Empty",
|
"descriptionResourceKey": "Empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -341,7 +341,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 9,
|
"category": 10,
|
||||||
"nameResourceKey": "appPublisherName",
|
"nameResourceKey": "appPublisherName",
|
||||||
"descriptionResourceKey": "Empty",
|
"descriptionResourceKey": "Empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -358,7 +358,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 21,
|
"dataType": 21,
|
||||||
"category": 9,
|
"category": 10,
|
||||||
"nameResourceKey": "Empty",
|
"nameResourceKey": "Empty",
|
||||||
"descriptionResourceKey": "Empty",
|
"descriptionResourceKey": "Empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -374,7 +374,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 5,
|
"dataType": 5,
|
||||||
"category": 9,
|
"category": 10,
|
||||||
"nameResourceKey": "androidHiddenApps",
|
"nameResourceKey": "androidHiddenApps",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
"appsandexperience_windows10teamgeneral": [
|
"appsandexperience_windows10teamgeneral": [
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 10,
|
"category": 11,
|
||||||
"nameResourceKey": "wakeScreenWhenSomeoneInRoomName",
|
"nameResourceKey": "wakeScreenWhenSomeoneInRoomName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -19,7 +19,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 10,
|
"category": 11,
|
||||||
"nameResourceKey": "meetingInformationDisplayedOnWelcomeScreenName",
|
"nameResourceKey": "meetingInformationDisplayedOnWelcomeScreenName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -51,7 +51,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 10,
|
"category": 11,
|
||||||
"nameResourceKey": "lockScreenBackgroundImageURLName",
|
"nameResourceKey": "lockScreenBackgroundImageURLName",
|
||||||
"descriptionResourceKey": "lockScreenBackgroundImageURLDescription",
|
"descriptionResourceKey": "lockScreenBackgroundImageURLDescription",
|
||||||
"emptyValueResourceKey": "lockScreenBackgroundImageURLExample",
|
"emptyValueResourceKey": "lockScreenBackgroundImageURLExample",
|
||||||
@@ -68,7 +68,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 10,
|
"category": 11,
|
||||||
"nameResourceKey": "connectAppBlockAutoLaunchName",
|
"nameResourceKey": "connectAppBlockAutoLaunchName",
|
||||||
"descriptionResourceKey": "connectAppBlockAutoLaunchDescription",
|
"descriptionResourceKey": "connectAppBlockAutoLaunchDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -85,7 +85,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 10,
|
"category": 11,
|
||||||
"nameResourceKey": "settingsBlockSigninSuggestionsName",
|
"nameResourceKey": "settingsBlockSigninSuggestionsName",
|
||||||
"descriptionResourceKey": "settingsBlockSigninSuggestionsDescription",
|
"descriptionResourceKey": "settingsBlockSigninSuggestionsDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -102,7 +102,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 10,
|
"category": 11,
|
||||||
"nameResourceKey": "settingsBlockMyMeetingsAndFilesName",
|
"nameResourceKey": "settingsBlockMyMeetingsAndFilesName",
|
||||||
"descriptionResourceKey": "settingsBlockMyMeetingsAndFilesDescription",
|
"descriptionResourceKey": "settingsBlockMyMeetingsAndFilesDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 11,
|
"category": 12,
|
||||||
"nameResourceKey": "MacDeviceFeaturesAssociatedDomainsHeader",
|
"nameResourceKey": "MacDeviceFeaturesAssociatedDomainsHeader",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -20,7 +20,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": true,
|
"showAsSectionHeader": true,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 11,
|
"category": 12,
|
||||||
"nameResourceKey": "userApprovedAndAutomatedDeviceEnrollmentHeaderNameMac",
|
"nameResourceKey": "userApprovedAndAutomatedDeviceEnrollmentHeaderNameMac",
|
||||||
"descriptionResourceKey": "userApprovedAndAutomatedDeviceEnrollmentHeaderDescriptionMac",
|
"descriptionResourceKey": "userApprovedAndAutomatedDeviceEnrollmentHeaderDescriptionMac",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -29,7 +29,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 11,
|
"category": 12,
|
||||||
"nameResourceKey": "associatedDomainsAppIdName",
|
"nameResourceKey": "associatedDomainsAppIdName",
|
||||||
"descriptionResourceKey": "associatedDomainsAppIdDescription",
|
"descriptionResourceKey": "associatedDomainsAppIdDescription",
|
||||||
"emptyValueResourceKey": "associatedDomainsAppIdExample",
|
"emptyValueResourceKey": "associatedDomainsAppIdExample",
|
||||||
@@ -51,7 +51,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 11,
|
"category": 12,
|
||||||
"nameResourceKey": "associatedDomainsDomainName",
|
"nameResourceKey": "associatedDomainsDomainName",
|
||||||
"emptyValueResourceKey": "associatedDomainsDomainExample",
|
"emptyValueResourceKey": "associatedDomainsDomainExample",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -68,7 +68,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 21,
|
"dataType": 21,
|
||||||
"category": 11,
|
"category": 12,
|
||||||
"nameResourceKey": "associatedDomainsDomainsListName",
|
"nameResourceKey": "associatedDomainsDomainsListName",
|
||||||
"descriptionResourceKey": "associatedDomainsDomainsListDescription",
|
"descriptionResourceKey": "associatedDomainsDomainsListDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -86,7 +86,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 11,
|
"category": 12,
|
||||||
"nameResourceKey": "associatedDomainsEnableDirectDownloadsName",
|
"nameResourceKey": "associatedDomainsEnableDirectDownloadsName",
|
||||||
"descriptionResourceKey": "associatedDomainsEnableDirectDownloadsDescription",
|
"descriptionResourceKey": "associatedDomainsEnableDirectDownloadsDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -104,7 +104,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 21,
|
"dataType": 21,
|
||||||
"category": 11,
|
"category": 12,
|
||||||
"nameResourceKey": "associatedDomainsTableName",
|
"nameResourceKey": "associatedDomainsTableName",
|
||||||
"descriptionResourceKey": "associatedDomainsTableDescription",
|
"descriptionResourceKey": "associatedDomainsTableDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 12,
|
"category": 13,
|
||||||
"nameResourceKey": "IosGeneralAutonomousSingleAppModeHeader",
|
"nameResourceKey": "IosGeneralAutonomousSingleAppModeHeader",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -20,7 +20,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": true,
|
"showAsSectionHeader": true,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 12,
|
"category": 13,
|
||||||
"nameResourceKey": "automatedDeviceEnrollmentHeaderName",
|
"nameResourceKey": "automatedDeviceEnrollmentHeaderName",
|
||||||
"descriptionResourceKey": "automatedDeviceEnrollmentHeaderDescription",
|
"descriptionResourceKey": "automatedDeviceEnrollmentHeaderDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -29,7 +29,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 12,
|
"category": 13,
|
||||||
"nameResourceKey": "singleAppModeAppNameName",
|
"nameResourceKey": "singleAppModeAppNameName",
|
||||||
"descriptionResourceKey": "singleAppModeAppNameDescription",
|
"descriptionResourceKey": "singleAppModeAppNameDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -47,7 +47,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 12,
|
"category": 13,
|
||||||
"nameResourceKey": "singleAppModeBundleIdsName",
|
"nameResourceKey": "singleAppModeBundleIdsName",
|
||||||
"descriptionResourceKey": "singleAppModeBundleIdsDescription",
|
"descriptionResourceKey": "singleAppModeBundleIdsDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -64,7 +64,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 21,
|
"dataType": 21,
|
||||||
"category": 12,
|
"category": 13,
|
||||||
"nameResourceKey": "Empty",
|
"nameResourceKey": "Empty",
|
||||||
"descriptionResourceKey": "Empty",
|
"descriptionResourceKey": "Empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|||||||
@@ -1,13 +1,13 @@
|
|||||||
{
|
{
|
||||||
"azureoperationalinsights_windows10teamgeneral": {
|
"azureoperationalinsights_windows10teamgeneral": {
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 13,
|
"category": 14,
|
||||||
"nameResourceKey": "azureOperationalInsightsName",
|
"nameResourceKey": "azureOperationalInsightsName",
|
||||||
"descriptionResourceKey": "azureOperationalInsightsDescription",
|
"descriptionResourceKey": "azureOperationalInsightsDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 13,
|
"category": 14,
|
||||||
"nameResourceKey": "workspaceIDName",
|
"nameResourceKey": "workspaceIDName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -23,7 +23,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 13,
|
"category": 14,
|
||||||
"nameResourceKey": "workspaceKeyName",
|
"nameResourceKey": "workspaceKeyName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 14,
|
"category": 15,
|
||||||
"nameResourceKey": "bitLockerWindowsSettingsName",
|
"nameResourceKey": "bitLockerWindowsSettingsName",
|
||||||
"descriptionResourceKey": "bitLockerWindowsSettingsDescription",
|
"descriptionResourceKey": "bitLockerWindowsSettingsDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -19,7 +19,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 14,
|
"category": 15,
|
||||||
"nameResourceKey": "bitLockerEncryptDeviceName",
|
"nameResourceKey": "bitLockerEncryptDeviceName",
|
||||||
"descriptionResourceKey": "bitLockerEncryptDeviceDescription",
|
"descriptionResourceKey": "bitLockerEncryptDeviceDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -37,7 +37,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 14,
|
"category": 15,
|
||||||
"nameResourceKey": "bitLockerEnableStorageCardEncryptionOnMobileName",
|
"nameResourceKey": "bitLockerEnableStorageCardEncryptionOnMobileName",
|
||||||
"descriptionResourceKey": "bitLockerEnableStorageCardEncryptionOnMobileDescription",
|
"descriptionResourceKey": "bitLockerEnableStorageCardEncryptionOnMobileDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -57,7 +57,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 14,
|
"category": 15,
|
||||||
"nameResourceKey": "bitLockerBaseSettingsName",
|
"nameResourceKey": "bitLockerBaseSettingsName",
|
||||||
"descriptionResourceKey": "bitLockerBaseSettingsDescription",
|
"descriptionResourceKey": "bitLockerBaseSettingsDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -72,13 +72,13 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 14,
|
"category": 15,
|
||||||
"nameResourceKey": "bitLockerDisableWarningForOtherDiskEncryptionName",
|
"nameResourceKey": "bitLockerDisableWarningForOtherDiskEncryptionName",
|
||||||
"descriptionResourceKey": "bitLockerDisableWarningForOtherDiskEncryptionDescription",
|
"descriptionResourceKey": "bitLockerDisableWarningForOtherDiskEncryptionDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 14,
|
"category": 15,
|
||||||
"nameResourceKey": "BitLockerAllowStdUsersEncryptAADJoinName",
|
"nameResourceKey": "BitLockerAllowStdUsersEncryptAADJoinName",
|
||||||
"descriptionResourceKey": "BitLockerAllowStdUsersEncryptAADJoinDescription",
|
"descriptionResourceKey": "BitLockerAllowStdUsersEncryptAADJoinDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -116,13 +116,13 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 14,
|
"category": 15,
|
||||||
"nameResourceKey": "bitLockerBaseConfigureEncryptionMethodsName",
|
"nameResourceKey": "bitLockerBaseConfigureEncryptionMethodsName",
|
||||||
"descriptionResourceKey": "bitLockerBaseConfigureEncryptionMethodsDescription",
|
"descriptionResourceKey": "bitLockerBaseConfigureEncryptionMethodsDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 14,
|
"category": 15,
|
||||||
"nameResourceKey": "bitLockerSystemEncryptionMethodName",
|
"nameResourceKey": "bitLockerSystemEncryptionMethodName",
|
||||||
"descriptionResourceKey": "bitLockerXTSAESEncryptionMethodDescription",
|
"descriptionResourceKey": "bitLockerXTSAESEncryptionMethodDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -135,7 +135,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 10,
|
"dataType": 10,
|
||||||
"category": 14,
|
"category": 15,
|
||||||
"nameResourceKey": "bitlockerWarningInfoBox",
|
"nameResourceKey": "bitlockerWarningInfoBox",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -156,7 +156,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 10,
|
"dataType": 10,
|
||||||
"category": 14,
|
"category": 15,
|
||||||
"nameResourceKey": "bitlockerWarningInfoBox",
|
"nameResourceKey": "bitlockerWarningInfoBox",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -182,7 +182,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 10,
|
"dataType": 10,
|
||||||
"category": 14,
|
"category": 15,
|
||||||
"nameResourceKey": "bitlockerWarningInfoBox",
|
"nameResourceKey": "bitlockerWarningInfoBox",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -207,7 +207,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 14,
|
"category": 15,
|
||||||
"nameResourceKey": "bitLockerFixedEncryptionMethodName",
|
"nameResourceKey": "bitLockerFixedEncryptionMethodName",
|
||||||
"descriptionResourceKey": "bitLockerXTSAESEncryptionMethodDescription",
|
"descriptionResourceKey": "bitLockerXTSAESEncryptionMethodDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -220,7 +220,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 10,
|
"dataType": 10,
|
||||||
"category": 14,
|
"category": 15,
|
||||||
"nameResourceKey": "bitlockerWarningInfoBox",
|
"nameResourceKey": "bitlockerWarningInfoBox",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -241,7 +241,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 10,
|
"dataType": 10,
|
||||||
"category": 14,
|
"category": 15,
|
||||||
"nameResourceKey": "bitlockerWarningInfoBox",
|
"nameResourceKey": "bitlockerWarningInfoBox",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -267,7 +267,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 10,
|
"dataType": 10,
|
||||||
"category": 14,
|
"category": 15,
|
||||||
"nameResourceKey": "bitlockerWarningInfoBox",
|
"nameResourceKey": "bitlockerWarningInfoBox",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -292,7 +292,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 14,
|
"category": 15,
|
||||||
"nameResourceKey": "bitLockerRemovableEncryptionMethodName",
|
"nameResourceKey": "bitLockerRemovableEncryptionMethodName",
|
||||||
"descriptionResourceKey": "bitLockerRemovableEncryptionMethodDescription",
|
"descriptionResourceKey": "bitLockerRemovableEncryptionMethodDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -310,7 +310,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 10,
|
"dataType": 10,
|
||||||
"category": 14,
|
"category": 15,
|
||||||
"nameResourceKey": "bitlockerWarningInfoBox",
|
"nameResourceKey": "bitlockerWarningInfoBox",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -331,7 +331,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 10,
|
"dataType": 10,
|
||||||
"category": 14,
|
"category": 15,
|
||||||
"nameResourceKey": "bitlockerWarningInfoBox",
|
"nameResourceKey": "bitlockerWarningInfoBox",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -352,7 +352,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 10,
|
"dataType": 10,
|
||||||
"category": 14,
|
"category": 15,
|
||||||
"nameResourceKey": "bitlockerWarningInfoBox",
|
"nameResourceKey": "bitlockerWarningInfoBox",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -390,7 +390,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 14,
|
"category": 15,
|
||||||
"nameResourceKey": "bitLockerSystemDriveSettingsName",
|
"nameResourceKey": "bitLockerSystemDriveSettingsName",
|
||||||
"descriptionResourceKey": "bitLockerSystemDriveSettingsDescription",
|
"descriptionResourceKey": "bitLockerSystemDriveSettingsDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -405,13 +405,13 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 14,
|
"category": 15,
|
||||||
"nameResourceKey": "bitLockerSystemDriveStartupAuthenticationRequiredName",
|
"nameResourceKey": "bitLockerSystemDriveStartupAuthenticationRequiredName",
|
||||||
"descriptionResourceKey": "bitLockerSystemDriveStartupAuthenticationRequiredDescription",
|
"descriptionResourceKey": "bitLockerSystemDriveStartupAuthenticationRequiredDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 14,
|
"category": 15,
|
||||||
"nameResourceKey": "bitLockerSystemDriveStartupAuthenticationBlockWithoutTpmChipName",
|
"nameResourceKey": "bitLockerSystemDriveStartupAuthenticationBlockWithoutTpmChipName",
|
||||||
"descriptionResourceKey": "bitLockerSystemDriveStartupAuthenticationBlockWithoutTpmChipDescription",
|
"descriptionResourceKey": "bitLockerSystemDriveStartupAuthenticationBlockWithoutTpmChipDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -429,7 +429,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 14,
|
"category": 15,
|
||||||
"nameResourceKey": "bitLockerSystemDriveStartupAuthenticationTpmName",
|
"nameResourceKey": "bitLockerSystemDriveStartupAuthenticationTpmName",
|
||||||
"descriptionResourceKey": "bitLockerSystemDriveStartupAuthenticationTpmDescription",
|
"descriptionResourceKey": "bitLockerSystemDriveStartupAuthenticationTpmDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -461,7 +461,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 14,
|
"category": 15,
|
||||||
"nameResourceKey": "bitLockerSystemDriveStartupAuthenticationTpmPinName",
|
"nameResourceKey": "bitLockerSystemDriveStartupAuthenticationTpmPinName",
|
||||||
"descriptionResourceKey": "bitLockerSystemDriveStartupAuthenticationTpmPinDescription",
|
"descriptionResourceKey": "bitLockerSystemDriveStartupAuthenticationTpmPinDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -493,7 +493,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 14,
|
"category": 15,
|
||||||
"nameResourceKey": "bitLockerSystemDriveStartupAuthenticationTpmKeyName",
|
"nameResourceKey": "bitLockerSystemDriveStartupAuthenticationTpmKeyName",
|
||||||
"descriptionResourceKey": "bitLockerSystemDriveStartupAuthenticationTpmKeyDescription",
|
"descriptionResourceKey": "bitLockerSystemDriveStartupAuthenticationTpmKeyDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -525,7 +525,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 14,
|
"category": 15,
|
||||||
"nameResourceKey": "bitLockerSystemDriveStartupAuthenticationTpmPinKeyName",
|
"nameResourceKey": "bitLockerSystemDriveStartupAuthenticationTpmPinKeyName",
|
||||||
"descriptionResourceKey": "bitLockerSystemDriveStartupAuthenticationTpmPinKeyDescription",
|
"descriptionResourceKey": "bitLockerSystemDriveStartupAuthenticationTpmPinKeyDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -557,13 +557,13 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 14,
|
"category": 15,
|
||||||
"nameResourceKey": "bitLockerSystemDriveMiniumPinLengthEnableName",
|
"nameResourceKey": "bitLockerSystemDriveMiniumPinLengthEnableName",
|
||||||
"descriptionResourceKey": "bitLockerSystemDriveMiniumPinLengthEnableDescription",
|
"descriptionResourceKey": "bitLockerSystemDriveMiniumPinLengthEnableDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 14,
|
"category": 15,
|
||||||
"nameResourceKey": "bitLockerSystemDriveMiniumPinLengthName",
|
"nameResourceKey": "bitLockerSystemDriveMiniumPinLengthName",
|
||||||
"descriptionResourceKey": "bitLockerSystemDriveMiniumPinLengthDescription",
|
"descriptionResourceKey": "bitLockerSystemDriveMiniumPinLengthDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -590,13 +590,13 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 14,
|
"category": 15,
|
||||||
"nameResourceKey": "bitLockerSyntheticSystemDrivePolicyDriveRecoveryName",
|
"nameResourceKey": "bitLockerSyntheticSystemDrivePolicyDriveRecoveryName",
|
||||||
"descriptionResourceKey": "bitLockerSyntheticSystemDrivePolicyDriveRecoveryDescription",
|
"descriptionResourceKey": "bitLockerSyntheticSystemDrivePolicyDriveRecoveryDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 14,
|
"category": 15,
|
||||||
"nameResourceKey": "bitLockerSyntheticSystemDrivePolicyDriveRecoveryAgentName",
|
"nameResourceKey": "bitLockerSyntheticSystemDrivePolicyDriveRecoveryAgentName",
|
||||||
"descriptionResourceKey": "bitLockerSyntheticSystemDrivePolicyDriveRecoveryAgentDescription",
|
"descriptionResourceKey": "bitLockerSyntheticSystemDrivePolicyDriveRecoveryAgentDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -614,7 +614,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 14,
|
"category": 15,
|
||||||
"nameResourceKey": "bitLockerRecoveryOptionsPasswordName",
|
"nameResourceKey": "bitLockerRecoveryOptionsPasswordName",
|
||||||
"descriptionResourceKey": "bitLockerRecoveryOptionsPasswordDescription",
|
"descriptionResourceKey": "bitLockerRecoveryOptionsPasswordDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -646,7 +646,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 14,
|
"category": 15,
|
||||||
"nameResourceKey": "bitLockerRecoveryOptionsKeyName",
|
"nameResourceKey": "bitLockerRecoveryOptionsKeyName",
|
||||||
"descriptionResourceKey": "bitLockerRecoveryOptionsKeyDescription",
|
"descriptionResourceKey": "bitLockerRecoveryOptionsKeyDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -678,7 +678,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 14,
|
"category": 15,
|
||||||
"nameResourceKey": "bitLockerRecoveryOptionsHideName",
|
"nameResourceKey": "bitLockerRecoveryOptionsHideName",
|
||||||
"descriptionResourceKey": "bitLockerRecoveryOptionsHideDescription",
|
"descriptionResourceKey": "bitLockerRecoveryOptionsHideDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -696,7 +696,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 14,
|
"category": 15,
|
||||||
"nameResourceKey": "bitLockerRecoveryOptionsSaveToStoreName",
|
"nameResourceKey": "bitLockerRecoveryOptionsSaveToStoreName",
|
||||||
"descriptionResourceKey": "bitLockerRecoveryOptionsSaveToStoreDescription",
|
"descriptionResourceKey": "bitLockerRecoveryOptionsSaveToStoreDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -714,7 +714,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 14,
|
"category": 15,
|
||||||
"nameResourceKey": "bitLockerRecoveryOptionsInformationToStoreName",
|
"nameResourceKey": "bitLockerRecoveryOptionsInformationToStoreName",
|
||||||
"descriptionResourceKey": "bitLockerRecoveryOptionsInformationToStoreDescription",
|
"descriptionResourceKey": "bitLockerRecoveryOptionsInformationToStoreDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -741,7 +741,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 14,
|
"category": 15,
|
||||||
"nameResourceKey": "BitLockerRecoveryPasswordRotationName",
|
"nameResourceKey": "BitLockerRecoveryPasswordRotationName",
|
||||||
"descriptionResourceKey": "BitLockerRecoveryPasswordRotationDescription",
|
"descriptionResourceKey": "BitLockerRecoveryPasswordRotationDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -778,7 +778,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 14,
|
"category": 15,
|
||||||
"nameResourceKey": "bitLockerRecoveryOptionsAfterRecoveryInformationToStoreName",
|
"nameResourceKey": "bitLockerRecoveryOptionsAfterRecoveryInformationToStoreName",
|
||||||
"descriptionResourceKey": "bitLockerRecoveryOptionsAfterRecoveryInformationToStoreDescription",
|
"descriptionResourceKey": "bitLockerRecoveryOptionsAfterRecoveryInformationToStoreDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -807,13 +807,13 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 14,
|
"category": 15,
|
||||||
"nameResourceKey": "bitLockerSystemDrivePrebootRecoveryEnableName",
|
"nameResourceKey": "bitLockerSystemDrivePrebootRecoveryEnableName",
|
||||||
"descriptionResourceKey": "bitLockerSystemDrivePrebootRecoveryEnableDescription",
|
"descriptionResourceKey": "bitLockerSystemDrivePrebootRecoveryEnableDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 14,
|
"category": 15,
|
||||||
"nameResourceKey": "bitLockerSystemDrivePrebootRecoveryMsgURLOptionName",
|
"nameResourceKey": "bitLockerSystemDrivePrebootRecoveryMsgURLOptionName",
|
||||||
"descriptionResourceKey": "bitLockerSystemDrivePrebootRecoveryMsgURLOptionDescription",
|
"descriptionResourceKey": "bitLockerSystemDrivePrebootRecoveryMsgURLOptionDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -836,7 +836,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 14,
|
"category": 15,
|
||||||
"nameResourceKey": "bitLockerSystemDrivePrebootRecoveryCustomMsgName",
|
"nameResourceKey": "bitLockerSystemDrivePrebootRecoveryCustomMsgName",
|
||||||
"descriptionResourceKey": "bitLockerSystemDrivePrebootRecoveryCustomMsgDescription",
|
"descriptionResourceKey": "bitLockerSystemDrivePrebootRecoveryCustomMsgDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -859,7 +859,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 14,
|
"category": 15,
|
||||||
"nameResourceKey": "bitLockerSystemDrivePrebootRecoveryCustomURLName",
|
"nameResourceKey": "bitLockerSystemDrivePrebootRecoveryCustomURLName",
|
||||||
"descriptionResourceKey": "bitLockerSystemDrivePrebootRecoveryCustomURLDescription",
|
"descriptionResourceKey": "bitLockerSystemDrivePrebootRecoveryCustomURLDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -910,7 +910,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 14,
|
"category": 15,
|
||||||
"nameResourceKey": "bitLockerFixedDriveSettingsName",
|
"nameResourceKey": "bitLockerFixedDriveSettingsName",
|
||||||
"descriptionResourceKey": "bitLockerFixedDriveSettingsDescription",
|
"descriptionResourceKey": "bitLockerFixedDriveSettingsDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -925,7 +925,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 14,
|
"category": 15,
|
||||||
"nameResourceKey": "bitLockerFixedDriveWriteAccessName",
|
"nameResourceKey": "bitLockerFixedDriveWriteAccessName",
|
||||||
"descriptionResourceKey": "bitLockerFixedDriveWriteAccessDescription",
|
"descriptionResourceKey": "bitLockerFixedDriveWriteAccessDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -943,13 +943,13 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 14,
|
"category": 15,
|
||||||
"nameResourceKey": "bitLockerSyntheticFixedDrivePolicyDriveRecoveryName",
|
"nameResourceKey": "bitLockerSyntheticFixedDrivePolicyDriveRecoveryName",
|
||||||
"descriptionResourceKey": "bitLockerSyntheticFixedDrivePolicyDriveRecoveryDescription",
|
"descriptionResourceKey": "bitLockerSyntheticFixedDrivePolicyDriveRecoveryDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 14,
|
"category": 15,
|
||||||
"nameResourceKey": "bitLockerSyntheticFixedDrivePolicyDriveRecoveryAgentName",
|
"nameResourceKey": "bitLockerSyntheticFixedDrivePolicyDriveRecoveryAgentName",
|
||||||
"descriptionResourceKey": "bitLockerSyntheticFixedDrivePolicyDriveRecoveryAgentDescription",
|
"descriptionResourceKey": "bitLockerSyntheticFixedDrivePolicyDriveRecoveryAgentDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -967,7 +967,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 14,
|
"category": 15,
|
||||||
"nameResourceKey": "bitLockerRecoveryOptionsPasswordName",
|
"nameResourceKey": "bitLockerRecoveryOptionsPasswordName",
|
||||||
"descriptionResourceKey": "bitLockerRecoveryOptionsPasswordDescription",
|
"descriptionResourceKey": "bitLockerRecoveryOptionsPasswordDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -999,7 +999,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 14,
|
"category": 15,
|
||||||
"nameResourceKey": "bitLockerRecoveryOptionsKeyName",
|
"nameResourceKey": "bitLockerRecoveryOptionsKeyName",
|
||||||
"descriptionResourceKey": "bitLockerRecoveryOptionsKeyDescription",
|
"descriptionResourceKey": "bitLockerRecoveryOptionsKeyDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1031,7 +1031,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 14,
|
"category": 15,
|
||||||
"nameResourceKey": "bitLockerRecoveryOptionsHideName",
|
"nameResourceKey": "bitLockerRecoveryOptionsHideName",
|
||||||
"descriptionResourceKey": "bitLockerRecoveryOptionsHideDescription",
|
"descriptionResourceKey": "bitLockerRecoveryOptionsHideDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1049,7 +1049,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 14,
|
"category": 15,
|
||||||
"nameResourceKey": "bitLockerRecoveryOptionsSaveToStoreName",
|
"nameResourceKey": "bitLockerRecoveryOptionsSaveToStoreName",
|
||||||
"descriptionResourceKey": "bitLockerRecoveryOptionsSaveToStoreDescription",
|
"descriptionResourceKey": "bitLockerRecoveryOptionsSaveToStoreDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1067,7 +1067,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 14,
|
"category": 15,
|
||||||
"nameResourceKey": "bitLockerRecoveryOptionsInformationToStoreName",
|
"nameResourceKey": "bitLockerRecoveryOptionsInformationToStoreName",
|
||||||
"descriptionResourceKey": "bitLockerRecoveryOptionsInformationToStoreDescription",
|
"descriptionResourceKey": "bitLockerRecoveryOptionsInformationToStoreDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1094,7 +1094,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 14,
|
"category": 15,
|
||||||
"nameResourceKey": "bitLockerRecoveryOptionsAfterRecoveryInformationToStoreName",
|
"nameResourceKey": "bitLockerRecoveryOptionsAfterRecoveryInformationToStoreName",
|
||||||
"descriptionResourceKey": "bitLockerRecoveryOptionsAfterRecoveryInformationToStoreDescription",
|
"descriptionResourceKey": "bitLockerRecoveryOptionsAfterRecoveryInformationToStoreDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1125,7 +1125,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 14,
|
"category": 15,
|
||||||
"nameResourceKey": "bitLockerRemovableDriveSettingsName",
|
"nameResourceKey": "bitLockerRemovableDriveSettingsName",
|
||||||
"descriptionResourceKey": "bitLockerRemovableDriveSettingsDescription",
|
"descriptionResourceKey": "bitLockerRemovableDriveSettingsDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1140,13 +1140,13 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 14,
|
"category": 15,
|
||||||
"nameResourceKey": "bitLockerRemovableDriveWriteAccessName",
|
"nameResourceKey": "bitLockerRemovableDriveWriteAccessName",
|
||||||
"descriptionResourceKey": "bitLockerRemovableDriveWriteAccessDescription",
|
"descriptionResourceKey": "bitLockerRemovableDriveWriteAccessDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 14,
|
"category": 15,
|
||||||
"nameResourceKey": "bitLockerRemovableDriveWriteAccessCrossOrgName",
|
"nameResourceKey": "bitLockerRemovableDriveWriteAccessCrossOrgName",
|
||||||
"descriptionResourceKey": "bitLockerRemovableDriveWriteAccessCrossOrgDescription",
|
"descriptionResourceKey": "bitLockerRemovableDriveWriteAccessCrossOrgDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|||||||
@@ -0,0 +1,68 @@
|
|||||||
|
{
|
||||||
|
"bootoptions_windows10devicefirmwareconfigurationinterface": [
|
||||||
|
{
|
||||||
|
"dataType": 16,
|
||||||
|
"category": 16,
|
||||||
|
"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": 108,
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"dataType": 16,
|
||||||
|
"category": 16,
|
||||||
|
"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": 108,
|
||||||
|
"enabled": true
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -1,13 +1,13 @@
|
|||||||
{
|
{
|
||||||
"browser_androidgeneral": {
|
"browser_androidgeneral": {
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 15,
|
"category": 17,
|
||||||
"nameResourceKey": "knoxBlockWebBrowserName",
|
"nameResourceKey": "knoxBlockWebBrowserName",
|
||||||
"descriptionResourceKey": "knoxBlockWebBrowserDescription",
|
"descriptionResourceKey": "knoxBlockWebBrowserDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 15,
|
"category": 17,
|
||||||
"nameResourceKey": "knoxBlockAutofillName",
|
"nameResourceKey": "knoxBlockAutofillName",
|
||||||
"descriptionResourceKey": "knoxBlockAutofillDescription",
|
"descriptionResourceKey": "knoxBlockAutofillDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -24,7 +24,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 15,
|
"category": 17,
|
||||||
"nameResourceKey": "knoxBlockCookiesName",
|
"nameResourceKey": "knoxBlockCookiesName",
|
||||||
"descriptionResourceKey": "KnoxBlockCookiesDescription",
|
"descriptionResourceKey": "KnoxBlockCookiesDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -66,7 +66,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 15,
|
"category": 17,
|
||||||
"nameResourceKey": "knoxBlockJavaScriptName",
|
"nameResourceKey": "knoxBlockJavaScriptName",
|
||||||
"descriptionResourceKey": "knoxBlockJavaScriptDescription",
|
"descriptionResourceKey": "knoxBlockJavaScriptDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -83,7 +83,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 15,
|
"category": 17,
|
||||||
"nameResourceKey": "knoxBlockPopUpsName",
|
"nameResourceKey": "knoxBlockPopUpsName",
|
||||||
"descriptionResourceKey": "knoxBlockPopUpsDescription",
|
"descriptionResourceKey": "knoxBlockPopUpsDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
"browser_windows8general": [
|
"browser_windows8general": [
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 15,
|
"category": 17,
|
||||||
"nameResourceKey": "blockAutofillName",
|
"nameResourceKey": "blockAutofillName",
|
||||||
"descriptionResourceKey": "blockAutofillDescription",
|
"descriptionResourceKey": "blockAutofillDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -19,7 +19,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 15,
|
"category": 17,
|
||||||
"nameResourceKey": "requireFraudWarningName",
|
"nameResourceKey": "requireFraudWarningName",
|
||||||
"descriptionResourceKey": "requireFraudWarningDescription",
|
"descriptionResourceKey": "requireFraudWarningDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -36,7 +36,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 15,
|
"category": 17,
|
||||||
"nameResourceKey": "blockSmartScreenName",
|
"nameResourceKey": "blockSmartScreenName",
|
||||||
"descriptionResourceKey": "blockSmartScreenDescription",
|
"descriptionResourceKey": "blockSmartScreenDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -53,7 +53,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 15,
|
"category": 17,
|
||||||
"nameResourceKey": "blockJavaScriptName",
|
"nameResourceKey": "blockJavaScriptName",
|
||||||
"descriptionResourceKey": "blockJavaScriptDescription",
|
"descriptionResourceKey": "blockJavaScriptDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -70,7 +70,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 15,
|
"category": 17,
|
||||||
"nameResourceKey": "blockPopUpsName",
|
"nameResourceKey": "blockPopUpsName",
|
||||||
"descriptionResourceKey": "blockPopUpsDescription",
|
"descriptionResourceKey": "blockPopUpsDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -87,7 +87,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 15,
|
"category": 17,
|
||||||
"nameResourceKey": "blockDoNotTrackHeaderName",
|
"nameResourceKey": "blockDoNotTrackHeaderName",
|
||||||
"descriptionResourceKey": "blockDoNotTrackHeaderDescription",
|
"descriptionResourceKey": "blockDoNotTrackHeaderDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -104,7 +104,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 15,
|
"category": 17,
|
||||||
"nameResourceKey": "blockPluginsName",
|
"nameResourceKey": "blockPluginsName",
|
||||||
"descriptionResourceKey": "blockPluginsDescription",
|
"descriptionResourceKey": "blockPluginsDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -121,7 +121,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 15,
|
"category": 17,
|
||||||
"nameResourceKey": "blockSingleWordEntryIntranetName",
|
"nameResourceKey": "blockSingleWordEntryIntranetName",
|
||||||
"descriptionResourceKey": "blockSingleWordEntryIntranetDescription",
|
"descriptionResourceKey": "blockSingleWordEntryIntranetDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -138,7 +138,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 15,
|
"category": 17,
|
||||||
"nameResourceKey": "blockIntranetAutoDetectName",
|
"nameResourceKey": "blockIntranetAutoDetectName",
|
||||||
"descriptionResourceKey": "blockIntranetAutoDetectDescription",
|
"descriptionResourceKey": "blockIntranetAutoDetectDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -155,7 +155,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 15,
|
"category": 17,
|
||||||
"nameResourceKey": "internetSecurityLevelName",
|
"nameResourceKey": "internetSecurityLevelName",
|
||||||
"descriptionResourceKey": "internetSecurityLevelDescription",
|
"descriptionResourceKey": "internetSecurityLevelDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -192,7 +192,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 15,
|
"category": 17,
|
||||||
"nameResourceKey": "intranetSecurityLevelName",
|
"nameResourceKey": "intranetSecurityLevelName",
|
||||||
"descriptionResourceKey": "intranetSecurityLevelDescription",
|
"descriptionResourceKey": "intranetSecurityLevelDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -239,7 +239,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 15,
|
"category": 17,
|
||||||
"nameResourceKey": "trustedSitesSecurityLevelName",
|
"nameResourceKey": "trustedSitesSecurityLevelName",
|
||||||
"descriptionResourceKey": "trustedSitesSecurityLevelDescription",
|
"descriptionResourceKey": "trustedSitesSecurityLevelDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -286,7 +286,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 15,
|
"category": 17,
|
||||||
"nameResourceKey": "restrictedSitesSecurityLevelName",
|
"nameResourceKey": "restrictedSitesSecurityLevelName",
|
||||||
"descriptionResourceKey": "restrictedSitesSecurityLevelDescription",
|
"descriptionResourceKey": "restrictedSitesSecurityLevelDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -303,13 +303,13 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 15,
|
"category": 17,
|
||||||
"nameResourceKey": "enterpriseModeMenuAccessName",
|
"nameResourceKey": "enterpriseModeMenuAccessName",
|
||||||
"descriptionResourceKey": "enterpriseModeMenuAccessDescription",
|
"descriptionResourceKey": "enterpriseModeMenuAccessDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 15,
|
"category": 17,
|
||||||
"nameResourceKey": "loggingReportLocationName",
|
"nameResourceKey": "loggingReportLocationName",
|
||||||
"descriptionResourceKey": "loggingReportLocationDescription",
|
"descriptionResourceKey": "loggingReportLocationDescription",
|
||||||
"emptyValueResourceKey": "enterpriseModeLoggingExample",
|
"emptyValueResourceKey": "enterpriseModeLoggingExample",
|
||||||
@@ -336,7 +336,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 15,
|
"category": 17,
|
||||||
"nameResourceKey": "enterpriseModeSiteListLocationName",
|
"nameResourceKey": "enterpriseModeSiteListLocationName",
|
||||||
"descriptionResourceKey": "enterpriseModeSiteListLocationDescription",
|
"descriptionResourceKey": "enterpriseModeSiteListLocationDescription",
|
||||||
"emptyValueResourceKey": "enterpriseModeSiteListExample",
|
"emptyValueResourceKey": "enterpriseModeSiteListExample",
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"browser_windowsphonegeneral": {
|
"browser_windowsphonegeneral": {
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 15,
|
"category": 17,
|
||||||
"nameResourceKey": "blockWebBrowserName",
|
"nameResourceKey": "blockWebBrowserName",
|
||||||
"descriptionResourceKey": "blockWebBrowserDescription",
|
"descriptionResourceKey": "blockWebBrowserDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|||||||
@@ -4,18 +4,18 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": true,
|
"showAsSectionHeader": true,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 16,
|
"category": 18,
|
||||||
"nameResourceKey": "allEnrollmentTypesHeaderName",
|
"nameResourceKey": "allEnrollmentTypesHeaderName",
|
||||||
"descriptionResourceKey": "allEnrollmentTypesHeaderDescription",
|
"descriptionResourceKey": "allEnrollmentTypesHeaderDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 16,
|
"category": 18,
|
||||||
"nameResourceKey": "blockSiriName",
|
"nameResourceKey": "blockSiriName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 16,
|
"category": 18,
|
||||||
"nameResourceKey": "blockSiriWhenLockedName",
|
"nameResourceKey": "blockSiriWhenLockedName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -41,7 +41,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 16,
|
"category": 18,
|
||||||
"nameResourceKey": "requireFraudWarningNameIOS",
|
"nameResourceKey": "requireFraudWarningNameIOS",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -67,13 +67,13 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": true,
|
"showAsSectionHeader": true,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 16,
|
"category": 18,
|
||||||
"nameResourceKey": "deviceEnrollmentAndAutomatedDeviceEnrollmentHeaderName",
|
"nameResourceKey": "deviceEnrollmentAndAutomatedDeviceEnrollmentHeaderName",
|
||||||
"descriptionResourceKey": "deviceEnrollmentAndAutomatedDeviceEnrollmentHeaderDescription",
|
"descriptionResourceKey": "deviceEnrollmentAndAutomatedDeviceEnrollmentHeaderDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 16,
|
"category": 18,
|
||||||
"nameResourceKey": "blockSpotlightInternetResultsName",
|
"nameResourceKey": "blockSpotlightInternetResultsName",
|
||||||
"descriptionResourceKey": "blockSpotlightInternetResultsDescription",
|
"descriptionResourceKey": "blockSpotlightInternetResultsDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -90,7 +90,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 16,
|
"category": 18,
|
||||||
"nameResourceKey": "blockCookiesNameIOS",
|
"nameResourceKey": "blockCookiesNameIOS",
|
||||||
"descriptionResourceKey": "blockCookiesDescriptionIOS",
|
"descriptionResourceKey": "blockCookiesDescriptionIOS",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -127,7 +127,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 16,
|
"category": 18,
|
||||||
"nameResourceKey": "blockJavaScriptNameIOS",
|
"nameResourceKey": "blockJavaScriptNameIOS",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -143,7 +143,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 16,
|
"category": 18,
|
||||||
"nameResourceKey": "blockPopUpsNameIOS",
|
"nameResourceKey": "blockPopUpsNameIOS",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -159,7 +159,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 16,
|
"category": 18,
|
||||||
"nameResourceKey": "onDeviceOnlyDictationForcedName",
|
"nameResourceKey": "onDeviceOnlyDictationForcedName",
|
||||||
"descriptionResourceKey": "onDeviceOnlyDictationForcedDescription",
|
"descriptionResourceKey": "onDeviceOnlyDictationForcedDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -176,7 +176,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 16,
|
"category": 18,
|
||||||
"nameResourceKey": "onDeviceOnlyTranslationForcedName",
|
"nameResourceKey": "onDeviceOnlyTranslationForcedName",
|
||||||
"descriptionResourceKey": "onDeviceOnlyTranslationForcedDescription",
|
"descriptionResourceKey": "onDeviceOnlyTranslationForcedDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -203,18 +203,18 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": true,
|
"showAsSectionHeader": true,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 16,
|
"category": 18,
|
||||||
"nameResourceKey": "automatedDeviceEnrollmentHeaderName",
|
"nameResourceKey": "automatedDeviceEnrollmentHeaderName",
|
||||||
"descriptionResourceKey": "automatedDeviceEnrollmentHeaderDescription",
|
"descriptionResourceKey": "automatedDeviceEnrollmentHeaderDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 16,
|
"category": 18,
|
||||||
"nameResourceKey": "blockIosCameraName",
|
"nameResourceKey": "blockIosCameraName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 16,
|
"category": 18,
|
||||||
"nameResourceKey": "blockFacetimeName",
|
"nameResourceKey": "blockFacetimeName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -240,7 +240,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 16,
|
"category": 18,
|
||||||
"nameResourceKey": "requireSiriProfanityFilterName",
|
"nameResourceKey": "requireSiriProfanityFilterName",
|
||||||
"descriptionResourceKey": "requireSiriProfanityFilterDescription",
|
"descriptionResourceKey": "requireSiriProfanityFilterDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -257,7 +257,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 16,
|
"category": 18,
|
||||||
"nameResourceKey": "blockSiriUserGeneratedContentName",
|
"nameResourceKey": "blockSiriUserGeneratedContentName",
|
||||||
"descriptionResourceKey": "blockSiriUserGeneratedContentDescription",
|
"descriptionResourceKey": "blockSiriUserGeneratedContentDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -274,7 +274,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 16,
|
"category": 18,
|
||||||
"nameResourceKey": "blockAppleNewsName",
|
"nameResourceKey": "blockAppleNewsName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -290,7 +290,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 16,
|
"category": 18,
|
||||||
"nameResourceKey": "blockIBooksStoreName",
|
"nameResourceKey": "blockIBooksStoreName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -306,7 +306,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 16,
|
"category": 18,
|
||||||
"nameResourceKey": "blockMessagesName",
|
"nameResourceKey": "blockMessagesName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -322,7 +322,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 16,
|
"category": 18,
|
||||||
"nameResourceKey": "blockPodcastsName",
|
"nameResourceKey": "blockPodcastsName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -338,7 +338,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 16,
|
"category": 18,
|
||||||
"nameResourceKey": "blockITunesMusicServiceName",
|
"nameResourceKey": "blockITunesMusicServiceName",
|
||||||
"descriptionResourceKey": "blockITunesMusicServiceDescription",
|
"descriptionResourceKey": "blockITunesMusicServiceDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -355,7 +355,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 16,
|
"category": 18,
|
||||||
"nameResourceKey": "blockITunesRadioName",
|
"nameResourceKey": "blockITunesRadioName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -371,7 +371,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 16,
|
"category": 18,
|
||||||
"nameResourceKey": "blockITunesStoreName",
|
"nameResourceKey": "blockITunesStoreName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -387,7 +387,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 16,
|
"category": 18,
|
||||||
"nameResourceKey": "blockFindMyDeviceName",
|
"nameResourceKey": "blockFindMyDeviceName",
|
||||||
"descriptionResourceKey": "blockFindMyDeviceDescription",
|
"descriptionResourceKey": "blockFindMyDeviceDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -404,7 +404,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 16,
|
"category": 18,
|
||||||
"nameResourceKey": "blockFindMyFriendsName",
|
"nameResourceKey": "blockFindMyFriendsName",
|
||||||
"descriptionResourceKey": "blockFindMyFriendsDescription",
|
"descriptionResourceKey": "blockFindMyFriendsDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -421,7 +421,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 16,
|
"category": 18,
|
||||||
"nameResourceKey": "blockFindMyFriendsModificationName",
|
"nameResourceKey": "blockFindMyFriendsModificationName",
|
||||||
"descriptionResourceKey": "blockFindMyFriendsModificationDescription",
|
"descriptionResourceKey": "blockFindMyFriendsModificationDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -438,7 +438,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 16,
|
"category": 18,
|
||||||
"nameResourceKey": "blockSystemAppRemovalName",
|
"nameResourceKey": "blockSystemAppRemovalName",
|
||||||
"descriptionResourceKey": "blockSystemAppRemovalDescription",
|
"descriptionResourceKey": "blockSystemAppRemovalDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -455,7 +455,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 16,
|
"category": 18,
|
||||||
"nameResourceKey": "blockSafariName",
|
"nameResourceKey": "blockSafariName",
|
||||||
"descriptionResourceKey": "blockSafariDescription",
|
"descriptionResourceKey": "blockSafariDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -472,7 +472,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 16,
|
"category": 18,
|
||||||
"nameResourceKey": "blockIosSafariAutofillName",
|
"nameResourceKey": "blockIosSafariAutofillName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
|
|||||||
@@ -3,13 +3,13 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": true,
|
"showAsSectionHeader": true,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 16,
|
"category": 18,
|
||||||
"nameResourceKey": "allEnrollmentTypesHeaderNameMac",
|
"nameResourceKey": "allEnrollmentTypesHeaderNameMac",
|
||||||
"descriptionResourceKey": "allEnrollmentTypesHeaderDescriptionMac",
|
"descriptionResourceKey": "allEnrollmentTypesHeaderDescriptionMac",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 16,
|
"category": 18,
|
||||||
"nameResourceKey": "blockSafariAutofillName",
|
"nameResourceKey": "blockSafariAutofillName",
|
||||||
"descriptionResourceKey": "blockSafariAutofillDescription",
|
"descriptionResourceKey": "blockSafariAutofillDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 16,
|
"category": 18,
|
||||||
"nameResourceKey": "blockCameraNameMacOS",
|
"nameResourceKey": "blockCameraNameMacOS",
|
||||||
"descriptionResourceKey": "blockCameraDescriptionMacOS",
|
"descriptionResourceKey": "blockCameraDescriptionMacOS",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -43,7 +43,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 16,
|
"category": 18,
|
||||||
"nameResourceKey": "blockITunesMusicServiceNameMacOS",
|
"nameResourceKey": "blockITunesMusicServiceNameMacOS",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -59,7 +59,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 16,
|
"category": 18,
|
||||||
"nameResourceKey": "blockSpotlightInternetResultsNameMacOS",
|
"nameResourceKey": "blockSpotlightInternetResultsNameMacOS",
|
||||||
"descriptionResourceKey": "blockSpotlightInternetResultsDescription",
|
"descriptionResourceKey": "blockSpotlightInternetResultsDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -76,7 +76,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 16,
|
"category": 18,
|
||||||
"nameResourceKey": "blockITunesFileSharingName",
|
"nameResourceKey": "blockITunesFileSharingName",
|
||||||
"descriptionResourceKey": "blockITunesFileSharingDescription",
|
"descriptionResourceKey": "blockITunesFileSharingDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|||||||
@@ -0,0 +1,146 @@
|
|||||||
|
{
|
||||||
|
"cameras_windows10devicefirmwareconfigurationinterface": [
|
||||||
|
{
|
||||||
|
"dataType": 16,
|
||||||
|
"category": 19,
|
||||||
|
"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": 108,
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"dataType": 10,
|
||||||
|
"category": 19,
|
||||||
|
"nameResourceKey": "dfciGranularSettingsWarningInfoBox",
|
||||||
|
"childSettings": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"options": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"booleanActions": 0,
|
||||||
|
"policyType": 108,
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"dataType": 16,
|
||||||
|
"category": 19,
|
||||||
|
"nameResourceKey": "frontCamerasName",
|
||||||
|
"descriptionResourceKey": "frontCamerasDescription",
|
||||||
|
"childSettings": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"options": [
|
||||||
|
{
|
||||||
|
"nameResourceKey": "notConfigured",
|
||||||
|
"value": "notConfigured",
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"nameResourceKey": "enabledOption",
|
||||||
|
"value": "enabled",
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"nameResourceKey": "disabledOption",
|
||||||
|
"value": "disabled",
|
||||||
|
"enabled": true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"entityKey": "frontCamera",
|
||||||
|
"booleanActions": 0,
|
||||||
|
"defaultValue": "notConfigured",
|
||||||
|
"unconfiguredValue": "notConfigured",
|
||||||
|
"policyType": 108,
|
||||||
|
"enabled": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"dataType": 16,
|
||||||
|
"category": 19,
|
||||||
|
"nameResourceKey": "rearCamerasName",
|
||||||
|
"descriptionResourceKey": "rearCamerasDescription",
|
||||||
|
"childSettings": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"options": [
|
||||||
|
{
|
||||||
|
"nameResourceKey": "notConfigured",
|
||||||
|
"value": "notConfigured",
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"nameResourceKey": "enabledOption",
|
||||||
|
"value": "enabled",
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"nameResourceKey": "disabledOption",
|
||||||
|
"value": "disabled",
|
||||||
|
"enabled": true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"entityKey": "rearCamera",
|
||||||
|
"booleanActions": 0,
|
||||||
|
"defaultValue": "notConfigured",
|
||||||
|
"unconfiguredValue": "notConfigured",
|
||||||
|
"policyType": 108,
|
||||||
|
"enabled": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"dataType": 16,
|
||||||
|
"category": 19,
|
||||||
|
"nameResourceKey": "infraredCamerasName",
|
||||||
|
"descriptionResourceKey": "infraredCamerasDescription",
|
||||||
|
"childSettings": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"options": [
|
||||||
|
{
|
||||||
|
"nameResourceKey": "notConfigured",
|
||||||
|
"value": "notConfigured",
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"nameResourceKey": "enabledOption",
|
||||||
|
"value": "enabled",
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"nameResourceKey": "disabledOption",
|
||||||
|
"value": "disabled",
|
||||||
|
"enabled": true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"entityKey": "infraredCamera",
|
||||||
|
"booleanActions": 0,
|
||||||
|
"defaultValue": "notConfigured",
|
||||||
|
"unconfiguredValue": "notConfigured",
|
||||||
|
"policyType": 108,
|
||||||
|
"enabled": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"cellular_windows8general": {
|
"cellular_windows8general": {
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 17,
|
"category": 20,
|
||||||
"nameResourceKey": "blockDataRoamingName",
|
"nameResourceKey": "blockDataRoamingName",
|
||||||
"descriptionResourceKey": "blockDataRoamingDescription",
|
"descriptionResourceKey": "blockDataRoamingDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
"cloudandstorage_androidgeneral": [
|
"cloudandstorage_androidgeneral": [
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 18,
|
"category": 21,
|
||||||
"nameResourceKey": "blockGoogleBackupName",
|
"nameResourceKey": "blockGoogleBackupName",
|
||||||
"descriptionResourceKey": "blockGoogleBackupDescription",
|
"descriptionResourceKey": "blockGoogleBackupDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -19,7 +19,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 18,
|
"category": 21,
|
||||||
"nameResourceKey": "blockGoogleAccountAutoSyncName",
|
"nameResourceKey": "blockGoogleAccountAutoSyncName",
|
||||||
"descriptionResourceKey": "blockGoogleAccountAutoSyncDescription",
|
"descriptionResourceKey": "blockGoogleAccountAutoSyncDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -36,7 +36,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 18,
|
"category": 21,
|
||||||
"nameResourceKey": "knoxBlockRemovableStorageName",
|
"nameResourceKey": "knoxBlockRemovableStorageName",
|
||||||
"descriptionResourceKey": "BlockRemovableStorageAndroidDescription",
|
"descriptionResourceKey": "BlockRemovableStorageAndroidDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -53,7 +53,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 18,
|
"category": 21,
|
||||||
"nameResourceKey": "knoxRequireEncryptionOnRemovableStorageName",
|
"nameResourceKey": "knoxRequireEncryptionOnRemovableStorageName",
|
||||||
"descriptionResourceKey": "knoxRequireEncryptionOnRemovableStorageDescription",
|
"descriptionResourceKey": "knoxRequireEncryptionOnRemovableStorageDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|||||||
@@ -4,13 +4,13 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": true,
|
"showAsSectionHeader": true,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 18,
|
"category": 21,
|
||||||
"nameResourceKey": "allEnrollmentTypesHeaderName",
|
"nameResourceKey": "allEnrollmentTypesHeaderName",
|
||||||
"descriptionResourceKey": "allEnrollmentTypesHeaderDescription",
|
"descriptionResourceKey": "allEnrollmentTypesHeaderDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 18,
|
"category": 21,
|
||||||
"nameResourceKey": "requireEncryptedBackupName",
|
"nameResourceKey": "requireEncryptedBackupName",
|
||||||
"descriptionResourceKey": "requireEncryptedBackupDescription",
|
"descriptionResourceKey": "requireEncryptedBackupDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -27,7 +27,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 18,
|
"category": 21,
|
||||||
"nameResourceKey": "blockManagedAppsCloudSyncName",
|
"nameResourceKey": "blockManagedAppsCloudSyncName",
|
||||||
"descriptionResourceKey": "blockManagedAppsCloudSyncDescription",
|
"descriptionResourceKey": "blockManagedAppsCloudSyncDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -44,7 +44,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 18,
|
"category": 21,
|
||||||
"nameResourceKey": "blockEnterpriseBookBackupName",
|
"nameResourceKey": "blockEnterpriseBookBackupName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -60,7 +60,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 18,
|
"category": 21,
|
||||||
"nameResourceKey": "blockEnterpriseBookMetadataSyncName",
|
"nameResourceKey": "blockEnterpriseBookMetadataSyncName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -86,13 +86,13 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": true,
|
"showAsSectionHeader": true,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 18,
|
"category": 21,
|
||||||
"nameResourceKey": "deviceEnrollmentAndAutomatedDeviceEnrollmentHeaderName",
|
"nameResourceKey": "deviceEnrollmentAndAutomatedDeviceEnrollmentHeaderName",
|
||||||
"descriptionResourceKey": "deviceEnrollmentAndAutomatedDeviceEnrollmentHeaderDescription",
|
"descriptionResourceKey": "deviceEnrollmentAndAutomatedDeviceEnrollmentHeaderDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 18,
|
"category": 21,
|
||||||
"nameResourceKey": "blockICloudPhotoStreamSyncName",
|
"nameResourceKey": "blockICloudPhotoStreamSyncName",
|
||||||
"descriptionResourceKey": "blockICloudPhotoStreamSyncDescription",
|
"descriptionResourceKey": "blockICloudPhotoStreamSyncDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -109,7 +109,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 18,
|
"category": 21,
|
||||||
"nameResourceKey": "blockICloudPhotoLibraryName",
|
"nameResourceKey": "blockICloudPhotoLibraryName",
|
||||||
"descriptionResourceKey": "blockICloudPhotoLibraryDescription",
|
"descriptionResourceKey": "blockICloudPhotoLibraryDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -126,7 +126,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 18,
|
"category": 21,
|
||||||
"nameResourceKey": "blockSharedPhotoStreamName",
|
"nameResourceKey": "blockSharedPhotoStreamName",
|
||||||
"descriptionResourceKey": "blockSharedPhotoStreamDescription",
|
"descriptionResourceKey": "blockSharedPhotoStreamDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -143,7 +143,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 18,
|
"category": 21,
|
||||||
"nameResourceKey": "blockIosActivityContinuationName",
|
"nameResourceKey": "blockIosActivityContinuationName",
|
||||||
"descriptionResourceKey": "blockIosActivityContinuationDescription",
|
"descriptionResourceKey": "blockIosActivityContinuationDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -170,13 +170,13 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": true,
|
"showAsSectionHeader": true,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 18,
|
"category": 21,
|
||||||
"nameResourceKey": "automatedDeviceEnrollmentHeaderName",
|
"nameResourceKey": "automatedDeviceEnrollmentHeaderName",
|
||||||
"descriptionResourceKey": "automatedDeviceEnrollmentHeaderDescription",
|
"descriptionResourceKey": "automatedDeviceEnrollmentHeaderDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 18,
|
"category": 21,
|
||||||
"nameResourceKey": "blockICloudBackupName",
|
"nameResourceKey": "blockICloudBackupName",
|
||||||
"descriptionResourceKey": "blockICloudBackupDescription",
|
"descriptionResourceKey": "blockICloudBackupDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -193,7 +193,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 18,
|
"category": 21,
|
||||||
"nameResourceKey": "blockIosICloudDocumentSyncName",
|
"nameResourceKey": "blockIosICloudDocumentSyncName",
|
||||||
"descriptionResourceKey": "blockIosICloudDocumentSyncDescription",
|
"descriptionResourceKey": "blockIosICloudDocumentSyncDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -210,7 +210,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 18,
|
"category": 21,
|
||||||
"nameResourceKey": "blockIosKeychainCloudSyncName",
|
"nameResourceKey": "blockIosKeychainCloudSyncName",
|
||||||
"descriptionResourceKey": "blockIosKeychainCloudSyncDescription",
|
"descriptionResourceKey": "blockIosKeychainCloudSyncDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -227,7 +227,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 18,
|
"category": 21,
|
||||||
"nameResourceKey": "blockIosICloudPrivateRelayName",
|
"nameResourceKey": "blockIosICloudPrivateRelayName",
|
||||||
"descriptionResourceKey": "blockIosICloudPrivateRelayDescription",
|
"descriptionResourceKey": "blockIosICloudPrivateRelayDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|||||||
@@ -4,13 +4,13 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": true,
|
"showAsSectionHeader": true,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 18,
|
"category": 21,
|
||||||
"nameResourceKey": "allEnrollmentTypesHeaderNameMac",
|
"nameResourceKey": "allEnrollmentTypesHeaderNameMac",
|
||||||
"descriptionResourceKey": "allEnrollmentTypesHeaderDescriptionMac",
|
"descriptionResourceKey": "allEnrollmentTypesHeaderDescriptionMac",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 18,
|
"category": 21,
|
||||||
"nameResourceKey": "blockKeychainCloudSyncName",
|
"nameResourceKey": "blockKeychainCloudSyncName",
|
||||||
"descriptionResourceKey": "blockKeychainCloudSyncDescription",
|
"descriptionResourceKey": "blockKeychainCloudSyncDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -27,7 +27,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 18,
|
"category": 21,
|
||||||
"nameResourceKey": "blockICloudDesktopAndDocumentsName",
|
"nameResourceKey": "blockICloudDesktopAndDocumentsName",
|
||||||
"descriptionResourceKey": "blockICloudDesktopAndDocumentsDescription",
|
"descriptionResourceKey": "blockICloudDesktopAndDocumentsDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -44,7 +44,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 18,
|
"category": 21,
|
||||||
"nameResourceKey": "blockICloudDocumentSyncName",
|
"nameResourceKey": "blockICloudDocumentSyncName",
|
||||||
"descriptionResourceKey": "blockICloudDocumentSyncDescription",
|
"descriptionResourceKey": "blockICloudDocumentSyncDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -61,7 +61,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 18,
|
"category": 21,
|
||||||
"nameResourceKey": "blockICloudMailName",
|
"nameResourceKey": "blockICloudMailName",
|
||||||
"descriptionResourceKey": "blockICloudMailDescription",
|
"descriptionResourceKey": "blockICloudMailDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -78,7 +78,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 18,
|
"category": 21,
|
||||||
"nameResourceKey": "blockICloudAddressBookName",
|
"nameResourceKey": "blockICloudAddressBookName",
|
||||||
"descriptionResourceKey": "blockICloudAddressBookDescription",
|
"descriptionResourceKey": "blockICloudAddressBookDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -95,7 +95,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 18,
|
"category": 21,
|
||||||
"nameResourceKey": "blockICloudCalendarName",
|
"nameResourceKey": "blockICloudCalendarName",
|
||||||
"descriptionResourceKey": "blockICloudCalendarDescription",
|
"descriptionResourceKey": "blockICloudCalendarDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -112,7 +112,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 18,
|
"category": 21,
|
||||||
"nameResourceKey": "blockICloudRemindersName",
|
"nameResourceKey": "blockICloudRemindersName",
|
||||||
"descriptionResourceKey": "blockICloudRemindersDescription",
|
"descriptionResourceKey": "blockICloudRemindersDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -129,7 +129,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 18,
|
"category": 21,
|
||||||
"nameResourceKey": "blockICloudBookmarksName",
|
"nameResourceKey": "blockICloudBookmarksName",
|
||||||
"descriptionResourceKey": "blockICloudBookmarksDescription",
|
"descriptionResourceKey": "blockICloudBookmarksDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -146,7 +146,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 18,
|
"category": 21,
|
||||||
"nameResourceKey": "blockICloudNotesName",
|
"nameResourceKey": "blockICloudNotesName",
|
||||||
"descriptionResourceKey": "blockICloudNotesDescription",
|
"descriptionResourceKey": "blockICloudNotesDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -163,7 +163,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 18,
|
"category": 21,
|
||||||
"nameResourceKey": "MacBlockICloudPhotoLibraryName",
|
"nameResourceKey": "MacBlockICloudPhotoLibraryName",
|
||||||
"descriptionResourceKey": "blockICloudPhotoLibraryDescription",
|
"descriptionResourceKey": "blockICloudPhotoLibraryDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -180,7 +180,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 18,
|
"category": 21,
|
||||||
"nameResourceKey": "blockMacActivityContinuationName",
|
"nameResourceKey": "blockMacActivityContinuationName",
|
||||||
"descriptionResourceKey": "blockMacActivityContinuationDescription",
|
"descriptionResourceKey": "blockMacActivityContinuationDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -207,13 +207,13 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": true,
|
"showAsSectionHeader": true,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 18,
|
"category": 21,
|
||||||
"nameResourceKey": "userApprovedAndAutomatedDeviceEnrollmentHeaderNameMac",
|
"nameResourceKey": "userApprovedAndAutomatedDeviceEnrollmentHeaderNameMac",
|
||||||
"descriptionResourceKey": "userApprovedAndAutomatedDeviceEnrollmentHeaderDescriptionMac",
|
"descriptionResourceKey": "userApprovedAndAutomatedDeviceEnrollmentHeaderDescriptionMac",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 18,
|
"category": 21,
|
||||||
"nameResourceKey": "blockMacICloudPrivateRelayName",
|
"nameResourceKey": "blockMacICloudPrivateRelayName",
|
||||||
"descriptionResourceKey": "blockMacICloudPrivateRelayDescription",
|
"descriptionResourceKey": "blockMacICloudPrivateRelayDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
"cloudandstorage_windows10general": [
|
"cloudandstorage_windows10general": [
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 18,
|
"category": 21,
|
||||||
"nameResourceKey": "blockMicrosoftAccountName",
|
"nameResourceKey": "blockMicrosoftAccountName",
|
||||||
"descriptionResourceKey": "blockMicrosoftAccountDescription",
|
"descriptionResourceKey": "blockMicrosoftAccountDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -19,7 +19,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 18,
|
"category": 21,
|
||||||
"nameResourceKey": "blockNonMicrosoftAccountName",
|
"nameResourceKey": "blockNonMicrosoftAccountName",
|
||||||
"descriptionResourceKey": "blockNonMicrosoftAccountDescription",
|
"descriptionResourceKey": "blockNonMicrosoftAccountDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -36,7 +36,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 18,
|
"category": 21,
|
||||||
"nameResourceKey": "blockSettingsSynchronizationForMicrosoftAccountName",
|
"nameResourceKey": "blockSettingsSynchronizationForMicrosoftAccountName",
|
||||||
"descriptionResourceKey": "blockSettingsSynchronizationForMicrosoftAccountDescription",
|
"descriptionResourceKey": "blockSettingsSynchronizationForMicrosoftAccountDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -53,7 +53,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 18,
|
"category": 21,
|
||||||
"nameResourceKey": "AccountsSignInAssistantSettingsName",
|
"nameResourceKey": "AccountsSignInAssistantSettingsName",
|
||||||
"descriptionResourceKey": "AccountsSignInAssistantSettingsDescription",
|
"descriptionResourceKey": "AccountsSignInAssistantSettingsDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
"cloudandstorage_windows8general": [
|
"cloudandstorage_windows8general": [
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 18,
|
"category": 21,
|
||||||
"nameResourceKey": "workFoldersURLName",
|
"nameResourceKey": "workFoldersURLName",
|
||||||
"descriptionResourceKey": "workFoldersURLDescription",
|
"descriptionResourceKey": "workFoldersURLDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -18,7 +18,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 18,
|
"category": 21,
|
||||||
"nameResourceKey": "microsoftAccountOptionalForMailName",
|
"nameResourceKey": "microsoftAccountOptionalForMailName",
|
||||||
"descriptionResourceKey": "microsoftAccountOptionalForMailDescription",
|
"descriptionResourceKey": "microsoftAccountOptionalForMailDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
"cloudprint_windows10general": [
|
"cloudprint_windows10general": [
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 19,
|
"category": 22,
|
||||||
"nameResourceKey": "cloudPrintDiscoveryEndPointName",
|
"nameResourceKey": "cloudPrintDiscoveryEndPointName",
|
||||||
"descriptionResourceKey": "cloudPrintDiscoveryEndPointDescription",
|
"descriptionResourceKey": "cloudPrintDiscoveryEndPointDescription",
|
||||||
"emptyValueResourceKey": "cloudPrintDiscoveryEndPointExample",
|
"emptyValueResourceKey": "cloudPrintDiscoveryEndPointExample",
|
||||||
@@ -21,7 +21,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 19,
|
"category": 22,
|
||||||
"nameResourceKey": "cloudPrintOAuthAuthorityName",
|
"nameResourceKey": "cloudPrintOAuthAuthorityName",
|
||||||
"descriptionResourceKey": "cloudPrintOAuthAuthorityDescription",
|
"descriptionResourceKey": "cloudPrintOAuthAuthorityDescription",
|
||||||
"emptyValueResourceKey": "cloudPrintOAuthAuthorityExample",
|
"emptyValueResourceKey": "cloudPrintOAuthAuthorityExample",
|
||||||
@@ -40,7 +40,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 19,
|
"category": 22,
|
||||||
"nameResourceKey": "cloudPrintOAuthClientIdName",
|
"nameResourceKey": "cloudPrintOAuthClientIdName",
|
||||||
"descriptionResourceKey": "cloudPrintOAuthClientIdDescription",
|
"descriptionResourceKey": "cloudPrintOAuthClientIdDescription",
|
||||||
"emptyValueResourceKey": "cloudPrintOAuthClientIdExample",
|
"emptyValueResourceKey": "cloudPrintOAuthClientIdExample",
|
||||||
@@ -59,7 +59,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 19,
|
"category": 22,
|
||||||
"nameResourceKey": "cloudPrintResourceIdName",
|
"nameResourceKey": "cloudPrintResourceIdName",
|
||||||
"descriptionResourceKey": "cloudPrintResourceIdDescription",
|
"descriptionResourceKey": "cloudPrintResourceIdDescription",
|
||||||
"emptyValueResourceKey": "cloudPrintResourceIdExample",
|
"emptyValueResourceKey": "cloudPrintResourceIdExample",
|
||||||
@@ -78,7 +78,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 19,
|
"category": 22,
|
||||||
"nameResourceKey": "cloudPrintDiscoveryMaxLimitName",
|
"nameResourceKey": "cloudPrintDiscoveryMaxLimitName",
|
||||||
"descriptionResourceKey": "cloudPrintDiscoveryMaxLimitDescription",
|
"descriptionResourceKey": "cloudPrintDiscoveryMaxLimitDescription",
|
||||||
"emptyValueResourceKey": "cloudPrintDiscoveryMaxLimitExample",
|
"emptyValueResourceKey": "cloudPrintDiscoveryMaxLimitExample",
|
||||||
@@ -95,7 +95,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 19,
|
"category": 22,
|
||||||
"nameResourceKey": "mopriaDiscoveryResourceIdName",
|
"nameResourceKey": "mopriaDiscoveryResourceIdName",
|
||||||
"descriptionResourceKey": "mopriaDiscoveryResourceIdDescription",
|
"descriptionResourceKey": "mopriaDiscoveryResourceIdDescription",
|
||||||
"emptyValueResourceKey": "mopriaDiscoveryResourceIdExample",
|
"emptyValueResourceKey": "mopriaDiscoveryResourceIdExample",
|
||||||
|
|||||||
@@ -3,12 +3,12 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 62,
|
"category": 66,
|
||||||
"nameResourceKey": "complianceEmailProfileHeader",
|
"nameResourceKey": "complianceEmailProfileHeader",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 62,
|
"category": 66,
|
||||||
"nameResourceKey": "complianceEmailProfileRequired",
|
"nameResourceKey": "complianceEmailProfileRequired",
|
||||||
"descriptionResourceKey": "complianceEmailProfileRequiredDescription",
|
"descriptionResourceKey": "complianceEmailProfileRequiredDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|||||||
@@ -4,13 +4,13 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": true,
|
"showAsSectionHeader": true,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 20,
|
"category": 23,
|
||||||
"nameResourceKey": "allEnrollmentTypesHeaderName",
|
"nameResourceKey": "allEnrollmentTypesHeaderName",
|
||||||
"descriptionResourceKey": "allEnrollmentTypesHeaderDescription",
|
"descriptionResourceKey": "allEnrollmentTypesHeaderDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 20,
|
"category": 23,
|
||||||
"nameResourceKey": "forceWatchWristDetectionName",
|
"nameResourceKey": "forceWatchWristDetectionName",
|
||||||
"descriptionResourceKey": "forceWatchWristDetectionDescription",
|
"descriptionResourceKey": "forceWatchWristDetectionDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -37,13 +37,13 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": true,
|
"showAsSectionHeader": true,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 20,
|
"category": 23,
|
||||||
"nameResourceKey": "deviceEnrollmentAndAutomatedDeviceEnrollmentHeaderName",
|
"nameResourceKey": "deviceEnrollmentAndAutomatedDeviceEnrollmentHeaderName",
|
||||||
"descriptionResourceKey": "deviceEnrollmentAndAutomatedDeviceEnrollmentHeaderDescription",
|
"descriptionResourceKey": "deviceEnrollmentAndAutomatedDeviceEnrollmentHeaderDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 20,
|
"category": 23,
|
||||||
"nameResourceKey": "forceAirPlayOutgoingRequestsPairingPasswordName",
|
"nameResourceKey": "forceAirPlayOutgoingRequestsPairingPasswordName",
|
||||||
"descriptionResourceKey": "forceAirPlayOutgoingRequestsPairingPasswordDescription",
|
"descriptionResourceKey": "forceAirPlayOutgoingRequestsPairingPasswordDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -60,7 +60,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 20,
|
"category": 23,
|
||||||
"nameResourceKey": "autoUnlockBlockedName",
|
"nameResourceKey": "autoUnlockBlockedName",
|
||||||
"descriptionResourceKey": "autoUnlockBlockedDescription",
|
"descriptionResourceKey": "autoUnlockBlockedDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -87,13 +87,13 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": true,
|
"showAsSectionHeader": true,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 20,
|
"category": 23,
|
||||||
"nameResourceKey": "automatedDeviceEnrollmentHeaderName",
|
"nameResourceKey": "automatedDeviceEnrollmentHeaderName",
|
||||||
"descriptionResourceKey": "automatedDeviceEnrollmentHeaderDescription",
|
"descriptionResourceKey": "automatedDeviceEnrollmentHeaderDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 20,
|
"category": 23,
|
||||||
"nameResourceKey": "blockAirDropName",
|
"nameResourceKey": "blockAirDropName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -109,7 +109,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 20,
|
"category": 23,
|
||||||
"nameResourceKey": "blockAppleWatchPairingName",
|
"nameResourceKey": "blockAppleWatchPairingName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -125,7 +125,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 20,
|
"category": 23,
|
||||||
"nameResourceKey": "blockBluetoothModificationName",
|
"nameResourceKey": "blockBluetoothModificationName",
|
||||||
"descriptionResourceKey": "blockBluetoothModificationDescription",
|
"descriptionResourceKey": "blockBluetoothModificationDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -142,7 +142,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 20,
|
"category": 23,
|
||||||
"nameResourceKey": "blockHostPairingName",
|
"nameResourceKey": "blockHostPairingName",
|
||||||
"descriptionResourceKey": "blockHostPairingDescription",
|
"descriptionResourceKey": "blockHostPairingDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -159,12 +159,12 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 20,
|
"category": 23,
|
||||||
"nameResourceKey": "blockAirPrintNameIOS",
|
"nameResourceKey": "blockAirPrintNameIOS",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 20,
|
"category": 23,
|
||||||
"nameResourceKey": "blockAirPrintCredentialsStorageName",
|
"nameResourceKey": "blockAirPrintCredentialsStorageName",
|
||||||
"descriptionResourceKey": "blockAirPrintCredentialsStorageDescription",
|
"descriptionResourceKey": "blockAirPrintCredentialsStorageDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -181,7 +181,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 20,
|
"category": 23,
|
||||||
"nameResourceKey": "forceAirPrintTrustedTLSNameIOS",
|
"nameResourceKey": "forceAirPrintTrustedTLSNameIOS",
|
||||||
"descriptionResourceKey": "forceAirPrintTrustedTLSDescriptionIOS",
|
"descriptionResourceKey": "forceAirPrintTrustedTLSDescriptionIOS",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -198,7 +198,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 20,
|
"category": 23,
|
||||||
"nameResourceKey": "blockAirPrintiBeaconDiscoveryNameIOS",
|
"nameResourceKey": "blockAirPrintiBeaconDiscoveryNameIOS",
|
||||||
"descriptionResourceKey": "blockAirPrintiBeaconDiscoveryDescription",
|
"descriptionResourceKey": "blockAirPrintiBeaconDiscoveryDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -225,7 +225,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 20,
|
"category": 23,
|
||||||
"nameResourceKey": "blockProximitySetupToNewDeviceName",
|
"nameResourceKey": "blockProximitySetupToNewDeviceName",
|
||||||
"descriptionResourceKey": "blockProximitySetupToNewDeviceDescription",
|
"descriptionResourceKey": "blockProximitySetupToNewDeviceDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -242,7 +242,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 20,
|
"category": 23,
|
||||||
"nameResourceKey": "blockFilesUsbDriveAccessName",
|
"nameResourceKey": "blockFilesUsbDriveAccessName",
|
||||||
"descriptionResourceKey": "blockFilesUsbDriveAccessDescription",
|
"descriptionResourceKey": "blockFilesUsbDriveAccessDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -259,7 +259,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 20,
|
"category": 23,
|
||||||
"nameResourceKey": "nfcBlockedName",
|
"nameResourceKey": "nfcBlockedName",
|
||||||
"descriptionResourceKey": "nfcBlockedDescription",
|
"descriptionResourceKey": "nfcBlockedDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -276,7 +276,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 20,
|
"category": 23,
|
||||||
"nameResourceKey": "unpairedExternalBootToRecoveryAllowedName",
|
"nameResourceKey": "unpairedExternalBootToRecoveryAllowedName",
|
||||||
"descriptionResourceKey": "unpairedExternalBootToRecoveryAllowedDescription",
|
"descriptionResourceKey": "unpairedExternalBootToRecoveryAllowedDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|||||||
@@ -3,13 +3,13 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": true,
|
"showAsSectionHeader": true,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 20,
|
"category": 23,
|
||||||
"nameResourceKey": "allEnrollmentTypesHeaderNameMac",
|
"nameResourceKey": "allEnrollmentTypesHeaderNameMac",
|
||||||
"descriptionResourceKey": "allEnrollmentTypesHeaderDescriptionMac",
|
"descriptionResourceKey": "allEnrollmentTypesHeaderDescriptionMac",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 20,
|
"category": 23,
|
||||||
"nameResourceKey": "blockAirDropNameMacOS",
|
"nameResourceKey": "blockAirDropNameMacOS",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -25,7 +25,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 20,
|
"category": 23,
|
||||||
"nameResourceKey": "blockAppleWatchAutoUnlockName",
|
"nameResourceKey": "blockAppleWatchAutoUnlockName",
|
||||||
"descriptionResourceKey": "blockAppleWatchAutoUnlockDescription",
|
"descriptionResourceKey": "blockAppleWatchAutoUnlockDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
"connectivity_androidgeneral": [
|
"connectivity_androidgeneral": [
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 21,
|
"category": 24,
|
||||||
"nameResourceKey": "knoxBlockDataRoamingName",
|
"nameResourceKey": "knoxBlockDataRoamingName",
|
||||||
"descriptionResourceKey": "BlockDataRoamingAndroidDescription",
|
"descriptionResourceKey": "BlockDataRoamingAndroidDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -19,7 +19,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 21,
|
"category": 24,
|
||||||
"nameResourceKey": "blockSMSAndMMSName",
|
"nameResourceKey": "blockSMSAndMMSName",
|
||||||
"descriptionResourceKey": "blockSMSAndMMSAndroidDescription",
|
"descriptionResourceKey": "blockSMSAndMMSAndroidDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -36,7 +36,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 21,
|
"category": 24,
|
||||||
"nameResourceKey": "knoxBlockVoiceDialingName",
|
"nameResourceKey": "knoxBlockVoiceDialingName",
|
||||||
"descriptionResourceKey": "blockVoiceDialingAndroidDescription",
|
"descriptionResourceKey": "blockVoiceDialingAndroidDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -53,7 +53,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 21,
|
"category": 24,
|
||||||
"nameResourceKey": "knoxBlockVoiceRoamingName",
|
"nameResourceKey": "knoxBlockVoiceRoamingName",
|
||||||
"descriptionResourceKey": "blockVoiceRoamingAndroidDescription",
|
"descriptionResourceKey": "blockVoiceRoamingAndroidDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -70,7 +70,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 21,
|
"category": 24,
|
||||||
"nameResourceKey": "knoxBlockBluetoothName",
|
"nameResourceKey": "knoxBlockBluetoothName",
|
||||||
"descriptionResourceKey": "blockBluetoothAndroidDescription",
|
"descriptionResourceKey": "blockBluetoothAndroidDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -87,7 +87,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 21,
|
"category": 24,
|
||||||
"nameResourceKey": "knoxBlockNFCName",
|
"nameResourceKey": "knoxBlockNFCName",
|
||||||
"descriptionResourceKey": "blockNFCAndroidDescription",
|
"descriptionResourceKey": "blockNFCAndroidDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -104,7 +104,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 21,
|
"category": 24,
|
||||||
"nameResourceKey": "knoxBlockWiFiName",
|
"nameResourceKey": "knoxBlockWiFiName",
|
||||||
"descriptionResourceKey": "blockWiFiAndroidDescription",
|
"descriptionResourceKey": "blockWiFiAndroidDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -121,7 +121,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 21,
|
"category": 24,
|
||||||
"nameResourceKey": "knoxBlockWiFiTetheringName",
|
"nameResourceKey": "knoxBlockWiFiTetheringName",
|
||||||
"descriptionResourceKey": "blockWiFiTetheringAndroidDescription",
|
"descriptionResourceKey": "blockWiFiTetheringAndroidDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
"connectivity_windows10general": [
|
"connectivity_windows10general": [
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 21,
|
"category": 24,
|
||||||
"nameResourceKey": "cellularDataName",
|
"nameResourceKey": "cellularDataName",
|
||||||
"descriptionResourceKey": "cellularDataDescription",
|
"descriptionResourceKey": "cellularDataDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -34,7 +34,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 21,
|
"category": 24,
|
||||||
"nameResourceKey": "blockDataRoamingName",
|
"nameResourceKey": "blockDataRoamingName",
|
||||||
"descriptionResourceKey": "blockDataRoamingDescription",
|
"descriptionResourceKey": "blockDataRoamingDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -51,7 +51,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 21,
|
"category": 24,
|
||||||
"nameResourceKey": "vpnOverCellularName",
|
"nameResourceKey": "vpnOverCellularName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -68,7 +68,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 21,
|
"category": 24,
|
||||||
"nameResourceKey": "vpnRoamingOverCellularName",
|
"nameResourceKey": "vpnRoamingOverCellularName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -85,7 +85,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 21,
|
"category": 24,
|
||||||
"nameResourceKey": "blockConnectedDevicesServiceName",
|
"nameResourceKey": "blockConnectedDevicesServiceName",
|
||||||
"descriptionResourceKey": "blockConnectedDevicesServiceDescription",
|
"descriptionResourceKey": "blockConnectedDevicesServiceDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -102,7 +102,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 21,
|
"category": 24,
|
||||||
"nameResourceKey": "blockNFCName",
|
"nameResourceKey": "blockNFCName",
|
||||||
"descriptionResourceKey": "blockNFCDescription",
|
"descriptionResourceKey": "blockNFCDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -119,7 +119,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 21,
|
"category": 24,
|
||||||
"nameResourceKey": "blockWiFiName",
|
"nameResourceKey": "blockWiFiName",
|
||||||
"descriptionResourceKey": "blockWiFiDescription",
|
"descriptionResourceKey": "blockWiFiDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -136,7 +136,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 21,
|
"category": 24,
|
||||||
"nameResourceKey": "blockWiFiHotspotAutoConnectName",
|
"nameResourceKey": "blockWiFiHotspotAutoConnectName",
|
||||||
"descriptionResourceKey": "blockWiFiHotspotAutoConnectDescription",
|
"descriptionResourceKey": "blockWiFiHotspotAutoConnectDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -153,7 +153,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 21,
|
"category": 24,
|
||||||
"nameResourceKey": "blockManualWifiConfigurationName",
|
"nameResourceKey": "blockManualWifiConfigurationName",
|
||||||
"descriptionResourceKey": "blockManualWifiConfigurationDescription",
|
"descriptionResourceKey": "blockManualWifiConfigurationDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -170,7 +170,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 21,
|
"category": 24,
|
||||||
"nameResourceKey": "wiFiScanIntervalName",
|
"nameResourceKey": "wiFiScanIntervalName",
|
||||||
"descriptionResourceKey": "wiFiScanIntervalDescription",
|
"descriptionResourceKey": "wiFiScanIntervalDescription",
|
||||||
"emptyValueResourceKey": "wifiScanIntervalPlaceholder",
|
"emptyValueResourceKey": "wifiScanIntervalPlaceholder",
|
||||||
@@ -189,7 +189,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 21,
|
"category": 24,
|
||||||
"nameResourceKey": "win10BluetoothHeader",
|
"nameResourceKey": "win10BluetoothHeader",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -203,7 +203,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 21,
|
"category": 24,
|
||||||
"nameResourceKey": "blockBluetoothName",
|
"nameResourceKey": "blockBluetoothName",
|
||||||
"descriptionResourceKey": "blockBluetoothDescription",
|
"descriptionResourceKey": "blockBluetoothDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -220,7 +220,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 21,
|
"category": 24,
|
||||||
"nameResourceKey": "blockBluetoothDiscoverableModeName",
|
"nameResourceKey": "blockBluetoothDiscoverableModeName",
|
||||||
"descriptionResourceKey": "blockBluetoothDiscoverableModeDescription",
|
"descriptionResourceKey": "blockBluetoothDiscoverableModeDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -237,7 +237,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 21,
|
"category": 24,
|
||||||
"nameResourceKey": "blockBluetoothPrepairingName",
|
"nameResourceKey": "blockBluetoothPrepairingName",
|
||||||
"descriptionResourceKey": "blockBluetoothPrepairingDescription",
|
"descriptionResourceKey": "blockBluetoothPrepairingDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -254,7 +254,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 21,
|
"category": 24,
|
||||||
"nameResourceKey": "blockBluetoothAdvertisingName",
|
"nameResourceKey": "blockBluetoothAdvertisingName",
|
||||||
"descriptionResourceKey": "blockBluetoothAdvertisingDescription",
|
"descriptionResourceKey": "blockBluetoothAdvertisingDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -271,7 +271,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 21,
|
"category": 24,
|
||||||
"nameResourceKey": "bluetoothBlockPromptedProximalConnectionsName",
|
"nameResourceKey": "bluetoothBlockPromptedProximalConnectionsName",
|
||||||
"descriptionResourceKey": "bluetoothBlockPromptedProximalConnectionsDescription",
|
"descriptionResourceKey": "bluetoothBlockPromptedProximalConnectionsDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -292,7 +292,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 21,
|
"category": 24,
|
||||||
"nameResourceKey": "bluetoothAllowedServicesName",
|
"nameResourceKey": "bluetoothAllowedServicesName",
|
||||||
"emptyValueResourceKey": "guidExample",
|
"emptyValueResourceKey": "guidExample",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -309,7 +309,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 21,
|
"dataType": 21,
|
||||||
"category": 21,
|
"category": 24,
|
||||||
"nameResourceKey": "bluetoothAllowedServicesName",
|
"nameResourceKey": "bluetoothAllowedServicesName",
|
||||||
"descriptionResourceKey": "bluetoothAllowedServicesDescription",
|
"descriptionResourceKey": "bluetoothAllowedServicesDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
"connectivity_windowsphonegeneral": [
|
"connectivity_windowsphonegeneral": [
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 21,
|
"category": 24,
|
||||||
"nameResourceKey": "blockWiFiName",
|
"nameResourceKey": "blockWiFiName",
|
||||||
"descriptionResourceKey": "blockWiFiDescription",
|
"descriptionResourceKey": "blockWiFiDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -19,7 +19,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 21,
|
"category": 24,
|
||||||
"nameResourceKey": "blockWiFiTetheringName",
|
"nameResourceKey": "blockWiFiTetheringName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -36,7 +36,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 21,
|
"category": 24,
|
||||||
"nameResourceKey": "blockWiFiHotspotAutoConnectName",
|
"nameResourceKey": "blockWiFiHotspotAutoConnectName",
|
||||||
"descriptionResourceKey": "blockWiFiHotspotAutoConnectDescription",
|
"descriptionResourceKey": "blockWiFiHotspotAutoConnectDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -53,7 +53,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 21,
|
"category": 24,
|
||||||
"nameResourceKey": "blockWiFiHotspotReportingName",
|
"nameResourceKey": "blockWiFiHotspotReportingName",
|
||||||
"descriptionResourceKey": "blockWiFiHotspotReportingDescription",
|
"descriptionResourceKey": "blockWiFiHotspotReportingDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -70,7 +70,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 21,
|
"category": 24,
|
||||||
"nameResourceKey": "blockNFCName",
|
"nameResourceKey": "blockNFCName",
|
||||||
"descriptionResourceKey": "blockNFCDescription",
|
"descriptionResourceKey": "blockNFCDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -87,7 +87,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 21,
|
"category": 24,
|
||||||
"nameResourceKey": "blockBluetoothName",
|
"nameResourceKey": "blockBluetoothName",
|
||||||
"descriptionResourceKey": "blockBluetoothDescription",
|
"descriptionResourceKey": "blockBluetoothDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|||||||
@@ -3,19 +3,19 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": true,
|
"showAsSectionHeader": true,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 22,
|
"category": 25,
|
||||||
"nameResourceKey": "allEnrollmentTypesHeaderNameMac",
|
"nameResourceKey": "allEnrollmentTypesHeaderNameMac",
|
||||||
"descriptionResourceKey": "allEnrollmentTypesHeaderDescriptionMac",
|
"descriptionResourceKey": "allEnrollmentTypesHeaderDescriptionMac",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 22,
|
"category": 25,
|
||||||
"nameResourceKey": "contentCachingEnabledName",
|
"nameResourceKey": "contentCachingEnabledName",
|
||||||
"descriptionResourceKey": "contentCachingEnabledDescription",
|
"descriptionResourceKey": "contentCachingEnabledDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 22,
|
"category": 25,
|
||||||
"nameResourceKey": "contentCachingTypeName",
|
"nameResourceKey": "contentCachingTypeName",
|
||||||
"descriptionResourceKey": "contentCachingTypeDescription",
|
"descriptionResourceKey": "contentCachingTypeDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -46,7 +46,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 15,
|
"dataType": 15,
|
||||||
"category": 22,
|
"category": 25,
|
||||||
"nameResourceKey": "contentCachingMaxSizeBytesName",
|
"nameResourceKey": "contentCachingMaxSizeBytesName",
|
||||||
"descriptionResourceKey": "contentCachingMaxSizeBytesDescription",
|
"descriptionResourceKey": "contentCachingMaxSizeBytesDescription",
|
||||||
"emptyValueResourceKey": "contentCachingMaxSizeBytesEmptyValue",
|
"emptyValueResourceKey": "contentCachingMaxSizeBytesEmptyValue",
|
||||||
@@ -64,7 +64,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 22,
|
"category": 25,
|
||||||
"nameResourceKey": "contentCachingDataPathName",
|
"nameResourceKey": "contentCachingDataPathName",
|
||||||
"descriptionResourceKey": "contentCachingDataPathDescription",
|
"descriptionResourceKey": "contentCachingDataPathDescription",
|
||||||
"emptyValueResourceKey": "contentCachingDataPathEmptyValue",
|
"emptyValueResourceKey": "contentCachingDataPathEmptyValue",
|
||||||
@@ -81,7 +81,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 22,
|
"category": 25,
|
||||||
"nameResourceKey": "contentCachingPortName",
|
"nameResourceKey": "contentCachingPortName",
|
||||||
"descriptionResourceKey": "contentCachingPortDescription",
|
"descriptionResourceKey": "contentCachingPortDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -98,13 +98,13 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 22,
|
"category": 25,
|
||||||
"nameResourceKey": "contentCachingDisableConnectionSharingName",
|
"nameResourceKey": "contentCachingDisableConnectionSharingName",
|
||||||
"descriptionResourceKey": "contentCachingDisableConnectionSharingDescription",
|
"descriptionResourceKey": "contentCachingDisableConnectionSharingDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 22,
|
"category": 25,
|
||||||
"nameResourceKey": "contentCachingForceConnectionSharingName",
|
"nameResourceKey": "contentCachingForceConnectionSharingName",
|
||||||
"descriptionResourceKey": "contentCachingForceConnectionSharingDescription",
|
"descriptionResourceKey": "contentCachingForceConnectionSharingDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -129,7 +129,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 22,
|
"category": 25,
|
||||||
"nameResourceKey": "contentCachingLogClientIdentitiesName",
|
"nameResourceKey": "contentCachingLogClientIdentitiesName",
|
||||||
"descriptionResourceKey": "contentCachingLogClientIdentitiesDescription",
|
"descriptionResourceKey": "contentCachingLogClientIdentitiesDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -145,7 +145,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 22,
|
"category": 25,
|
||||||
"nameResourceKey": "contentCachingBlockDeletionName",
|
"nameResourceKey": "contentCachingBlockDeletionName",
|
||||||
"descriptionResourceKey": "contentCachingBlockDeletionDescription",
|
"descriptionResourceKey": "contentCachingBlockDeletionDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -161,7 +161,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 22,
|
"category": 25,
|
||||||
"nameResourceKey": "contentCachingShowAlertsName",
|
"nameResourceKey": "contentCachingShowAlertsName",
|
||||||
"descriptionResourceKey": "contentCachingShowAlertsDescription",
|
"descriptionResourceKey": "contentCachingShowAlertsDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -177,7 +177,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 22,
|
"category": 25,
|
||||||
"nameResourceKey": "contentCachingKeepAwakeName",
|
"nameResourceKey": "contentCachingKeepAwakeName",
|
||||||
"descriptionResourceKey": "contentCachingKeepAwakeDescription",
|
"descriptionResourceKey": "contentCachingKeepAwakeDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -193,7 +193,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 22,
|
"category": 25,
|
||||||
"nameResourceKey": "contentCachingClientPolicyName",
|
"nameResourceKey": "contentCachingClientPolicyName",
|
||||||
"descriptionResourceKey": "contentCachingClientPolicyDescription",
|
"descriptionResourceKey": "contentCachingClientPolicyDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -224,7 +224,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 22,
|
"category": 25,
|
||||||
"nameResourceKey": "iPRangeAddressTypeName",
|
"nameResourceKey": "iPRangeAddressTypeName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -254,7 +254,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 22,
|
"category": 25,
|
||||||
"nameResourceKey": "iPRangeLowerAddressName",
|
"nameResourceKey": "iPRangeLowerAddressName",
|
||||||
"emptyValueResourceKey": "iPRangeLowerAddressEmptyValue",
|
"emptyValueResourceKey": "iPRangeLowerAddressEmptyValue",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -272,7 +272,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 22,
|
"category": 25,
|
||||||
"nameResourceKey": "iPRangeUpperAddressName",
|
"nameResourceKey": "iPRangeUpperAddressName",
|
||||||
"emptyValueResourceKey": "iPRangeUpperAddressEmptyValue",
|
"emptyValueResourceKey": "iPRangeUpperAddressEmptyValue",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -289,7 +289,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 21,
|
"dataType": 21,
|
||||||
"category": 22,
|
"category": 25,
|
||||||
"nameResourceKey": "contentCachingClientListenRangesName",
|
"nameResourceKey": "contentCachingClientListenRangesName",
|
||||||
"descriptionResourceKey": "contentCachingClientListenRangesDescription",
|
"descriptionResourceKey": "contentCachingClientListenRangesDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -315,7 +315,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 22,
|
"category": 25,
|
||||||
"nameResourceKey": "iPRangeAddressTypeName",
|
"nameResourceKey": "iPRangeAddressTypeName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -345,7 +345,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 22,
|
"category": 25,
|
||||||
"nameResourceKey": "iPRangeLowerAddressName",
|
"nameResourceKey": "iPRangeLowerAddressName",
|
||||||
"emptyValueResourceKey": "iPRangeLowerAddressEmptyValue",
|
"emptyValueResourceKey": "iPRangeLowerAddressEmptyValue",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -363,7 +363,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 22,
|
"category": 25,
|
||||||
"nameResourceKey": "iPRangeUpperAddressName",
|
"nameResourceKey": "iPRangeUpperAddressName",
|
||||||
"emptyValueResourceKey": "iPRangeUpperAddressEmptyValue",
|
"emptyValueResourceKey": "iPRangeUpperAddressEmptyValue",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -380,7 +380,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 21,
|
"dataType": 21,
|
||||||
"category": 22,
|
"category": 25,
|
||||||
"nameResourceKey": "contentCachingClientListenRangesName",
|
"nameResourceKey": "contentCachingClientListenRangesName",
|
||||||
"descriptionResourceKey": "contentCachingClientListenRangesDescription",
|
"descriptionResourceKey": "contentCachingClientListenRangesDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -409,7 +409,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 22,
|
"category": 25,
|
||||||
"nameResourceKey": "iPRangeAddressTypeName",
|
"nameResourceKey": "iPRangeAddressTypeName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -439,7 +439,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 22,
|
"category": 25,
|
||||||
"nameResourceKey": "iPRangeLowerAddressName",
|
"nameResourceKey": "iPRangeLowerAddressName",
|
||||||
"emptyValueResourceKey": "iPRangeLowerAddressEmptyValue",
|
"emptyValueResourceKey": "iPRangeLowerAddressEmptyValue",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -457,7 +457,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 22,
|
"category": 25,
|
||||||
"nameResourceKey": "iPRangeUpperAddressName",
|
"nameResourceKey": "iPRangeUpperAddressName",
|
||||||
"emptyValueResourceKey": "iPRangeUpperAddressEmptyValue",
|
"emptyValueResourceKey": "iPRangeUpperAddressEmptyValue",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -474,7 +474,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 21,
|
"dataType": 21,
|
||||||
"category": 22,
|
"category": 25,
|
||||||
"nameResourceKey": "contentCachingPublicRangesName",
|
"nameResourceKey": "contentCachingPublicRangesName",
|
||||||
"descriptionResourceKey": "contentCachingPublicRangesDescription",
|
"descriptionResourceKey": "contentCachingPublicRangesDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -490,7 +490,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 22,
|
"category": 25,
|
||||||
"nameResourceKey": "contentCachingPeerPolicyName",
|
"nameResourceKey": "contentCachingPeerPolicyName",
|
||||||
"descriptionResourceKey": "contentCachingPeerPolicyDescription",
|
"descriptionResourceKey": "contentCachingPeerPolicyDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -521,7 +521,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 22,
|
"category": 25,
|
||||||
"nameResourceKey": "iPRangeAddressTypeName",
|
"nameResourceKey": "iPRangeAddressTypeName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -551,7 +551,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 22,
|
"category": 25,
|
||||||
"nameResourceKey": "iPRangeLowerAddressName",
|
"nameResourceKey": "iPRangeLowerAddressName",
|
||||||
"emptyValueResourceKey": "iPRangeLowerAddressEmptyValue",
|
"emptyValueResourceKey": "iPRangeLowerAddressEmptyValue",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -569,7 +569,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 22,
|
"category": 25,
|
||||||
"nameResourceKey": "iPRangeUpperAddressName",
|
"nameResourceKey": "iPRangeUpperAddressName",
|
||||||
"emptyValueResourceKey": "iPRangeUpperAddressEmptyValue",
|
"emptyValueResourceKey": "iPRangeUpperAddressEmptyValue",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -586,7 +586,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 21,
|
"dataType": 21,
|
||||||
"category": 22,
|
"category": 25,
|
||||||
"nameResourceKey": "contentCachingPeerListenRangesName",
|
"nameResourceKey": "contentCachingPeerListenRangesName",
|
||||||
"descriptionResourceKey": "contentCachingPeerListenRangesDescription",
|
"descriptionResourceKey": "contentCachingPeerListenRangesDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -605,7 +605,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 22,
|
"category": 25,
|
||||||
"nameResourceKey": "iPRangeAddressTypeName",
|
"nameResourceKey": "iPRangeAddressTypeName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -635,7 +635,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 22,
|
"category": 25,
|
||||||
"nameResourceKey": "iPRangeLowerAddressName",
|
"nameResourceKey": "iPRangeLowerAddressName",
|
||||||
"emptyValueResourceKey": "iPRangeLowerAddressEmptyValue",
|
"emptyValueResourceKey": "iPRangeLowerAddressEmptyValue",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -653,7 +653,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 22,
|
"category": 25,
|
||||||
"nameResourceKey": "iPRangeUpperAddressName",
|
"nameResourceKey": "iPRangeUpperAddressName",
|
||||||
"emptyValueResourceKey": "iPRangeUpperAddressEmptyValue",
|
"emptyValueResourceKey": "iPRangeUpperAddressEmptyValue",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -670,7 +670,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 21,
|
"dataType": 21,
|
||||||
"category": 22,
|
"category": 25,
|
||||||
"nameResourceKey": "contentCachingPeerFilterRangesName",
|
"nameResourceKey": "contentCachingPeerFilterRangesName",
|
||||||
"descriptionResourceKey": "contentCachingPeerFilterRangesDescription",
|
"descriptionResourceKey": "contentCachingPeerFilterRangesDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -699,7 +699,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 22,
|
"category": 25,
|
||||||
"nameResourceKey": "contentCachingParentsName",
|
"nameResourceKey": "contentCachingParentsName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -715,7 +715,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 21,
|
"dataType": 21,
|
||||||
"category": 22,
|
"category": 25,
|
||||||
"nameResourceKey": "contentCachingParentsName",
|
"nameResourceKey": "contentCachingParentsName",
|
||||||
"descriptionResourceKey": "contentCachingParentsDescription",
|
"descriptionResourceKey": "contentCachingParentsDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -731,7 +731,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 22,
|
"category": 25,
|
||||||
"nameResourceKey": "contentCachingParentSelectionPolicyName",
|
"nameResourceKey": "contentCachingParentSelectionPolicyName",
|
||||||
"descriptionResourceKey": "contentCachingParentSelectionPolicyDescription",
|
"descriptionResourceKey": "contentCachingParentSelectionPolicyDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|||||||
@@ -1,19 +1,19 @@
|
|||||||
{
|
{
|
||||||
"controlpanelandsettings_windows10general": {
|
"controlpanelandsettings_windows10general": {
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 23,
|
"category": 26,
|
||||||
"nameResourceKey": "settingsAppName",
|
"nameResourceKey": "settingsAppName",
|
||||||
"descriptionResourceKey": "settingsAppDescription",
|
"descriptionResourceKey": "settingsAppDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 23,
|
"category": 26,
|
||||||
"nameResourceKey": "systemPageName",
|
"nameResourceKey": "systemPageName",
|
||||||
"descriptionResourceKey": "systemPageDescription",
|
"descriptionResourceKey": "systemPageDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 23,
|
"category": 26,
|
||||||
"nameResourceKey": "settingsBlockChangePowerSleepName",
|
"nameResourceKey": "settingsBlockChangePowerSleepName",
|
||||||
"descriptionResourceKey": "settingsBlockChangePowerSleepDesc",
|
"descriptionResourceKey": "settingsBlockChangePowerSleepDesc",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -40,7 +40,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 23,
|
"category": 26,
|
||||||
"nameResourceKey": "devicesPageName",
|
"nameResourceKey": "devicesPageName",
|
||||||
"descriptionResourceKey": "devicesPageDescription",
|
"descriptionResourceKey": "devicesPageDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -57,7 +57,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 23,
|
"category": 26,
|
||||||
"nameResourceKey": "networkAndInternetPageName",
|
"nameResourceKey": "networkAndInternetPageName",
|
||||||
"descriptionResourceKey": "networkAndInternetPageDescription",
|
"descriptionResourceKey": "networkAndInternetPageDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -74,7 +74,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 23,
|
"category": 26,
|
||||||
"nameResourceKey": "personalizationPageName",
|
"nameResourceKey": "personalizationPageName",
|
||||||
"descriptionResourceKey": "personalizationPageDescription",
|
"descriptionResourceKey": "personalizationPageDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -91,7 +91,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 23,
|
"category": 26,
|
||||||
"nameResourceKey": "appsPageName",
|
"nameResourceKey": "appsPageName",
|
||||||
"descriptionResourceKey": "appsPageDescription",
|
"descriptionResourceKey": "appsPageDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -108,7 +108,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 23,
|
"category": 26,
|
||||||
"nameResourceKey": "accountsPageName",
|
"nameResourceKey": "accountsPageName",
|
||||||
"descriptionResourceKey": "accountsPageDescription",
|
"descriptionResourceKey": "accountsPageDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -125,13 +125,13 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 23,
|
"category": 26,
|
||||||
"nameResourceKey": "timeAndLanguagePageName",
|
"nameResourceKey": "timeAndLanguagePageName",
|
||||||
"descriptionResourceKey": "timeAndLanguagePageDescription",
|
"descriptionResourceKey": "timeAndLanguagePageDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 23,
|
"category": 26,
|
||||||
"nameResourceKey": "settingsBlockChangeSystemTimeName",
|
"nameResourceKey": "settingsBlockChangeSystemTimeName",
|
||||||
"descriptionResourceKey": "settingsBlockChangeSystemTimeDesc",
|
"descriptionResourceKey": "settingsBlockChangeSystemTimeDesc",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -148,7 +148,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 23,
|
"category": 26,
|
||||||
"nameResourceKey": "settingsBlockChangeRegionName",
|
"nameResourceKey": "settingsBlockChangeRegionName",
|
||||||
"descriptionResourceKey": "settingsBlockChangeRegionDesc",
|
"descriptionResourceKey": "settingsBlockChangeRegionDesc",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -165,7 +165,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 23,
|
"category": 26,
|
||||||
"nameResourceKey": "settingsBlockChangeLanguageName",
|
"nameResourceKey": "settingsBlockChangeLanguageName",
|
||||||
"descriptionResourceKey": "settingsBlockChangeLanguageDesc",
|
"descriptionResourceKey": "settingsBlockChangeLanguageDesc",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -192,7 +192,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 23,
|
"category": 26,
|
||||||
"nameResourceKey": "gamingPageName",
|
"nameResourceKey": "gamingPageName",
|
||||||
"descriptionResourceKey": "gamingPageDescription",
|
"descriptionResourceKey": "gamingPageDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -209,7 +209,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 23,
|
"category": 26,
|
||||||
"nameResourceKey": "easeOfAccessPageName",
|
"nameResourceKey": "easeOfAccessPageName",
|
||||||
"descriptionResourceKey": "easeOfAccessPageDescription",
|
"descriptionResourceKey": "easeOfAccessPageDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -226,7 +226,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 23,
|
"category": 26,
|
||||||
"nameResourceKey": "privacyPageName",
|
"nameResourceKey": "privacyPageName",
|
||||||
"descriptionResourceKey": "privacyPageDescription",
|
"descriptionResourceKey": "privacyPageDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -243,7 +243,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 23,
|
"category": 26,
|
||||||
"nameResourceKey": "updateAndSecurityPageName",
|
"nameResourceKey": "updateAndSecurityPageName",
|
||||||
"descriptionResourceKey": "updateAndSecurityPageDescription",
|
"descriptionResourceKey": "updateAndSecurityPageDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"credentialguard_windows10endpointprotection": {
|
"credentialguard_windows10endpointprotection": {
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 24,
|
"category": 27,
|
||||||
"nameResourceKey": "deviceGuardCredentialGuardName",
|
"nameResourceKey": "deviceGuardCredentialGuardName",
|
||||||
"descriptionResourceKey": "deviceGuardCredentialGuardDescription",
|
"descriptionResourceKey": "deviceGuardCredentialGuardDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"customcompliance_compliancewindows10": {
|
"customcompliance_compliancewindows10": {
|
||||||
"dataType": 25,
|
"dataType": 25,
|
||||||
"category": 143,
|
"category": 151,
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
"customconfiguration_ioscustom": [
|
"customconfiguration_ioscustom": [
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 25,
|
"category": 28,
|
||||||
"nameResourceKey": "customPolicyConfigurationProfileName",
|
"nameResourceKey": "customPolicyConfigurationProfileName",
|
||||||
"descriptionResourceKey": "customPolicyConfigurationProfileDescription",
|
"descriptionResourceKey": "customPolicyConfigurationProfileDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -21,7 +21,7 @@
|
|||||||
"dataEntityKey": "payload",
|
"dataEntityKey": "payload",
|
||||||
"filenameEntityKey": "payloadFileName",
|
"filenameEntityKey": "payloadFileName",
|
||||||
"dataType": 2,
|
"dataType": 2,
|
||||||
"category": 25,
|
"category": 28,
|
||||||
"nameResourceKey": "customPolicyConfigurationProfileFileName",
|
"nameResourceKey": "customPolicyConfigurationProfileFileName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
"customconfiguration_maccustom": [
|
"customconfiguration_maccustom": [
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 25,
|
"category": 28,
|
||||||
"nameResourceKey": "customPolicyConfigurationProfileName",
|
"nameResourceKey": "customPolicyConfigurationProfileName",
|
||||||
"descriptionResourceKey": "customPolicyConfigurationProfileDescription",
|
"descriptionResourceKey": "customPolicyConfigurationProfileDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -19,7 +19,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 25,
|
"category": 28,
|
||||||
"nameResourceKey": "customPolicyConfigurationDeploymentChannelName",
|
"nameResourceKey": "customPolicyConfigurationDeploymentChannelName",
|
||||||
"descriptionResourceKey": "customPolicyConfigurationDeploymentChannelDescription",
|
"descriptionResourceKey": "customPolicyConfigurationDeploymentChannelDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -48,7 +48,7 @@
|
|||||||
"dataEntityKey": "payload",
|
"dataEntityKey": "payload",
|
||||||
"filenameEntityKey": "payloadFileName",
|
"filenameEntityKey": "payloadFileName",
|
||||||
"dataType": 2,
|
"dataType": 2,
|
||||||
"category": 25,
|
"category": 28,
|
||||||
"nameResourceKey": "customPolicyConfigurationProfileFileName",
|
"nameResourceKey": "customPolicyConfigurationProfileFileName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 26,
|
"category": 29,
|
||||||
"nameResourceKey": "nameName",
|
"nameResourceKey": "nameName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -22,7 +22,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 26,
|
"category": 29,
|
||||||
"nameResourceKey": "descriptionName",
|
"nameResourceKey": "descriptionName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -40,7 +40,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 26,
|
"category": 29,
|
||||||
"nameResourceKey": "oMAURIName",
|
"nameResourceKey": "oMAURIName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -58,7 +58,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 26,
|
"category": 29,
|
||||||
"nameResourceKey": "dataTypeName",
|
"nameResourceKey": "dataTypeName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -75,7 +75,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 12,
|
"dataType": 12,
|
||||||
"category": 26,
|
"category": 29,
|
||||||
"nameResourceKey": "valueName",
|
"nameResourceKey": "valueName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -100,7 +100,7 @@
|
|||||||
"dataEntityKey": "value",
|
"dataEntityKey": "value",
|
||||||
"filenameEntityKey": "fileName",
|
"filenameEntityKey": "fileName",
|
||||||
"dataType": 2,
|
"dataType": 2,
|
||||||
"category": 26,
|
"category": 29,
|
||||||
"nameResourceKey": "vPNPolicyCustomXMLName",
|
"nameResourceKey": "vPNPolicyCustomXMLName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -123,7 +123,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 7,
|
"dataType": 7,
|
||||||
"category": 26,
|
"category": 29,
|
||||||
"nameResourceKey": "valueName",
|
"nameResourceKey": "valueName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -146,7 +146,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 26,
|
"category": 29,
|
||||||
"nameResourceKey": "valueName",
|
"nameResourceKey": "valueName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -169,7 +169,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 26,
|
"category": 29,
|
||||||
"nameResourceKey": "valueName",
|
"nameResourceKey": "valueName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -192,7 +192,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 26,
|
"category": 29,
|
||||||
"nameResourceKey": "valueName",
|
"nameResourceKey": "valueName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -227,7 +227,7 @@
|
|||||||
"dataEntityKey": "value",
|
"dataEntityKey": "value",
|
||||||
"filenameEntityKey": "fileName",
|
"filenameEntityKey": "fileName",
|
||||||
"dataType": 2,
|
"dataType": 2,
|
||||||
"category": 26,
|
"category": 29,
|
||||||
"nameResourceKey": "omaBase64Name",
|
"nameResourceKey": "omaBase64Name",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -253,7 +253,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 21,
|
"dataType": 21,
|
||||||
"category": 26,
|
"category": 29,
|
||||||
"nameResourceKey": "customPolicyOMAURISettingsName",
|
"nameResourceKey": "customPolicyOMAURISettingsName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 26,
|
"category": 29,
|
||||||
"nameResourceKey": "nameName",
|
"nameResourceKey": "nameName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -22,7 +22,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 26,
|
"category": 29,
|
||||||
"nameResourceKey": "descriptionName",
|
"nameResourceKey": "descriptionName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -40,7 +40,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 26,
|
"category": 29,
|
||||||
"nameResourceKey": "oMAURIName",
|
"nameResourceKey": "oMAURIName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -58,7 +58,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 26,
|
"category": 29,
|
||||||
"nameResourceKey": "dataTypeName",
|
"nameResourceKey": "dataTypeName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -75,7 +75,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 12,
|
"dataType": 12,
|
||||||
"category": 26,
|
"category": 29,
|
||||||
"nameResourceKey": "valueName",
|
"nameResourceKey": "valueName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -100,7 +100,7 @@
|
|||||||
"dataEntityKey": "value",
|
"dataEntityKey": "value",
|
||||||
"filenameEntityKey": "fileName",
|
"filenameEntityKey": "fileName",
|
||||||
"dataType": 2,
|
"dataType": 2,
|
||||||
"category": 26,
|
"category": 29,
|
||||||
"nameResourceKey": "vPNPolicyCustomXMLName",
|
"nameResourceKey": "vPNPolicyCustomXMLName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -123,7 +123,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 7,
|
"dataType": 7,
|
||||||
"category": 26,
|
"category": 29,
|
||||||
"nameResourceKey": "valueName",
|
"nameResourceKey": "valueName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -146,7 +146,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 26,
|
"category": 29,
|
||||||
"nameResourceKey": "valueName",
|
"nameResourceKey": "valueName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -169,7 +169,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 26,
|
"category": 29,
|
||||||
"nameResourceKey": "valueName",
|
"nameResourceKey": "valueName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -192,7 +192,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 26,
|
"category": 29,
|
||||||
"nameResourceKey": "valueName",
|
"nameResourceKey": "valueName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -227,7 +227,7 @@
|
|||||||
"dataEntityKey": "value",
|
"dataEntityKey": "value",
|
||||||
"filenameEntityKey": "fileName",
|
"filenameEntityKey": "fileName",
|
||||||
"dataType": 2,
|
"dataType": 2,
|
||||||
"category": 26,
|
"category": 29,
|
||||||
"nameResourceKey": "omaBase64Name",
|
"nameResourceKey": "omaBase64Name",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -253,7 +253,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 21,
|
"dataType": 21,
|
||||||
"category": 26,
|
"category": 29,
|
||||||
"nameResourceKey": "customPolicyOMAURISettingsName",
|
"nameResourceKey": "customPolicyOMAURISettingsName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 26,
|
"category": 29,
|
||||||
"nameResourceKey": "nameName",
|
"nameResourceKey": "nameName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -22,7 +22,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 26,
|
"category": 29,
|
||||||
"nameResourceKey": "descriptionName",
|
"nameResourceKey": "descriptionName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -40,7 +40,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 26,
|
"category": 29,
|
||||||
"nameResourceKey": "oMAURIName",
|
"nameResourceKey": "oMAURIName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -58,7 +58,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 26,
|
"category": 29,
|
||||||
"nameResourceKey": "dataTypeName",
|
"nameResourceKey": "dataTypeName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -75,7 +75,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 12,
|
"dataType": 12,
|
||||||
"category": 26,
|
"category": 29,
|
||||||
"nameResourceKey": "valueName",
|
"nameResourceKey": "valueName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -100,7 +100,7 @@
|
|||||||
"dataEntityKey": "value",
|
"dataEntityKey": "value",
|
||||||
"filenameEntityKey": "fileName",
|
"filenameEntityKey": "fileName",
|
||||||
"dataType": 2,
|
"dataType": 2,
|
||||||
"category": 26,
|
"category": 29,
|
||||||
"nameResourceKey": "vPNPolicyCustomXMLName",
|
"nameResourceKey": "vPNPolicyCustomXMLName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -123,7 +123,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 7,
|
"dataType": 7,
|
||||||
"category": 26,
|
"category": 29,
|
||||||
"nameResourceKey": "valueName",
|
"nameResourceKey": "valueName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -146,7 +146,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 26,
|
"category": 29,
|
||||||
"nameResourceKey": "valueName",
|
"nameResourceKey": "valueName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -169,7 +169,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 26,
|
"category": 29,
|
||||||
"nameResourceKey": "valueName",
|
"nameResourceKey": "valueName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -192,7 +192,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 26,
|
"category": 29,
|
||||||
"nameResourceKey": "valueName",
|
"nameResourceKey": "valueName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -227,7 +227,7 @@
|
|||||||
"dataEntityKey": "value",
|
"dataEntityKey": "value",
|
||||||
"filenameEntityKey": "fileName",
|
"filenameEntityKey": "fileName",
|
||||||
"dataType": 2,
|
"dataType": 2,
|
||||||
"category": 26,
|
"category": 29,
|
||||||
"nameResourceKey": "omaBase64Name",
|
"nameResourceKey": "omaBase64Name",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -253,7 +253,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 21,
|
"dataType": 21,
|
||||||
"category": 26,
|
"category": 29,
|
||||||
"nameResourceKey": "customPolicyOMAURISettingsName",
|
"nameResourceKey": "customPolicyOMAURISettingsName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 26,
|
"category": 29,
|
||||||
"nameResourceKey": "nameName",
|
"nameResourceKey": "nameName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -22,7 +22,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 26,
|
"category": 29,
|
||||||
"nameResourceKey": "descriptionName",
|
"nameResourceKey": "descriptionName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -40,7 +40,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 26,
|
"category": 29,
|
||||||
"nameResourceKey": "oMAURIName",
|
"nameResourceKey": "oMAURIName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -58,7 +58,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 26,
|
"category": 29,
|
||||||
"nameResourceKey": "dataTypeName",
|
"nameResourceKey": "dataTypeName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -75,7 +75,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 12,
|
"dataType": 12,
|
||||||
"category": 26,
|
"category": 29,
|
||||||
"nameResourceKey": "valueName",
|
"nameResourceKey": "valueName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -100,7 +100,7 @@
|
|||||||
"dataEntityKey": "value",
|
"dataEntityKey": "value",
|
||||||
"filenameEntityKey": "fileName",
|
"filenameEntityKey": "fileName",
|
||||||
"dataType": 2,
|
"dataType": 2,
|
||||||
"category": 26,
|
"category": 29,
|
||||||
"nameResourceKey": "vPNPolicyCustomXMLName",
|
"nameResourceKey": "vPNPolicyCustomXMLName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -123,7 +123,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 7,
|
"dataType": 7,
|
||||||
"category": 26,
|
"category": 29,
|
||||||
"nameResourceKey": "valueName",
|
"nameResourceKey": "valueName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -146,7 +146,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 26,
|
"category": 29,
|
||||||
"nameResourceKey": "valueName",
|
"nameResourceKey": "valueName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -169,7 +169,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 26,
|
"category": 29,
|
||||||
"nameResourceKey": "valueName",
|
"nameResourceKey": "valueName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -192,7 +192,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 26,
|
"category": 29,
|
||||||
"nameResourceKey": "valueName",
|
"nameResourceKey": "valueName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -227,7 +227,7 @@
|
|||||||
"dataEntityKey": "value",
|
"dataEntityKey": "value",
|
||||||
"filenameEntityKey": "fileName",
|
"filenameEntityKey": "fileName",
|
||||||
"dataType": 2,
|
"dataType": 2,
|
||||||
"category": 26,
|
"category": 29,
|
||||||
"nameResourceKey": "omaBase64Name",
|
"nameResourceKey": "omaBase64Name",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -253,7 +253,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 21,
|
"dataType": 21,
|
||||||
"category": 26,
|
"category": 29,
|
||||||
"nameResourceKey": "customPolicyOMAURISettingsName",
|
"nameResourceKey": "customPolicyOMAURISettingsName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
"custompreferences_maccustompreferences": [
|
"custompreferences_maccustompreferences": [
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 27,
|
"category": 30,
|
||||||
"nameResourceKey": "customAppConfigurationDomainName",
|
"nameResourceKey": "customAppConfigurationDomainName",
|
||||||
"descriptionResourceKey": "customAppConfigurationDomainDescription",
|
"descriptionResourceKey": "customAppConfigurationDomainDescription",
|
||||||
"emptyValueResourceKey": "customAppConfigurationDomainEmptyValue",
|
"emptyValueResourceKey": "customAppConfigurationDomainEmptyValue",
|
||||||
@@ -21,7 +21,7 @@
|
|||||||
"dataEntityKey": "configurationXml",
|
"dataEntityKey": "configurationXml",
|
||||||
"filenameEntityKey": "fileName",
|
"filenameEntityKey": "fileName",
|
||||||
"dataType": 2,
|
"dataType": 2,
|
||||||
"category": 27,
|
"category": 30,
|
||||||
"nameResourceKey": "customAppConfigurationFileName",
|
"nameResourceKey": "customAppConfigurationFileName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
"defender_windows10general": [
|
"defender_windows10general": [
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 28,
|
"category": 31,
|
||||||
"nameResourceKey": "enableRealTimeMonitoringName",
|
"nameResourceKey": "enableRealTimeMonitoringName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -19,7 +19,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 28,
|
"category": 31,
|
||||||
"nameResourceKey": "enableBehaviorMonitoringName",
|
"nameResourceKey": "enableBehaviorMonitoringName",
|
||||||
"descriptionResourceKey": "EnableBehaviorMonitoringDescription",
|
"descriptionResourceKey": "EnableBehaviorMonitoringDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -36,7 +36,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 28,
|
"category": 31,
|
||||||
"nameResourceKey": "enableNetworkInspectionSystemName",
|
"nameResourceKey": "enableNetworkInspectionSystemName",
|
||||||
"descriptionResourceKey": "enableNetworkInspectionSystemDescription",
|
"descriptionResourceKey": "enableNetworkInspectionSystemDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -53,7 +53,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 28,
|
"category": 31,
|
||||||
"nameResourceKey": "scanAllDownloadsName",
|
"nameResourceKey": "scanAllDownloadsName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -70,7 +70,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 19,
|
"dataType": 19,
|
||||||
"category": 28,
|
"category": 31,
|
||||||
"nameResourceKey": "defenderScheduleScanEnableLowCpuPriorityName",
|
"nameResourceKey": "defenderScheduleScanEnableLowCpuPriorityName",
|
||||||
"descriptionResourceKey": "defenderScheduleScanEnableLowCpuPriorityDescription",
|
"descriptionResourceKey": "defenderScheduleScanEnableLowCpuPriorityDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -97,7 +97,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 19,
|
"dataType": 19,
|
||||||
"category": 28,
|
"category": 31,
|
||||||
"nameResourceKey": "defenderDisableCatchupQuickScanName",
|
"nameResourceKey": "defenderDisableCatchupQuickScanName",
|
||||||
"descriptionResourceKey": "defenderDisableCatchupQuickScanDescription",
|
"descriptionResourceKey": "defenderDisableCatchupQuickScanDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -124,7 +124,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 19,
|
"dataType": 19,
|
||||||
"category": 28,
|
"category": 31,
|
||||||
"nameResourceKey": "defenderDisableCatchupFullScanName",
|
"nameResourceKey": "defenderDisableCatchupFullScanName",
|
||||||
"descriptionResourceKey": "defenderDisableCatchupFullScanDescription",
|
"descriptionResourceKey": "defenderDisableCatchupFullScanDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -151,7 +151,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 28,
|
"category": 31,
|
||||||
"nameResourceKey": "scriptScanningName",
|
"nameResourceKey": "scriptScanningName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -168,7 +168,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 28,
|
"category": 31,
|
||||||
"nameResourceKey": "enableEndUserAccessToDefenderName",
|
"nameResourceKey": "enableEndUserAccessToDefenderName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -185,7 +185,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 28,
|
"category": 31,
|
||||||
"nameResourceKey": "signatureUpdateIntervalInHoursName",
|
"nameResourceKey": "signatureUpdateIntervalInHoursName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -329,7 +329,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 28,
|
"category": 31,
|
||||||
"nameResourceKey": "monitorFileAndProgramActivityName",
|
"nameResourceKey": "monitorFileAndProgramActivityName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -366,7 +366,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 28,
|
"category": 31,
|
||||||
"nameResourceKey": "daysToTrackResolvedMalwareName",
|
"nameResourceKey": "daysToTrackResolvedMalwareName",
|
||||||
"descriptionResourceKey": "DaysToTrackResolvedMalwareDescription",
|
"descriptionResourceKey": "DaysToTrackResolvedMalwareDescription",
|
||||||
"emptyValueResourceKey": "daysToTrackResolvedMalwarePlaceholder",
|
"emptyValueResourceKey": "daysToTrackResolvedMalwarePlaceholder",
|
||||||
@@ -384,7 +384,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 28,
|
"category": 31,
|
||||||
"nameResourceKey": "limitCPUUsageDuringScanName",
|
"nameResourceKey": "limitCPUUsageDuringScanName",
|
||||||
"descriptionResourceKey": "limitCPUUsageDuringScanDescription",
|
"descriptionResourceKey": "limitCPUUsageDuringScanDescription",
|
||||||
"emptyValueResourceKey": "limitCPUUsageDuringScanPlaceholder",
|
"emptyValueResourceKey": "limitCPUUsageDuringScanPlaceholder",
|
||||||
@@ -401,7 +401,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 28,
|
"category": 31,
|
||||||
"nameResourceKey": "scanArchiveFilesName",
|
"nameResourceKey": "scanArchiveFilesName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -418,7 +418,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 28,
|
"category": 31,
|
||||||
"nameResourceKey": "scanIncomingMailMessagesName",
|
"nameResourceKey": "scanIncomingMailMessagesName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -435,7 +435,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 28,
|
"category": 31,
|
||||||
"nameResourceKey": "scanRemovableDrivesDuringFullScanName",
|
"nameResourceKey": "scanRemovableDrivesDuringFullScanName",
|
||||||
"descriptionResourceKey": "scanRemovableDrivesDuringFullScanDescription",
|
"descriptionResourceKey": "scanRemovableDrivesDuringFullScanDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -452,7 +452,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 28,
|
"category": 31,
|
||||||
"nameResourceKey": "scanMappedNetworkDrivesDuringFullScanName",
|
"nameResourceKey": "scanMappedNetworkDrivesDuringFullScanName",
|
||||||
"descriptionResourceKey": "readOnlyMappingDescription",
|
"descriptionResourceKey": "readOnlyMappingDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -469,7 +469,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 28,
|
"category": 31,
|
||||||
"nameResourceKey": "scanFilesOpenedFromNetworkFoldersName",
|
"nameResourceKey": "scanFilesOpenedFromNetworkFoldersName",
|
||||||
"descriptionResourceKey": "readOnlyMappingDescription",
|
"descriptionResourceKey": "readOnlyMappingDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -486,7 +486,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 28,
|
"category": 31,
|
||||||
"nameResourceKey": "cloudProtectionName",
|
"nameResourceKey": "cloudProtectionName",
|
||||||
"descriptionResourceKey": "cloudProtectionDescription",
|
"descriptionResourceKey": "cloudProtectionDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -503,7 +503,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 28,
|
"category": 31,
|
||||||
"nameResourceKey": "fileBlockingLevelName",
|
"nameResourceKey": "fileBlockingLevelName",
|
||||||
"descriptionResourceKey": "fileBlockingLevelDescription",
|
"descriptionResourceKey": "fileBlockingLevelDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -540,7 +540,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 28,
|
"category": 31,
|
||||||
"nameResourceKey": "timeExtensionForFileScanName",
|
"nameResourceKey": "timeExtensionForFileScanName",
|
||||||
"descriptionResourceKey": "TimeExtensionForFileScanDescription",
|
"descriptionResourceKey": "TimeExtensionForFileScanDescription",
|
||||||
"emptyValueResourceKey": "timeExtensionForFileScanPlaceholder",
|
"emptyValueResourceKey": "timeExtensionForFileScanPlaceholder",
|
||||||
@@ -558,7 +558,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 28,
|
"category": 31,
|
||||||
"nameResourceKey": "promptUsersForSamplesSubmissionName",
|
"nameResourceKey": "promptUsersForSamplesSubmissionName",
|
||||||
"descriptionResourceKey": "promptUsersForSamplesSubmissionDescription",
|
"descriptionResourceKey": "promptUsersForSamplesSubmissionDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -600,7 +600,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 28,
|
"category": 31,
|
||||||
"nameResourceKey": "timeForDailyQuickScanName",
|
"nameResourceKey": "timeForDailyQuickScanName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -739,7 +739,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 28,
|
"category": 31,
|
||||||
"nameResourceKey": "typeOfSystemScanName",
|
"nameResourceKey": "typeOfSystemScanName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -757,7 +757,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 28,
|
"category": 31,
|
||||||
"nameResourceKey": "dayScheduled",
|
"nameResourceKey": "dayScheduled",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -821,7 +821,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 28,
|
"category": 31,
|
||||||
"nameResourceKey": "timeScheduled",
|
"nameResourceKey": "timeScheduled",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -967,7 +967,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 28,
|
"category": 31,
|
||||||
"nameResourceKey": "dayScheduled",
|
"nameResourceKey": "dayScheduled",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1031,7 +1031,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 28,
|
"category": 31,
|
||||||
"nameResourceKey": "timeScheduled",
|
"nameResourceKey": "timeScheduled",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1181,7 +1181,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 28,
|
"category": 31,
|
||||||
"nameResourceKey": "defenderPotentiallyUnwantedAppActionName",
|
"nameResourceKey": "defenderPotentiallyUnwantedAppActionName",
|
||||||
"descriptionResourceKey": "defenderPotentiallyUnwantedAppActionDescription",
|
"descriptionResourceKey": "defenderPotentiallyUnwantedAppActionDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1215,7 +1215,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 19,
|
"dataType": 19,
|
||||||
"category": 28,
|
"category": 31,
|
||||||
"nameResourceKey": "defenderBlockOnAccessProtectionName",
|
"nameResourceKey": "defenderBlockOnAccessProtectionName",
|
||||||
"descriptionResourceKey": "defenderBlockOnAccessProtectionDesc",
|
"descriptionResourceKey": "defenderBlockOnAccessProtectionDesc",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1242,7 +1242,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 28,
|
"category": 31,
|
||||||
"nameResourceKey": "defenderScheduleScanDayName",
|
"nameResourceKey": "defenderScheduleScanDayName",
|
||||||
"descriptionResourceKey": "defenderScheduleScanDayDesc",
|
"descriptionResourceKey": "defenderScheduleScanDayDesc",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1304,13 +1304,13 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 28,
|
"category": 31,
|
||||||
"nameResourceKey": "defenderDetectedMalwareActionsName",
|
"nameResourceKey": "defenderDetectedMalwareActionsName",
|
||||||
"descriptionResourceKey": "defenderDetectedMalwareActionsDescription",
|
"descriptionResourceKey": "defenderDetectedMalwareActionsDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 28,
|
"category": 31,
|
||||||
"nameResourceKey": "LowSeverity",
|
"nameResourceKey": "LowSeverity",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1362,7 +1362,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 28,
|
"category": 31,
|
||||||
"nameResourceKey": "ModerateSeverity",
|
"nameResourceKey": "ModerateSeverity",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1414,7 +1414,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 28,
|
"category": 31,
|
||||||
"nameResourceKey": "HighSeverity",
|
"nameResourceKey": "HighSeverity",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1466,7 +1466,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 28,
|
"category": 31,
|
||||||
"nameResourceKey": "SevereSeverity",
|
"nameResourceKey": "SevereSeverity",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1528,7 +1528,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 9,
|
"dataType": 9,
|
||||||
"category": 28,
|
"category": 31,
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"complexOptions": [
|
"complexOptions": [
|
||||||
@@ -1537,7 +1537,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 28,
|
"category": 31,
|
||||||
"nameResourceKey": "nameColumn",
|
"nameResourceKey": "nameColumn",
|
||||||
"emptyValueResourceKey": "nameColumnExamples",
|
"emptyValueResourceKey": "nameColumnExamples",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1554,7 +1554,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 21,
|
"dataType": 21,
|
||||||
"category": 28,
|
"category": 31,
|
||||||
"nameResourceKey": "filesAndFoldersToExcludeName",
|
"nameResourceKey": "filesAndFoldersToExcludeName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1573,7 +1573,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 28,
|
"category": 31,
|
||||||
"nameResourceKey": "extensionsColumn",
|
"nameResourceKey": "extensionsColumn",
|
||||||
"emptyValueResourceKey": "extensionsColumnExamples",
|
"emptyValueResourceKey": "extensionsColumnExamples",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1590,7 +1590,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 21,
|
"dataType": 21,
|
||||||
"category": 28,
|
"category": 31,
|
||||||
"nameResourceKey": "fileExtensionsToExcludeName",
|
"nameResourceKey": "fileExtensionsToExcludeName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1609,7 +1609,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 28,
|
"category": 31,
|
||||||
"nameResourceKey": "processesColumn",
|
"nameResourceKey": "processesColumn",
|
||||||
"emptyValueResourceKey": "processesColumnExamples",
|
"emptyValueResourceKey": "processesColumnExamples",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1626,7 +1626,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 21,
|
"dataType": 21,
|
||||||
"category": 28,
|
"category": 31,
|
||||||
"nameResourceKey": "processesToExcludeName",
|
"nameResourceKey": "processesToExcludeName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1642,7 +1642,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 5,
|
"dataType": 5,
|
||||||
"category": 28,
|
"category": 31,
|
||||||
"nameResourceKey": "DefenderExclusions",
|
"nameResourceKey": "DefenderExclusions",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
"defenderantivirus_windows10endpointprotection": [
|
"defenderantivirus_windows10endpointprotection": [
|
||||||
{
|
{
|
||||||
"dataType": 19,
|
"dataType": 19,
|
||||||
"category": 142,
|
"category": 150,
|
||||||
"nameResourceKey": "enableRealTimeMonitoringName",
|
"nameResourceKey": "enableRealTimeMonitoringName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -28,7 +28,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 19,
|
"dataType": 19,
|
||||||
"category": 142,
|
"category": 150,
|
||||||
"nameResourceKey": "enableBehaviorMonitoringName",
|
"nameResourceKey": "enableBehaviorMonitoringName",
|
||||||
"descriptionResourceKey": "EnableBehaviorMonitoringDescription",
|
"descriptionResourceKey": "EnableBehaviorMonitoringDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -54,7 +54,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 19,
|
"dataType": 19,
|
||||||
"category": 142,
|
"category": 150,
|
||||||
"nameResourceKey": "enableNetworkInspectionSystemName",
|
"nameResourceKey": "enableNetworkInspectionSystemName",
|
||||||
"descriptionResourceKey": "enableNetworkInspectionSystemDescription",
|
"descriptionResourceKey": "enableNetworkInspectionSystemDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -80,7 +80,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 19,
|
"dataType": 19,
|
||||||
"category": 142,
|
"category": 150,
|
||||||
"nameResourceKey": "scanAllDownloadsName",
|
"nameResourceKey": "scanAllDownloadsName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -106,7 +106,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 19,
|
"dataType": 19,
|
||||||
"category": 142,
|
"category": 150,
|
||||||
"nameResourceKey": "defenderScheduleScanEnableLowCpuPriorityName",
|
"nameResourceKey": "defenderScheduleScanEnableLowCpuPriorityName",
|
||||||
"descriptionResourceKey": "defenderScheduleScanEnableLowCpuPriorityDescription",
|
"descriptionResourceKey": "defenderScheduleScanEnableLowCpuPriorityDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -133,7 +133,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 19,
|
"dataType": 19,
|
||||||
"category": 142,
|
"category": 150,
|
||||||
"nameResourceKey": "defenderDisableCatchupQuickScanName",
|
"nameResourceKey": "defenderDisableCatchupQuickScanName",
|
||||||
"descriptionResourceKey": "defenderDisableCatchupQuickScanDescription",
|
"descriptionResourceKey": "defenderDisableCatchupQuickScanDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -160,7 +160,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 19,
|
"dataType": 19,
|
||||||
"category": 142,
|
"category": 150,
|
||||||
"nameResourceKey": "defenderDisableCatchupFullScanName",
|
"nameResourceKey": "defenderDisableCatchupFullScanName",
|
||||||
"descriptionResourceKey": "defenderDisableCatchupFullScanDescription",
|
"descriptionResourceKey": "defenderDisableCatchupFullScanDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -187,7 +187,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 19,
|
"dataType": 19,
|
||||||
"category": 142,
|
"category": 150,
|
||||||
"nameResourceKey": "scriptScanningName",
|
"nameResourceKey": "scriptScanningName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -213,7 +213,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 19,
|
"dataType": 19,
|
||||||
"category": 142,
|
"category": 150,
|
||||||
"nameResourceKey": "enableEndUserAccessToDefenderName",
|
"nameResourceKey": "enableEndUserAccessToDefenderName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -239,7 +239,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 142,
|
"category": 150,
|
||||||
"nameResourceKey": "checkForSignaturesBeforeRunningScanName",
|
"nameResourceKey": "checkForSignaturesBeforeRunningScanName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -256,7 +256,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 142,
|
"category": 150,
|
||||||
"nameResourceKey": "monitorFileAndProgramActivityName",
|
"nameResourceKey": "monitorFileAndProgramActivityName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -288,7 +288,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 142,
|
"category": 150,
|
||||||
"nameResourceKey": "daysToTrackResolvedMalwareName",
|
"nameResourceKey": "daysToTrackResolvedMalwareName",
|
||||||
"descriptionResourceKey": "DaysToTrackResolvedMalwareDescription",
|
"descriptionResourceKey": "DaysToTrackResolvedMalwareDescription",
|
||||||
"emptyValueResourceKey": "daysToTrackResolvedMalwarePlaceholder",
|
"emptyValueResourceKey": "daysToTrackResolvedMalwarePlaceholder",
|
||||||
@@ -306,7 +306,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 142,
|
"category": 150,
|
||||||
"nameResourceKey": "limitCPUUsageDuringScanName",
|
"nameResourceKey": "limitCPUUsageDuringScanName",
|
||||||
"descriptionResourceKey": "limitCPUUsageDuringScanDescription",
|
"descriptionResourceKey": "limitCPUUsageDuringScanDescription",
|
||||||
"emptyValueResourceKey": "limitCPUUsageDuringScanPlaceholder",
|
"emptyValueResourceKey": "limitCPUUsageDuringScanPlaceholder",
|
||||||
@@ -323,7 +323,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 19,
|
"dataType": 19,
|
||||||
"category": 142,
|
"category": 150,
|
||||||
"nameResourceKey": "scanArchiveFilesName",
|
"nameResourceKey": "scanArchiveFilesName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -349,7 +349,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 142,
|
"category": 150,
|
||||||
"nameResourceKey": "scanIncomingMailMessagesName",
|
"nameResourceKey": "scanIncomingMailMessagesName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -366,7 +366,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 19,
|
"dataType": 19,
|
||||||
"category": 142,
|
"category": 150,
|
||||||
"nameResourceKey": "scanRemovableDrivesDuringFullScanName",
|
"nameResourceKey": "scanRemovableDrivesDuringFullScanName",
|
||||||
"descriptionResourceKey": "scanRemovableDrivesDuringFullScanDescription",
|
"descriptionResourceKey": "scanRemovableDrivesDuringFullScanDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -392,7 +392,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 142,
|
"category": 150,
|
||||||
"nameResourceKey": "scanMappedNetworkDrivesDuringFullScanName",
|
"nameResourceKey": "scanMappedNetworkDrivesDuringFullScanName",
|
||||||
"descriptionResourceKey": "readOnlyMappingDescription",
|
"descriptionResourceKey": "readOnlyMappingDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -409,7 +409,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 19,
|
"dataType": 19,
|
||||||
"category": 142,
|
"category": 150,
|
||||||
"nameResourceKey": "scanFilesOpenedFromNetworkFoldersName",
|
"nameResourceKey": "scanFilesOpenedFromNetworkFoldersName",
|
||||||
"descriptionResourceKey": "readOnlyMappingDescription",
|
"descriptionResourceKey": "readOnlyMappingDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -435,7 +435,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 19,
|
"dataType": 19,
|
||||||
"category": 142,
|
"category": 150,
|
||||||
"nameResourceKey": "cloudProtectionName",
|
"nameResourceKey": "cloudProtectionName",
|
||||||
"descriptionResourceKey": "cloudProtectionDescription",
|
"descriptionResourceKey": "cloudProtectionDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -461,7 +461,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 142,
|
"category": 150,
|
||||||
"nameResourceKey": "fileBlockingLevelName",
|
"nameResourceKey": "fileBlockingLevelName",
|
||||||
"descriptionResourceKey": "fileBlockingLevelDescription",
|
"descriptionResourceKey": "fileBlockingLevelDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -498,7 +498,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 142,
|
"category": 150,
|
||||||
"nameResourceKey": "timeExtensionForFileScanName",
|
"nameResourceKey": "timeExtensionForFileScanName",
|
||||||
"descriptionResourceKey": "TimeExtensionForFileScanDescription",
|
"descriptionResourceKey": "TimeExtensionForFileScanDescription",
|
||||||
"emptyValueResourceKey": "timeExtensionForFileScanPlaceholder",
|
"emptyValueResourceKey": "timeExtensionForFileScanPlaceholder",
|
||||||
@@ -516,7 +516,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 142,
|
"category": 150,
|
||||||
"nameResourceKey": "typeOfSystemScanName",
|
"nameResourceKey": "typeOfSystemScanName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -539,7 +539,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 142,
|
"category": 150,
|
||||||
"nameResourceKey": "dayScheduled",
|
"nameResourceKey": "dayScheduled",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -601,7 +601,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 142,
|
"category": 150,
|
||||||
"nameResourceKey": "timeScheduled",
|
"nameResourceKey": "timeScheduled",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -747,7 +747,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 142,
|
"category": 150,
|
||||||
"nameResourceKey": "dayScheduled",
|
"nameResourceKey": "dayScheduled",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -809,7 +809,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 142,
|
"category": 150,
|
||||||
"nameResourceKey": "timeScheduled",
|
"nameResourceKey": "timeScheduled",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -959,7 +959,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 142,
|
"category": 150,
|
||||||
"nameResourceKey": "defenderPotentiallyUnwantedAppActionName",
|
"nameResourceKey": "defenderPotentiallyUnwantedAppActionName",
|
||||||
"descriptionResourceKey": "defenderPotentiallyUnwantedAppActionDescription",
|
"descriptionResourceKey": "defenderPotentiallyUnwantedAppActionDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -991,7 +991,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 142,
|
"category": 150,
|
||||||
"nameResourceKey": "defenderSubmitSamplesConsentTypeName",
|
"nameResourceKey": "defenderSubmitSamplesConsentTypeName",
|
||||||
"descriptionResourceKey": "defenderSubmitSamplesConsentTypeDesc",
|
"descriptionResourceKey": "defenderSubmitSamplesConsentTypeDesc",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1028,7 +1028,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 19,
|
"dataType": 19,
|
||||||
"category": 142,
|
"category": 150,
|
||||||
"nameResourceKey": "defenderBlockOnAccessProtectionName",
|
"nameResourceKey": "defenderBlockOnAccessProtectionName",
|
||||||
"descriptionResourceKey": "defenderBlockOnAccessProtectionDesc",
|
"descriptionResourceKey": "defenderBlockOnAccessProtectionDesc",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1055,13 +1055,13 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 142,
|
"category": 150,
|
||||||
"nameResourceKey": "defenderDetectedMalwareActionsName",
|
"nameResourceKey": "defenderDetectedMalwareActionsName",
|
||||||
"descriptionResourceKey": "defenderDetectedMalwareActionsDescription",
|
"descriptionResourceKey": "defenderDetectedMalwareActionsDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 142,
|
"category": 150,
|
||||||
"nameResourceKey": "LowSeverity",
|
"nameResourceKey": "LowSeverity",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1113,7 +1113,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 142,
|
"category": 150,
|
||||||
"nameResourceKey": "ModerateSeverity",
|
"nameResourceKey": "ModerateSeverity",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1165,7 +1165,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 142,
|
"category": 150,
|
||||||
"nameResourceKey": "HighSeverity",
|
"nameResourceKey": "HighSeverity",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1217,7 +1217,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 142,
|
"category": 150,
|
||||||
"nameResourceKey": "SevereSeverity",
|
"nameResourceKey": "SevereSeverity",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1279,7 +1279,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 9,
|
"dataType": 9,
|
||||||
"category": 142,
|
"category": 150,
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"complexOptions": [
|
"complexOptions": [
|
||||||
@@ -1288,7 +1288,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 142,
|
"category": 150,
|
||||||
"nameResourceKey": "nameColumn",
|
"nameResourceKey": "nameColumn",
|
||||||
"emptyValueResourceKey": "nameColumnExamples",
|
"emptyValueResourceKey": "nameColumnExamples",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1305,7 +1305,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 21,
|
"dataType": 21,
|
||||||
"category": 142,
|
"category": 150,
|
||||||
"nameResourceKey": "filesAndFoldersToExcludeName",
|
"nameResourceKey": "filesAndFoldersToExcludeName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1324,7 +1324,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 142,
|
"category": 150,
|
||||||
"nameResourceKey": "extensionsColumn",
|
"nameResourceKey": "extensionsColumn",
|
||||||
"emptyValueResourceKey": "extensionsColumnExamples",
|
"emptyValueResourceKey": "extensionsColumnExamples",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1341,7 +1341,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 21,
|
"dataType": 21,
|
||||||
"category": 142,
|
"category": 150,
|
||||||
"nameResourceKey": "fileExtensionsToExcludeName",
|
"nameResourceKey": "fileExtensionsToExcludeName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1360,7 +1360,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 142,
|
"category": 150,
|
||||||
"nameResourceKey": "processesColumn",
|
"nameResourceKey": "processesColumn",
|
||||||
"emptyValueResourceKey": "processesColumnExamples",
|
"emptyValueResourceKey": "processesColumnExamples",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1377,7 +1377,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 21,
|
"dataType": 21,
|
||||||
"category": 142,
|
"category": 150,
|
||||||
"nameResourceKey": "processesToExcludeName",
|
"nameResourceKey": "processesToExcludeName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1393,7 +1393,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 5,
|
"dataType": 5,
|
||||||
"category": 142,
|
"category": 150,
|
||||||
"nameResourceKey": "DefenderExclusions",
|
"nameResourceKey": "DefenderExclusions",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 30,
|
"category": 33,
|
||||||
"nameResourceKey": "exploitGuardASRHeaderText",
|
"nameResourceKey": "exploitGuardASRHeaderText",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -22,7 +22,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 30,
|
"category": 33,
|
||||||
"nameResourceKey": "exploitGuardASRLinkText",
|
"nameResourceKey": "exploitGuardASRLinkText",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -38,7 +38,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 30,
|
"category": 33,
|
||||||
"nameResourceKey": "exploitGuardASRRulesName",
|
"nameResourceKey": "exploitGuardASRRulesName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -52,7 +52,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 30,
|
"category": 33,
|
||||||
"nameResourceKey": "exploitGuardASRPreventCredentialStealingName",
|
"nameResourceKey": "exploitGuardASRPreventCredentialStealingName",
|
||||||
"descriptionResourceKey": "exploitGuardASRPreventCredentialStealingDesc",
|
"descriptionResourceKey": "exploitGuardASRPreventCredentialStealingDesc",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -84,7 +84,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 30,
|
"category": 33,
|
||||||
"nameResourceKey": "exploitGuardASRAdobeReaderLaunchChildProcessName",
|
"nameResourceKey": "exploitGuardASRAdobeReaderLaunchChildProcessName",
|
||||||
"descriptionResourceKey": "exploitGuardASRAdobeReaderLaunchChildProcessDesc",
|
"descriptionResourceKey": "exploitGuardASRAdobeReaderLaunchChildProcessDesc",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -118,7 +118,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 30,
|
"category": 33,
|
||||||
"nameResourceKey": "exploitGuardASROfficeMacros",
|
"nameResourceKey": "exploitGuardASROfficeMacros",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -132,7 +132,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 30,
|
"category": 33,
|
||||||
"nameResourceKey": "exploitGuardASROfficeAppsInjectionName",
|
"nameResourceKey": "exploitGuardASROfficeAppsInjectionName",
|
||||||
"descriptionResourceKey": "exploitGuardASROfficeAppsInjectionDesc",
|
"descriptionResourceKey": "exploitGuardASROfficeAppsInjectionDesc",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -164,7 +164,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 30,
|
"category": 33,
|
||||||
"nameResourceKey": "exploitGuardASROfficeAppsCreatingExecutableContentName",
|
"nameResourceKey": "exploitGuardASROfficeAppsCreatingExecutableContentName",
|
||||||
"descriptionResourceKey": "exploitGuardASROfficeAppsCreatingExecutableContentDesc",
|
"descriptionResourceKey": "exploitGuardASROfficeAppsCreatingExecutableContentDesc",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -196,7 +196,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 30,
|
"category": 33,
|
||||||
"nameResourceKey": "exploitGuardASROfficeAppLanchChildName",
|
"nameResourceKey": "exploitGuardASROfficeAppLanchChildName",
|
||||||
"descriptionResourceKey": "exploitGuardASROfficeAppLanchChildDesc",
|
"descriptionResourceKey": "exploitGuardASROfficeAppLanchChildDesc",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -228,7 +228,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 30,
|
"category": 33,
|
||||||
"nameResourceKey": "exploitGuardASROfficeAppWin32ImportsName",
|
"nameResourceKey": "exploitGuardASROfficeAppWin32ImportsName",
|
||||||
"descriptionResourceKey": "exploitGuardASROfficeAppWin32ImportsDesc",
|
"descriptionResourceKey": "exploitGuardASROfficeAppWin32ImportsDesc",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -260,7 +260,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 30,
|
"category": 33,
|
||||||
"nameResourceKey": "exploitGuardASROfficeCommunicationAppsLaunchChildProcessName",
|
"nameResourceKey": "exploitGuardASROfficeCommunicationAppsLaunchChildProcessName",
|
||||||
"descriptionResourceKey": "exploitGuardASROfficeCommunicationAppsLaunchChildProcessDesc",
|
"descriptionResourceKey": "exploitGuardASROfficeCommunicationAppsLaunchChildProcessDesc",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -294,7 +294,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 30,
|
"category": 33,
|
||||||
"nameResourceKey": "exploitGuardASRScriptThreatsHeader",
|
"nameResourceKey": "exploitGuardASRScriptThreatsHeader",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -308,7 +308,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 30,
|
"category": 33,
|
||||||
"nameResourceKey": "exploitGuardASRObfuscatedMacroCodeName",
|
"nameResourceKey": "exploitGuardASRObfuscatedMacroCodeName",
|
||||||
"descriptionResourceKey": "exploitGuardASRObfuscatedMacroCodeDesc",
|
"descriptionResourceKey": "exploitGuardASRObfuscatedMacroCodeDesc",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -340,7 +340,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 30,
|
"category": 33,
|
||||||
"nameResourceKey": "exploitGuardASRExecutingDownloadedContentName",
|
"nameResourceKey": "exploitGuardASRExecutingDownloadedContentName",
|
||||||
"descriptionResourceKey": "exploitGuardASRExecutingDownloadedContentDesc",
|
"descriptionResourceKey": "exploitGuardASRExecutingDownloadedContentDesc",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -372,7 +372,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 30,
|
"category": 33,
|
||||||
"nameResourceKey": "exploitGuardASRProcessCreationName",
|
"nameResourceKey": "exploitGuardASRProcessCreationName",
|
||||||
"descriptionResourceKey": "exploitGuardASRProcessCreationDesc",
|
"descriptionResourceKey": "exploitGuardASRProcessCreationDesc",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -404,7 +404,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 30,
|
"category": 33,
|
||||||
"nameResourceKey": "exploitGuardASRUntrustedUSBProcessName",
|
"nameResourceKey": "exploitGuardASRUntrustedUSBProcessName",
|
||||||
"descriptionResourceKey": "exploitGuardASRUntrustedUSBProcessDesc",
|
"descriptionResourceKey": "exploitGuardASRUntrustedUSBProcessDesc",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -436,7 +436,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 30,
|
"category": 33,
|
||||||
"nameResourceKey": "exploitGuardASRUntrustedExecutableName",
|
"nameResourceKey": "exploitGuardASRUntrustedExecutableName",
|
||||||
"descriptionResourceKey": "exploitGuardASRUntrustedExecutableDesc",
|
"descriptionResourceKey": "exploitGuardASRUntrustedExecutableDesc",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -470,7 +470,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 30,
|
"category": 33,
|
||||||
"nameResourceKey": "exploitGuardASREmailHeader",
|
"nameResourceKey": "exploitGuardASREmailHeader",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -484,7 +484,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 30,
|
"category": 33,
|
||||||
"nameResourceKey": "exploitGuardASREmailEcecutableContentName",
|
"nameResourceKey": "exploitGuardASREmailEcecutableContentName",
|
||||||
"descriptionResourceKey": "exploitGuardASREmailEcecutableContentDesc",
|
"descriptionResourceKey": "exploitGuardASREmailEcecutableContentDesc",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -518,7 +518,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 30,
|
"category": 33,
|
||||||
"nameResourceKey": "exploitGuardASRAdvancedRansomewareTitle",
|
"nameResourceKey": "exploitGuardASRAdvancedRansomewareTitle",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -532,7 +532,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 30,
|
"category": 33,
|
||||||
"nameResourceKey": "exploitGuardASRAdvancedRansomewareName",
|
"nameResourceKey": "exploitGuardASRAdvancedRansomewareName",
|
||||||
"descriptionResourceKey": "exploitGuardASRAdvancedRansomewareDesc",
|
"descriptionResourceKey": "exploitGuardASRAdvancedRansomewareDesc",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -566,7 +566,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 30,
|
"category": 33,
|
||||||
"nameResourceKey": "exploitGuardASRExceptionsTitle",
|
"nameResourceKey": "exploitGuardASRExceptionsTitle",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -583,7 +583,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 30,
|
"category": 33,
|
||||||
"nameResourceKey": "exploitGuardASRFilesandFoldersName",
|
"nameResourceKey": "exploitGuardASRFilesandFoldersName",
|
||||||
"descriptionResourceKey": "exploitGuardASRFilesandFoldersDesc",
|
"descriptionResourceKey": "exploitGuardASRFilesandFoldersDesc",
|
||||||
"emptyValueResourceKey": "exploitGuardASRFilesandFoldersHint",
|
"emptyValueResourceKey": "exploitGuardASRFilesandFoldersHint",
|
||||||
@@ -601,7 +601,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 21,
|
"dataType": 21,
|
||||||
"category": 30,
|
"category": 33,
|
||||||
"nameResourceKey": "exploitGuardASRExceptionTableName",
|
"nameResourceKey": "exploitGuardASRExceptionTableName",
|
||||||
"descriptionResourceKey": "exploitGuardASRExceptionTableDesc",
|
"descriptionResourceKey": "exploitGuardASRExceptionTableDesc",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -617,7 +617,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 5,
|
"dataType": 5,
|
||||||
"category": 30,
|
"category": 33,
|
||||||
"nameResourceKey": "exploitGuardASRChevronName",
|
"nameResourceKey": "exploitGuardASRChevronName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -635,7 +635,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 30,
|
"category": 33,
|
||||||
"nameResourceKey": "exploitGuardCFHeadingText",
|
"nameResourceKey": "exploitGuardCFHeadingText",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -651,7 +651,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 30,
|
"category": 33,
|
||||||
"nameResourceKey": "learnMore",
|
"nameResourceKey": "learnMore",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -665,7 +665,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 30,
|
"category": 33,
|
||||||
"nameResourceKey": "exploitGuardCFFolderProtectionOptionName",
|
"nameResourceKey": "exploitGuardCFFolderProtectionOptionName",
|
||||||
"descriptionResourceKey": "exploitGuardCFFolderProtectionOptionDesc",
|
"descriptionResourceKey": "exploitGuardCFFolderProtectionOptionDesc",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -674,7 +674,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 30,
|
"category": 33,
|
||||||
"nameResourceKey": "apps",
|
"nameResourceKey": "apps",
|
||||||
"emptyValueResourceKey": "exploitGuardCFAdditonalAppsHint",
|
"emptyValueResourceKey": "exploitGuardCFAdditonalAppsHint",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -691,7 +691,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 21,
|
"dataType": 21,
|
||||||
"category": 30,
|
"category": 33,
|
||||||
"nameResourceKey": "exploitGuardCFAdditonalAppsName",
|
"nameResourceKey": "exploitGuardCFAdditonalAppsName",
|
||||||
"descriptionResourceKey": "exploitGuardCFAdditonalAppsDesc",
|
"descriptionResourceKey": "exploitGuardCFAdditonalAppsDesc",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -710,7 +710,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 30,
|
"category": 33,
|
||||||
"nameResourceKey": "folders",
|
"nameResourceKey": "folders",
|
||||||
"emptyValueResourceKey": "exploitGuardCFAdditionalFoldersHint",
|
"emptyValueResourceKey": "exploitGuardCFAdditionalFoldersHint",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -727,7 +727,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 21,
|
"dataType": 21,
|
||||||
"category": 30,
|
"category": 33,
|
||||||
"nameResourceKey": "exploitGuardCFAdditionalFoldersName",
|
"nameResourceKey": "exploitGuardCFAdditionalFoldersName",
|
||||||
"descriptionResourceKey": "exploitGuardCFAdditionalFoldersDesc",
|
"descriptionResourceKey": "exploitGuardCFAdditionalFoldersDesc",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -778,7 +778,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 5,
|
"dataType": 5,
|
||||||
"category": 30,
|
"category": 33,
|
||||||
"nameResourceKey": "exploitGuardCFChevronName",
|
"nameResourceKey": "exploitGuardCFChevronName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -796,7 +796,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 30,
|
"category": 33,
|
||||||
"nameResourceKey": "exploitGuardNFTitle",
|
"nameResourceKey": "exploitGuardNFTitle",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -812,7 +812,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 30,
|
"category": 33,
|
||||||
"nameResourceKey": "learnMore",
|
"nameResourceKey": "learnMore",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -826,7 +826,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 30,
|
"category": 33,
|
||||||
"nameResourceKey": "exploitGuardNFProtectionName",
|
"nameResourceKey": "exploitGuardNFProtectionName",
|
||||||
"descriptionResourceKey": "exploitGuardNFProtectionDesc",
|
"descriptionResourceKey": "exploitGuardNFProtectionDesc",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -863,7 +863,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 5,
|
"dataType": 5,
|
||||||
"category": 30,
|
"category": 33,
|
||||||
"nameResourceKey": "exploitGuardNFChevronName",
|
"nameResourceKey": "exploitGuardNFChevronName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -879,7 +879,7 @@
|
|||||||
"complexOptions": [
|
"complexOptions": [
|
||||||
{
|
{
|
||||||
"dataType": 10,
|
"dataType": 10,
|
||||||
"category": 30,
|
"category": 33,
|
||||||
"nameResourceKey": "exploitGuardEPWarningMessage",
|
"nameResourceKey": "exploitGuardEPWarningMessage",
|
||||||
"descriptionResourceKey": "exploitGuardEPWarningMessage",
|
"descriptionResourceKey": "exploitGuardEPWarningMessage",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -896,7 +896,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 30,
|
"category": 33,
|
||||||
"nameResourceKey": "exploitGuardEPExplainationPart1",
|
"nameResourceKey": "exploitGuardEPExplainationPart1",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -912,7 +912,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 30,
|
"category": 33,
|
||||||
"nameResourceKey": "exploitGuardEPExplainationUrlText",
|
"nameResourceKey": "exploitGuardEPExplainationUrlText",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -928,7 +928,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 30,
|
"category": 33,
|
||||||
"nameResourceKey": "exploitGuardEPExplainationPart2",
|
"nameResourceKey": "exploitGuardEPExplainationPart2",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -944,7 +944,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 30,
|
"category": 33,
|
||||||
"nameResourceKey": "exploitGuardEPExplainationPart3",
|
"nameResourceKey": "exploitGuardEPExplainationPart3",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -960,7 +960,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 30,
|
"category": 33,
|
||||||
"nameResourceKey": "exploitGuardEPExplainationPart4",
|
"nameResourceKey": "exploitGuardEPExplainationPart4",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -976,7 +976,7 @@
|
|||||||
"dataEntityKey": "defenderExploitProtectionXml",
|
"dataEntityKey": "defenderExploitProtectionXml",
|
||||||
"filenameEntityKey": "defenderExploitProtectionXmlFileName",
|
"filenameEntityKey": "defenderExploitProtectionXmlFileName",
|
||||||
"dataType": 2,
|
"dataType": 2,
|
||||||
"category": 30,
|
"category": 33,
|
||||||
"nameResourceKey": "exploitGuardEPXmlText",
|
"nameResourceKey": "exploitGuardEPXmlText",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -992,7 +992,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 30,
|
"category": 33,
|
||||||
"nameResourceKey": "exploitGuardEPBlockEditingName",
|
"nameResourceKey": "exploitGuardEPBlockEditingName",
|
||||||
"descriptionResourceKey": "exploitGuardEPBlockEditingDesc",
|
"descriptionResourceKey": "exploitGuardEPBlockEditingDesc",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1009,7 +1009,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 5,
|
"dataType": 5,
|
||||||
"category": 30,
|
"category": 33,
|
||||||
"nameResourceKey": "exploitGuardEPChevronName",
|
"nameResourceKey": "exploitGuardEPChevronName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "globalConfigurationsName",
|
"nameResourceKey": "globalConfigurationsName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -20,7 +20,7 @@
|
|||||||
"isSettingDescription": true,
|
"isSettingDescription": true,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "globalConfigurationsDescription",
|
"nameResourceKey": "globalConfigurationsDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -34,7 +34,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "fileTransferProtocolName",
|
"nameResourceKey": "fileTransferProtocolName",
|
||||||
"descriptionResourceKey": "fileTransferProtocolDescription",
|
"descriptionResourceKey": "fileTransferProtocolDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -63,7 +63,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "securityAssociationIdleTimeName",
|
"nameResourceKey": "securityAssociationIdleTimeName",
|
||||||
"descriptionResourceKey": "securityAssociationIdleTimeDescription",
|
"descriptionResourceKey": "securityAssociationIdleTimeDescription",
|
||||||
"emptyValueResourceKey": "securityAssociationIdleTimeHint",
|
"emptyValueResourceKey": "securityAssociationIdleTimeHint",
|
||||||
@@ -80,7 +80,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "presharedKeyEncodingName",
|
"nameResourceKey": "presharedKeyEncodingName",
|
||||||
"descriptionResourceKey": "presharedKeyEncodingDescription",
|
"descriptionResourceKey": "presharedKeyEncodingDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -97,7 +97,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 13,
|
"dataType": 13,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "iPsecExemptionsName",
|
"nameResourceKey": "iPsecExemptionsName",
|
||||||
"descriptionResourceKey": "iPsecExemptionsDescription",
|
"descriptionResourceKey": "iPsecExemptionsDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -137,7 +137,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "cRLCheckingName",
|
"nameResourceKey": "cRLCheckingName",
|
||||||
"descriptionResourceKey": "cRLCheckingDescription",
|
"descriptionResourceKey": "cRLCheckingDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -174,7 +174,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "opportunisticallyMatchAuthName",
|
"nameResourceKey": "opportunisticallyMatchAuthName",
|
||||||
"descriptionResourceKey": "opportunisticallyMatchAuthDescription",
|
"descriptionResourceKey": "opportunisticallyMatchAuthDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -203,7 +203,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "packetQueuingName",
|
"nameResourceKey": "packetQueuingName",
|
||||||
"descriptionResourceKey": "packetQueuingDescription",
|
"descriptionResourceKey": "packetQueuingDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -247,7 +247,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "networkSettingsName",
|
"nameResourceKey": "networkSettingsName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -263,7 +263,7 @@
|
|||||||
"isSettingDescription": true,
|
"isSettingDescription": true,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "networkSettingsSubtitle",
|
"nameResourceKey": "networkSettingsSubtitle",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -277,7 +277,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 9,
|
"dataType": 9,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"complexOptions": [
|
"complexOptions": [
|
||||||
@@ -285,7 +285,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "generalNetworkSettingsHeader",
|
"nameResourceKey": "generalNetworkSettingsHeader",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -299,19 +299,19 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "enableWindowsDefenderFirewallName",
|
"nameResourceKey": "enableWindowsDefenderFirewallName",
|
||||||
"descriptionResourceKey": "windowsDefenderFirewallDescription",
|
"descriptionResourceKey": "windowsDefenderFirewallDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "stealthModeName",
|
"nameResourceKey": "stealthModeName",
|
||||||
"descriptionResourceKey": "stealthModeDescription",
|
"descriptionResourceKey": "stealthModeDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "iPsecSecuredPacketExemptionName",
|
"nameResourceKey": "iPsecSecuredPacketExemptionName",
|
||||||
"descriptionResourceKey": "iPsecSecuredPacketExemptionDescription",
|
"descriptionResourceKey": "iPsecSecuredPacketExemptionDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -368,7 +368,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "shieldedName",
|
"nameResourceKey": "shieldedName",
|
||||||
"descriptionResourceKey": "shieldedDescription",
|
"descriptionResourceKey": "shieldedDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -400,7 +400,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "unicastResponsesToMulticastBroadcastsName",
|
"nameResourceKey": "unicastResponsesToMulticastBroadcastsName",
|
||||||
"descriptionResourceKey": "unicastResponsesToMulticastBroadcastsDescription",
|
"descriptionResourceKey": "unicastResponsesToMulticastBroadcastsDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -432,7 +432,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "inboundNotificationsName",
|
"nameResourceKey": "inboundNotificationsName",
|
||||||
"descriptionResourceKey": "inboundNotificationsDescription",
|
"descriptionResourceKey": "inboundNotificationsDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -464,7 +464,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "outboundConnectionsName",
|
"nameResourceKey": "outboundConnectionsName",
|
||||||
"descriptionResourceKey": "outboundConnectionsDescription",
|
"descriptionResourceKey": "outboundConnectionsDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -496,7 +496,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "inboundConnectionsName",
|
"nameResourceKey": "inboundConnectionsName",
|
||||||
"descriptionResourceKey": "inboundConnectionsDescription",
|
"descriptionResourceKey": "inboundConnectionsDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -530,7 +530,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "ruleMergingName",
|
"nameResourceKey": "ruleMergingName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -544,7 +544,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "authorizedAppRulesName",
|
"nameResourceKey": "authorizedAppRulesName",
|
||||||
"descriptionResourceKey": "authorizedAppRulesDescription",
|
"descriptionResourceKey": "authorizedAppRulesDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -576,7 +576,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "globalRulesName",
|
"nameResourceKey": "globalRulesName",
|
||||||
"descriptionResourceKey": "globalRulesDescription",
|
"descriptionResourceKey": "globalRulesDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -608,7 +608,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "localStoreName",
|
"nameResourceKey": "localStoreName",
|
||||||
"descriptionResourceKey": "localStoreDescription",
|
"descriptionResourceKey": "localStoreDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -640,7 +640,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "iPsecRulesName",
|
"nameResourceKey": "iPsecRulesName",
|
||||||
"descriptionResourceKey": "iPsecRulesDescription",
|
"descriptionResourceKey": "iPsecRulesDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -682,7 +682,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 5,
|
"dataType": 5,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "domainNetworkName",
|
"nameResourceKey": "domainNetworkName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -700,7 +700,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "generalNetworkSettingsHeader",
|
"nameResourceKey": "generalNetworkSettingsHeader",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -714,19 +714,19 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "enableWindowsDefenderFirewallName",
|
"nameResourceKey": "enableWindowsDefenderFirewallName",
|
||||||
"descriptionResourceKey": "windowsDefenderFirewallDescription",
|
"descriptionResourceKey": "windowsDefenderFirewallDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "stealthModeName",
|
"nameResourceKey": "stealthModeName",
|
||||||
"descriptionResourceKey": "stealthModeDescription",
|
"descriptionResourceKey": "stealthModeDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "iPsecSecuredPacketExemptionName",
|
"nameResourceKey": "iPsecSecuredPacketExemptionName",
|
||||||
"descriptionResourceKey": "iPsecSecuredPacketExemptionDescription",
|
"descriptionResourceKey": "iPsecSecuredPacketExemptionDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -783,7 +783,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "shieldedName",
|
"nameResourceKey": "shieldedName",
|
||||||
"descriptionResourceKey": "shieldedDescription",
|
"descriptionResourceKey": "shieldedDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -815,7 +815,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "unicastResponsesToMulticastBroadcastsName",
|
"nameResourceKey": "unicastResponsesToMulticastBroadcastsName",
|
||||||
"descriptionResourceKey": "unicastResponsesToMulticastBroadcastsDescription",
|
"descriptionResourceKey": "unicastResponsesToMulticastBroadcastsDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -847,7 +847,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "inboundNotificationsName",
|
"nameResourceKey": "inboundNotificationsName",
|
||||||
"descriptionResourceKey": "inboundNotificationsDescription",
|
"descriptionResourceKey": "inboundNotificationsDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -879,7 +879,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "outboundConnectionsName",
|
"nameResourceKey": "outboundConnectionsName",
|
||||||
"descriptionResourceKey": "outboundConnectionsDescription",
|
"descriptionResourceKey": "outboundConnectionsDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -911,7 +911,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "inboundConnectionsName",
|
"nameResourceKey": "inboundConnectionsName",
|
||||||
"descriptionResourceKey": "inboundConnectionsDescription",
|
"descriptionResourceKey": "inboundConnectionsDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -945,7 +945,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "ruleMergingName",
|
"nameResourceKey": "ruleMergingName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -959,7 +959,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "authorizedAppRulesName",
|
"nameResourceKey": "authorizedAppRulesName",
|
||||||
"descriptionResourceKey": "authorizedAppRulesDescription",
|
"descriptionResourceKey": "authorizedAppRulesDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -991,7 +991,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "globalRulesName",
|
"nameResourceKey": "globalRulesName",
|
||||||
"descriptionResourceKey": "globalRulesDescription",
|
"descriptionResourceKey": "globalRulesDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1023,7 +1023,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "localStoreName",
|
"nameResourceKey": "localStoreName",
|
||||||
"descriptionResourceKey": "localStoreDescription",
|
"descriptionResourceKey": "localStoreDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1055,7 +1055,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "iPsecRulesName",
|
"nameResourceKey": "iPsecRulesName",
|
||||||
"descriptionResourceKey": "iPsecRulesDescription",
|
"descriptionResourceKey": "iPsecRulesDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1097,7 +1097,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 5,
|
"dataType": 5,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "privateNetworkName",
|
"nameResourceKey": "privateNetworkName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -1115,7 +1115,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "generalNetworkSettingsHeader",
|
"nameResourceKey": "generalNetworkSettingsHeader",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -1129,19 +1129,19 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "enableWindowsDefenderFirewallName",
|
"nameResourceKey": "enableWindowsDefenderFirewallName",
|
||||||
"descriptionResourceKey": "windowsDefenderFirewallDescription",
|
"descriptionResourceKey": "windowsDefenderFirewallDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "stealthModeName",
|
"nameResourceKey": "stealthModeName",
|
||||||
"descriptionResourceKey": "stealthModeDescription",
|
"descriptionResourceKey": "stealthModeDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "iPsecSecuredPacketExemptionName",
|
"nameResourceKey": "iPsecSecuredPacketExemptionName",
|
||||||
"descriptionResourceKey": "iPsecSecuredPacketExemptionDescription",
|
"descriptionResourceKey": "iPsecSecuredPacketExemptionDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1198,7 +1198,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "shieldedName",
|
"nameResourceKey": "shieldedName",
|
||||||
"descriptionResourceKey": "shieldedDescription",
|
"descriptionResourceKey": "shieldedDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1230,7 +1230,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "unicastResponsesToMulticastBroadcastsName",
|
"nameResourceKey": "unicastResponsesToMulticastBroadcastsName",
|
||||||
"descriptionResourceKey": "unicastResponsesToMulticastBroadcastsDescription",
|
"descriptionResourceKey": "unicastResponsesToMulticastBroadcastsDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1262,7 +1262,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "inboundNotificationsName",
|
"nameResourceKey": "inboundNotificationsName",
|
||||||
"descriptionResourceKey": "inboundNotificationsDescription",
|
"descriptionResourceKey": "inboundNotificationsDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1294,7 +1294,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "outboundConnectionsName",
|
"nameResourceKey": "outboundConnectionsName",
|
||||||
"descriptionResourceKey": "outboundConnectionsDescription",
|
"descriptionResourceKey": "outboundConnectionsDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1326,7 +1326,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "inboundConnectionsName",
|
"nameResourceKey": "inboundConnectionsName",
|
||||||
"descriptionResourceKey": "inboundConnectionsDescription",
|
"descriptionResourceKey": "inboundConnectionsDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1360,7 +1360,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "ruleMergingName",
|
"nameResourceKey": "ruleMergingName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -1374,7 +1374,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "authorizedAppRulesName",
|
"nameResourceKey": "authorizedAppRulesName",
|
||||||
"descriptionResourceKey": "authorizedAppRulesDescription",
|
"descriptionResourceKey": "authorizedAppRulesDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1406,7 +1406,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "globalRulesName",
|
"nameResourceKey": "globalRulesName",
|
||||||
"descriptionResourceKey": "globalRulesDescription",
|
"descriptionResourceKey": "globalRulesDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1438,7 +1438,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "localStoreName",
|
"nameResourceKey": "localStoreName",
|
||||||
"descriptionResourceKey": "localStoreDescription",
|
"descriptionResourceKey": "localStoreDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1470,7 +1470,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "iPsecRulesName",
|
"nameResourceKey": "iPsecRulesName",
|
||||||
"descriptionResourceKey": "iPsecRulesDescription",
|
"descriptionResourceKey": "iPsecRulesDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1512,7 +1512,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 5,
|
"dataType": 5,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "publicNetworkName",
|
"nameResourceKey": "publicNetworkName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -1536,7 +1536,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "firewallRules",
|
"nameResourceKey": "firewallRules",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -1552,7 +1552,7 @@
|
|||||||
"isSettingDescription": true,
|
"isSettingDescription": true,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "firewallCreateRules",
|
"nameResourceKey": "firewallCreateRules",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -1569,7 +1569,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "firewallRuleName",
|
"nameResourceKey": "firewallRuleName",
|
||||||
"descriptionResourceKey": "firewallRuleNameTooltip",
|
"descriptionResourceKey": "firewallRuleNameTooltip",
|
||||||
"emptyValueResourceKey": "firewallRuleNamePlaceholder",
|
"emptyValueResourceKey": "firewallRuleNamePlaceholder",
|
||||||
@@ -1588,7 +1588,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "firewallRuleDescription",
|
"nameResourceKey": "firewallRuleDescription",
|
||||||
"descriptionResourceKey": "firewallRuleDescriptionTooltip",
|
"descriptionResourceKey": "firewallRuleDescriptionTooltip",
|
||||||
"emptyValueResourceKey": "firewallRuleDescriptionPlaceholder",
|
"emptyValueResourceKey": "firewallRuleDescriptionPlaceholder",
|
||||||
@@ -1607,7 +1607,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "firewallRuleDirection",
|
"nameResourceKey": "firewallRuleDirection",
|
||||||
"descriptionResourceKey": "firewallRuleDirectionTooltip",
|
"descriptionResourceKey": "firewallRuleDirectionTooltip",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1640,7 +1640,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "firewallRuleAction",
|
"nameResourceKey": "firewallRuleAction",
|
||||||
"descriptionResourceKey": "firewallRuleActionTooltip",
|
"descriptionResourceKey": "firewallRuleActionTooltip",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1673,7 +1673,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 13,
|
"dataType": 13,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "firewallRuleNetworkType",
|
"nameResourceKey": "firewallRuleNetworkType",
|
||||||
"descriptionResourceKey": "firewallRuleNetworkTypeTooltip",
|
"descriptionResourceKey": "firewallRuleNetworkTypeTooltip",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1708,7 +1708,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "firewallRuleApplicationSettingsHeader",
|
"nameResourceKey": "firewallRuleApplicationSettingsHeader",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -1726,7 +1726,7 @@
|
|||||||
"isSettingDescription": true,
|
"isSettingDescription": true,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "firewallRuleApplicationSettingsSubheader",
|
"nameResourceKey": "firewallRuleApplicationSettingsSubheader",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -1742,7 +1742,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "firewallRuleApplication",
|
"nameResourceKey": "firewallRuleApplication",
|
||||||
"descriptionResourceKey": "firewallRuleApplicationTooltip",
|
"descriptionResourceKey": "firewallRuleApplicationTooltip",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1760,7 +1760,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "firewallRulePackageFamilyName",
|
"nameResourceKey": "firewallRulePackageFamilyName",
|
||||||
"descriptionResourceKey": "firewallRulePackageFamilyNameTooltip",
|
"descriptionResourceKey": "firewallRulePackageFamilyNameTooltip",
|
||||||
"emptyValueResourceKey": "firewallRulePackageFamilyNamePlaceholder",
|
"emptyValueResourceKey": "firewallRulePackageFamilyNamePlaceholder",
|
||||||
@@ -1784,7 +1784,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "firewallRuleFileName",
|
"nameResourceKey": "firewallRuleFileName",
|
||||||
"descriptionResourceKey": "firewallRuleFileNameTooltip",
|
"descriptionResourceKey": "firewallRuleFileNameTooltip",
|
||||||
"emptyValueResourceKey": "firewallRuleFileNamePlaceholder",
|
"emptyValueResourceKey": "firewallRuleFileNamePlaceholder",
|
||||||
@@ -1808,7 +1808,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "firewallRuleServiceName",
|
"nameResourceKey": "firewallRuleServiceName",
|
||||||
"descriptionResourceKey": "firewallRuleServiceNameTooltip",
|
"descriptionResourceKey": "firewallRuleServiceNameTooltip",
|
||||||
"emptyValueResourceKey": "firewallRuleServiceNamePlaceholder",
|
"emptyValueResourceKey": "firewallRuleServiceNamePlaceholder",
|
||||||
@@ -1839,7 +1839,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "firewallRuleIPAddressSettingsHeader",
|
"nameResourceKey": "firewallRuleIPAddressSettingsHeader",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -1857,7 +1857,7 @@
|
|||||||
"isSettingDescription": true,
|
"isSettingDescription": true,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "firewallRuleIPAddressSettingsSubheader",
|
"nameResourceKey": "firewallRuleIPAddressSettingsSubheader",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -1873,7 +1873,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "firewallRuleIPAddressSettingsLocal",
|
"nameResourceKey": "firewallRuleIPAddressSettingsLocal",
|
||||||
"descriptionResourceKey": "firewallRuleIPAddressSettingsLocalTooltip",
|
"descriptionResourceKey": "firewallRuleIPAddressSettingsLocalTooltip",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1891,7 +1891,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "firewallRuleIPAddressSettingsAddresses",
|
"nameResourceKey": "firewallRuleIPAddressSettingsAddresses",
|
||||||
"emptyValueResourceKey": "firewallRuleIPAddressSettingsLocalPlaceholder",
|
"emptyValueResourceKey": "firewallRuleIPAddressSettingsLocalPlaceholder",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1919,7 +1919,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "firewallRuleIPAddressSettingsRemote",
|
"nameResourceKey": "firewallRuleIPAddressSettingsRemote",
|
||||||
"descriptionResourceKey": "firewallRuleIPAddressSettingsRemoteTooltip",
|
"descriptionResourceKey": "firewallRuleIPAddressSettingsRemoteTooltip",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1937,7 +1937,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "firewallRuleIPAddressSettingsAddresses",
|
"nameResourceKey": "firewallRuleIPAddressSettingsAddresses",
|
||||||
"emptyValueResourceKey": "firewallRuleIPAddressSettingsRemotePlaceholder",
|
"emptyValueResourceKey": "firewallRuleIPAddressSettingsRemotePlaceholder",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1967,7 +1967,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "firewallRulePortAndProtocolHeader",
|
"nameResourceKey": "firewallRulePortAndProtocolHeader",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -1985,7 +1985,7 @@
|
|||||||
"isSettingDescription": true,
|
"isSettingDescription": true,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "firewallRulePortAndProtocolSubheader",
|
"nameResourceKey": "firewallRulePortAndProtocolSubheader",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -2001,7 +2001,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "firewallRuleProtocolSetting",
|
"nameResourceKey": "firewallRuleProtocolSetting",
|
||||||
"descriptionResourceKey": "firewallRuleProtocolTooltip",
|
"descriptionResourceKey": "firewallRuleProtocolTooltip",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -2019,7 +2019,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "firewallRuleLocalPortsSetting",
|
"nameResourceKey": "firewallRuleLocalPortsSetting",
|
||||||
"descriptionResourceKey": "firewallRulePortSettingTooltip",
|
"descriptionResourceKey": "firewallRulePortSettingTooltip",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -2037,7 +2037,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "firewallRulePortsLabel",
|
"nameResourceKey": "firewallRulePortsLabel",
|
||||||
"emptyValueResourceKey": "firewallRuleLocalPortsPlaceholder",
|
"emptyValueResourceKey": "firewallRuleLocalPortsPlaceholder",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -2063,7 +2063,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "firewallRuleRemotePortsSetting",
|
"nameResourceKey": "firewallRuleRemotePortsSetting",
|
||||||
"descriptionResourceKey": "firewallRulePortSettingTooltip",
|
"descriptionResourceKey": "firewallRulePortSettingTooltip",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -2081,7 +2081,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "firewallRulePortsLabel",
|
"nameResourceKey": "firewallRulePortsLabel",
|
||||||
"emptyValueResourceKey": "firewallRuleRemotePortsPlaceholder",
|
"emptyValueResourceKey": "firewallRuleRemotePortsPlaceholder",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -2114,7 +2114,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "firewallRuleLocalPortsSetting",
|
"nameResourceKey": "firewallRuleLocalPortsSetting",
|
||||||
"descriptionResourceKey": "firewallRulePortSettingTooltip",
|
"descriptionResourceKey": "firewallRulePortSettingTooltip",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -2132,7 +2132,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "firewallRulePortsLabel",
|
"nameResourceKey": "firewallRulePortsLabel",
|
||||||
"emptyValueResourceKey": "firewallRuleLocalPortsPlaceholder",
|
"emptyValueResourceKey": "firewallRuleLocalPortsPlaceholder",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -2158,7 +2158,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "firewallRuleRemotePortsSetting",
|
"nameResourceKey": "firewallRuleRemotePortsSetting",
|
||||||
"descriptionResourceKey": "firewallRulePortSettingTooltip",
|
"descriptionResourceKey": "firewallRulePortSettingTooltip",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -2176,7 +2176,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "firewallRulePortsLabel",
|
"nameResourceKey": "firewallRulePortsLabel",
|
||||||
"emptyValueResourceKey": "firewallRuleRemotePortsPlaceholder",
|
"emptyValueResourceKey": "firewallRuleRemotePortsPlaceholder",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -2209,7 +2209,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "firewallRuleProtocolSetting",
|
"nameResourceKey": "firewallRuleProtocolSetting",
|
||||||
"emptyValueResourceKey": "firewallRuleProtocolPlaceholder",
|
"emptyValueResourceKey": "firewallRuleProtocolPlaceholder",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -2239,7 +2239,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "firewallRuleAdvancedConfigurationHeader",
|
"nameResourceKey": "firewallRuleAdvancedConfigurationHeader",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -2255,7 +2255,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 13,
|
"dataType": 13,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "firewallRuleInterfaceTypesSetting",
|
"nameResourceKey": "firewallRuleInterfaceTypesSetting",
|
||||||
"descriptionResourceKey": "firewallRuleInterfaceTypesTooltip",
|
"descriptionResourceKey": "firewallRuleInterfaceTypesTooltip",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -2290,7 +2290,7 @@
|
|||||||
"isSettingDescription": true,
|
"isSettingDescription": true,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "firewallRuleAuthorizedUsersHeader",
|
"nameResourceKey": "firewallRuleAuthorizedUsersHeader",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -2306,7 +2306,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 12,
|
"dataType": 12,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "firewallRuleAuthorizedUsersSubheader",
|
"nameResourceKey": "firewallRuleAuthorizedUsersSubheader",
|
||||||
"descriptionResourceKey": "firewallRuleAuthorizedUsersHeaderTooltip",
|
"descriptionResourceKey": "firewallRuleAuthorizedUsersHeaderTooltip",
|
||||||
"emptyValueResourceKey": "firewallRuleAuthorizedUsersPlaceholder",
|
"emptyValueResourceKey": "firewallRuleAuthorizedUsersPlaceholder",
|
||||||
@@ -2324,7 +2324,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 21,
|
"dataType": 21,
|
||||||
"category": 33,
|
"category": 36,
|
||||||
"nameResourceKey": "empty",
|
"nameResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
"complexOptions": [
|
"complexOptions": [
|
||||||
{
|
{
|
||||||
"dataType": 19,
|
"dataType": 19,
|
||||||
"category": 32,
|
"category": 35,
|
||||||
"nameResourceKey": "localSecurityOptionsBlockMicrosoftAccountsName",
|
"nameResourceKey": "localSecurityOptionsBlockMicrosoftAccountsName",
|
||||||
"descriptionResourceKey": "localSecurityOptionsBlockMicrosoftAccountsDesc",
|
"descriptionResourceKey": "localSecurityOptionsBlockMicrosoftAccountsDesc",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -31,7 +31,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 19,
|
"dataType": 19,
|
||||||
"category": 32,
|
"category": 35,
|
||||||
"nameResourceKey": "localSecurityOptionsBlockRemoteLogonWithBlankPasswordName",
|
"nameResourceKey": "localSecurityOptionsBlockRemoteLogonWithBlankPasswordName",
|
||||||
"descriptionResourceKey": "localSecurityOptionsBlockRemoteLogonWithBlankPasswordDesc",
|
"descriptionResourceKey": "localSecurityOptionsBlockRemoteLogonWithBlankPasswordDesc",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -60,7 +60,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 32,
|
"category": 35,
|
||||||
"nameResourceKey": "localSecurityOptionsAdminText",
|
"nameResourceKey": "localSecurityOptionsAdminText",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -74,7 +74,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 19,
|
"dataType": 19,
|
||||||
"category": 32,
|
"category": 35,
|
||||||
"nameResourceKey": "localSecurityOptionsEnableAdministratorAccountName",
|
"nameResourceKey": "localSecurityOptionsEnableAdministratorAccountName",
|
||||||
"descriptionResourceKey": "localSecurityOptionsEnableAdministratorAccountDesc",
|
"descriptionResourceKey": "localSecurityOptionsEnableAdministratorAccountDesc",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -101,7 +101,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 32,
|
"category": 35,
|
||||||
"nameResourceKey": "localSecurityOptionsAdministratorAccountNameName",
|
"nameResourceKey": "localSecurityOptionsAdministratorAccountNameName",
|
||||||
"descriptionResourceKey": "localSecurityOptionsAdministratorAccountNameDesc",
|
"descriptionResourceKey": "localSecurityOptionsAdministratorAccountNameDesc",
|
||||||
"emptyValueResourceKey": "localSecurityOptionsAdminPlaceholder",
|
"emptyValueResourceKey": "localSecurityOptionsAdminPlaceholder",
|
||||||
@@ -121,7 +121,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 32,
|
"category": 35,
|
||||||
"nameResourceKey": "localSecurityOptionsGuestText",
|
"nameResourceKey": "localSecurityOptionsGuestText",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -135,7 +135,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 19,
|
"dataType": 19,
|
||||||
"category": 32,
|
"category": 35,
|
||||||
"nameResourceKey": "localSecurityOptionsEnableGuestAccountName",
|
"nameResourceKey": "localSecurityOptionsEnableGuestAccountName",
|
||||||
"descriptionResourceKey": "localSecurityOptionsEnableGuestAccountDesc",
|
"descriptionResourceKey": "localSecurityOptionsEnableGuestAccountDesc",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -162,7 +162,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 32,
|
"category": 35,
|
||||||
"nameResourceKey": "localSecurityOptionsGuestAccountNameName",
|
"nameResourceKey": "localSecurityOptionsGuestAccountNameName",
|
||||||
"descriptionResourceKey": "localSecurityOptionsGuestAccountNameDesc",
|
"descriptionResourceKey": "localSecurityOptionsGuestAccountNameDesc",
|
||||||
"emptyValueResourceKey": "localSecurityOptionsGuestPlaceholder",
|
"emptyValueResourceKey": "localSecurityOptionsGuestPlaceholder",
|
||||||
@@ -180,7 +180,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 5,
|
"dataType": 5,
|
||||||
"category": 32,
|
"category": 35,
|
||||||
"nameResourceKey": "localSecurityOptionsAccountsChevronName",
|
"nameResourceKey": "localSecurityOptionsAccountsChevronName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -196,7 +196,7 @@
|
|||||||
"complexOptions": [
|
"complexOptions": [
|
||||||
{
|
{
|
||||||
"dataType": 19,
|
"dataType": 19,
|
||||||
"category": 32,
|
"category": 35,
|
||||||
"nameResourceKey": "localSecurityOptionsAllowUndockWithoutHavingToLogonName",
|
"nameResourceKey": "localSecurityOptionsAllowUndockWithoutHavingToLogonName",
|
||||||
"descriptionResourceKey": "localSecurityOptionsAllowUndockWithoutHavingToLogonDesc",
|
"descriptionResourceKey": "localSecurityOptionsAllowUndockWithoutHavingToLogonDesc",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -223,7 +223,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 19,
|
"dataType": 19,
|
||||||
"category": 32,
|
"category": 35,
|
||||||
"nameResourceKey": "localSecurityOptionsBlockUsersInstallingPrinterDriversName",
|
"nameResourceKey": "localSecurityOptionsBlockUsersInstallingPrinterDriversName",
|
||||||
"descriptionResourceKey": "localSecurityOptionsBlockUsersInstallingPrinterDriversDesc",
|
"descriptionResourceKey": "localSecurityOptionsBlockUsersInstallingPrinterDriversDesc",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -250,7 +250,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 19,
|
"dataType": 19,
|
||||||
"category": 32,
|
"category": 35,
|
||||||
"nameResourceKey": "localSecurityOptionsBlockRemoteOpticalDriveAccessName",
|
"nameResourceKey": "localSecurityOptionsBlockRemoteOpticalDriveAccessName",
|
||||||
"descriptionResourceKey": "localSecurityOptionsBlockRemoteOpticalDriveAccessDesc",
|
"descriptionResourceKey": "localSecurityOptionsBlockRemoteOpticalDriveAccessDesc",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -277,7 +277,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 32,
|
"category": 35,
|
||||||
"nameResourceKey": "localSecurityOptionsFormatAndEjectOfRemovableMediaAllowedUserName",
|
"nameResourceKey": "localSecurityOptionsFormatAndEjectOfRemovableMediaAllowedUserName",
|
||||||
"descriptionResourceKey": "localSecurityOptionsFormatAndEjectOfRemovableMediaAllowedUserDesc",
|
"descriptionResourceKey": "localSecurityOptionsFormatAndEjectOfRemovableMediaAllowedUserDesc",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -314,7 +314,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 5,
|
"dataType": 5,
|
||||||
"category": 32,
|
"category": 35,
|
||||||
"nameResourceKey": "localSecurityOptionsDevicesChevronName",
|
"nameResourceKey": "localSecurityOptionsDevicesChevronName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -330,7 +330,7 @@
|
|||||||
"complexOptions": [
|
"complexOptions": [
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 32,
|
"category": 35,
|
||||||
"nameResourceKey": "localSecurityOptionsMachineInactivityLimitName",
|
"nameResourceKey": "localSecurityOptionsMachineInactivityLimitName",
|
||||||
"descriptionResourceKey": "localSecurityOptionsMachineInactivityLimitDesc",
|
"descriptionResourceKey": "localSecurityOptionsMachineInactivityLimitDesc",
|
||||||
"emptyValueResourceKey": "localSecurityOptionsMachineInactivityLimitPlaceholderText",
|
"emptyValueResourceKey": "localSecurityOptionsMachineInactivityLimitPlaceholderText",
|
||||||
@@ -348,7 +348,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 19,
|
"dataType": 19,
|
||||||
"category": 32,
|
"category": 35,
|
||||||
"nameResourceKey": "localSecurityOptionsDoNotRequireCtrlAltDelName",
|
"nameResourceKey": "localSecurityOptionsDoNotRequireCtrlAltDelName",
|
||||||
"descriptionResourceKey": "localSecurityOptionsDoNotRequireCtrlAltDelDesc",
|
"descriptionResourceKey": "localSecurityOptionsDoNotRequireCtrlAltDelDesc",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -375,7 +375,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 32,
|
"category": 35,
|
||||||
"nameResourceKey": "localSecurityOptionsSmartCardRemovalBehaviorName",
|
"nameResourceKey": "localSecurityOptionsSmartCardRemovalBehaviorName",
|
||||||
"descriptionResourceKey": "localSecurityOptionsSmartCardRemovalBehaviorDesc",
|
"descriptionResourceKey": "localSecurityOptionsSmartCardRemovalBehaviorDesc",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -414,7 +414,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 32,
|
"category": 35,
|
||||||
"nameResourceKey": "localSecurityOptionsDisplayText",
|
"nameResourceKey": "localSecurityOptionsDisplayText",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -428,7 +428,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 32,
|
"category": 35,
|
||||||
"nameResourceKey": "localSecurityOptionsInformationShownOnLockScreenName",
|
"nameResourceKey": "localSecurityOptionsInformationShownOnLockScreenName",
|
||||||
"descriptionResourceKey": "localSecurityOptionsInformationShownOnLockScreenDesc",
|
"descriptionResourceKey": "localSecurityOptionsInformationShownOnLockScreenDesc",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -465,7 +465,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 19,
|
"dataType": 19,
|
||||||
"category": 32,
|
"category": 35,
|
||||||
"nameResourceKey": "localSecurityOptionsHideLastSignedInUserName",
|
"nameResourceKey": "localSecurityOptionsHideLastSignedInUserName",
|
||||||
"descriptionResourceKey": "localSecurityOptionsHideLastSignedInUserDesc",
|
"descriptionResourceKey": "localSecurityOptionsHideLastSignedInUserDesc",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -492,7 +492,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 19,
|
"dataType": 19,
|
||||||
"category": 32,
|
"category": 35,
|
||||||
"nameResourceKey": "localSecurityOptionsHideUsernameAtSignInName",
|
"nameResourceKey": "localSecurityOptionsHideUsernameAtSignInName",
|
||||||
"descriptionResourceKey": "localSecurityOptionsHideUsernameAtSignInDesc",
|
"descriptionResourceKey": "localSecurityOptionsHideUsernameAtSignInDesc",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -519,7 +519,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 32,
|
"category": 35,
|
||||||
"nameResourceKey": "localSecurityOptionsLogOnMessageTitleName",
|
"nameResourceKey": "localSecurityOptionsLogOnMessageTitleName",
|
||||||
"descriptionResourceKey": "localSecurityOptionsLogOnMessageTitleDesc",
|
"descriptionResourceKey": "localSecurityOptionsLogOnMessageTitleDesc",
|
||||||
"emptyValueResourceKey": "localSecurityOptionsLogOnMessageTitlePlaceholder",
|
"emptyValueResourceKey": "localSecurityOptionsLogOnMessageTitlePlaceholder",
|
||||||
@@ -537,7 +537,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 32,
|
"category": 35,
|
||||||
"nameResourceKey": "localSecurityOptionsLogOnMessageTextName",
|
"nameResourceKey": "localSecurityOptionsLogOnMessageTextName",
|
||||||
"descriptionResourceKey": "localSecurityOptionsLogOnMessageTextDesc",
|
"descriptionResourceKey": "localSecurityOptionsLogOnMessageTextDesc",
|
||||||
"emptyValueResourceKey": "localSecurityOptionsLogOnMessageTextPlaceholder",
|
"emptyValueResourceKey": "localSecurityOptionsLogOnMessageTextPlaceholder",
|
||||||
@@ -555,7 +555,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 5,
|
"dataType": 5,
|
||||||
"category": 32,
|
"category": 35,
|
||||||
"nameResourceKey": "localSecurityOptionsInteractiveLogonChevronName",
|
"nameResourceKey": "localSecurityOptionsInteractiveLogonChevronName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -571,7 +571,7 @@
|
|||||||
"complexOptions": [
|
"complexOptions": [
|
||||||
{
|
{
|
||||||
"dataType": 19,
|
"dataType": 19,
|
||||||
"category": 32,
|
"category": 35,
|
||||||
"nameResourceKey": "localSecurityOptionsRestrictAnonymousAccessToNamedPipesAndSharesName",
|
"nameResourceKey": "localSecurityOptionsRestrictAnonymousAccessToNamedPipesAndSharesName",
|
||||||
"descriptionResourceKey": "localSecurityOptionsRestrictAnonymousAccessToNamedPipesAndSharesDesc",
|
"descriptionResourceKey": "localSecurityOptionsRestrictAnonymousAccessToNamedPipesAndSharesDesc",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -598,7 +598,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 19,
|
"dataType": 19,
|
||||||
"category": 32,
|
"category": 35,
|
||||||
"nameResourceKey": "localSecurityOptionsDoNotAllowAnonymousEnumerationOfSAMAccountsName",
|
"nameResourceKey": "localSecurityOptionsDoNotAllowAnonymousEnumerationOfSAMAccountsName",
|
||||||
"descriptionResourceKey": "localSecurityOptionsDoNotAllowAnonymousEnumerationOfSAMAccountsDesc",
|
"descriptionResourceKey": "localSecurityOptionsDoNotAllowAnonymousEnumerationOfSAMAccountsDesc",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -625,7 +625,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 19,
|
"dataType": 19,
|
||||||
"category": 32,
|
"category": 35,
|
||||||
"nameResourceKey": "localSecurityOptionsAllowAnonymousEnumerationOfSAMAccountsAndSharesName",
|
"nameResourceKey": "localSecurityOptionsAllowAnonymousEnumerationOfSAMAccountsAndSharesName",
|
||||||
"descriptionResourceKey": "localSecurityOptionsAllowAnonymousEnumerationOfSAMAccountsAndSharesDesc",
|
"descriptionResourceKey": "localSecurityOptionsAllowAnonymousEnumerationOfSAMAccountsAndSharesDesc",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -652,7 +652,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 19,
|
"dataType": 19,
|
||||||
"category": 32,
|
"category": 35,
|
||||||
"nameResourceKey": "localSecurityOptionsDoNotStoreLANManagerHashValueOnNextPasswordChangeName",
|
"nameResourceKey": "localSecurityOptionsDoNotStoreLANManagerHashValueOnNextPasswordChangeName",
|
||||||
"descriptionResourceKey": "localSecurityOptionsDoNotStoreLANManagerHashValueOnNextPasswordChangeDesc",
|
"descriptionResourceKey": "localSecurityOptionsDoNotStoreLANManagerHashValueOnNextPasswordChangeDesc",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -679,7 +679,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 19,
|
"dataType": 19,
|
||||||
"category": 32,
|
"category": 35,
|
||||||
"nameResourceKey": "localSecurityOptionsAllowPKU2UAuthenticationRequestsName",
|
"nameResourceKey": "localSecurityOptionsAllowPKU2UAuthenticationRequestsName",
|
||||||
"descriptionResourceKey": "localSecurityOptionsAllowPKU2UAuthenticationRequestsDesc",
|
"descriptionResourceKey": "localSecurityOptionsAllowPKU2UAuthenticationRequestsDesc",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -706,13 +706,13 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 32,
|
"category": 35,
|
||||||
"nameResourceKey": "localSecurityOptionsAllowRemoteCallsToSecurityAccountsManagerSwitchName",
|
"nameResourceKey": "localSecurityOptionsAllowRemoteCallsToSecurityAccountsManagerSwitchName",
|
||||||
"descriptionResourceKey": "localSecurityOptionsAllowRemoteCallsToSecurityAccountsManagerSwitchDesc",
|
"descriptionResourceKey": "localSecurityOptionsAllowRemoteCallsToSecurityAccountsManagerSwitchDesc",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 32,
|
"category": 35,
|
||||||
"nameResourceKey": "localSecurityOptionsAllowRemoteCallsToSecurityAccountsManagerName",
|
"nameResourceKey": "localSecurityOptionsAllowRemoteCallsToSecurityAccountsManagerName",
|
||||||
"emptyValueResourceKey": "localSecurityOptionsAllowRemoteCallsToSecurityAccountsManagerTextPlaceholder",
|
"emptyValueResourceKey": "localSecurityOptionsAllowRemoteCallsToSecurityAccountsManagerTextPlaceholder",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -749,7 +749,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 32,
|
"category": 35,
|
||||||
"nameResourceKey": "localSecurityOptionsMinimumSessionSecurityForNtlmSspBasedClientsName",
|
"nameResourceKey": "localSecurityOptionsMinimumSessionSecurityForNtlmSspBasedClientsName",
|
||||||
"descriptionResourceKey": "localSecurityOptionsMinimumSessionSecurityForNtlmSspBasedClientsDesc",
|
"descriptionResourceKey": "localSecurityOptionsMinimumSessionSecurityForNtlmSspBasedClientsDesc",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -786,7 +786,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 32,
|
"category": 35,
|
||||||
"nameResourceKey": "localSecurityOptionsMinimumSessionSecurityForNtlmSspBasedServersName",
|
"nameResourceKey": "localSecurityOptionsMinimumSessionSecurityForNtlmSspBasedServersName",
|
||||||
"descriptionResourceKey": "localSecurityOptionsMinimumSessionSecurityForNtlmSspBasedServersDesc",
|
"descriptionResourceKey": "localSecurityOptionsMinimumSessionSecurityForNtlmSspBasedServersDesc",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -823,7 +823,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 32,
|
"category": 35,
|
||||||
"nameResourceKey": "lanManagerAuthenticationLevelName",
|
"nameResourceKey": "lanManagerAuthenticationLevelName",
|
||||||
"descriptionResourceKey": "lanManagerAuthenticationLevelDesc",
|
"descriptionResourceKey": "lanManagerAuthenticationLevelDesc",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -870,7 +870,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 19,
|
"dataType": 19,
|
||||||
"category": 32,
|
"category": 35,
|
||||||
"nameResourceKey": "lanManagerWorkstationEnableInsecureGuestLogonsName",
|
"nameResourceKey": "lanManagerWorkstationEnableInsecureGuestLogonsName",
|
||||||
"descriptionResourceKey": "lanManagerWorkstationDisableInsecureGuestLogonsDesc",
|
"descriptionResourceKey": "lanManagerWorkstationDisableInsecureGuestLogonsDesc",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -897,7 +897,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 5,
|
"dataType": 5,
|
||||||
"category": 32,
|
"category": 35,
|
||||||
"nameResourceKey": "localSecurityOptionsNetworkAccessAndSecurityChevronName",
|
"nameResourceKey": "localSecurityOptionsNetworkAccessAndSecurityChevronName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -913,7 +913,7 @@
|
|||||||
"complexOptions": [
|
"complexOptions": [
|
||||||
{
|
{
|
||||||
"dataType": 19,
|
"dataType": 19,
|
||||||
"category": 32,
|
"category": 35,
|
||||||
"nameResourceKey": "localSecurityOptionsClearVirtualMemoryPageFileName",
|
"nameResourceKey": "localSecurityOptionsClearVirtualMemoryPageFileName",
|
||||||
"descriptionResourceKey": "localSecurityOptionsClearVirtualMemoryPageFileDesc",
|
"descriptionResourceKey": "localSecurityOptionsClearVirtualMemoryPageFileDesc",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -940,7 +940,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 19,
|
"dataType": 19,
|
||||||
"category": 32,
|
"category": 35,
|
||||||
"nameResourceKey": "localSecurityOptionsAllowSystemToBeShutDownWithoutHavingToLogOnName",
|
"nameResourceKey": "localSecurityOptionsAllowSystemToBeShutDownWithoutHavingToLogOnName",
|
||||||
"descriptionResourceKey": "localSecurityOptionsAllowSystemToBeShutDownWithoutHavingToLogOnDesc",
|
"descriptionResourceKey": "localSecurityOptionsAllowSystemToBeShutDownWithoutHavingToLogOnDesc",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -967,7 +967,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 5,
|
"dataType": 5,
|
||||||
"category": 32,
|
"category": 35,
|
||||||
"nameResourceKey": "localSecurityOptionsRecoveryConsoleAndShutdownChevronName",
|
"nameResourceKey": "localSecurityOptionsRecoveryConsoleAndShutdownChevronName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -983,7 +983,7 @@
|
|||||||
"complexOptions": [
|
"complexOptions": [
|
||||||
{
|
{
|
||||||
"dataType": 19,
|
"dataType": 19,
|
||||||
"category": 32,
|
"category": 35,
|
||||||
"nameResourceKey": "localSecurityOptionsAllowUIAccessApplicationElevationName",
|
"nameResourceKey": "localSecurityOptionsAllowUIAccessApplicationElevationName",
|
||||||
"descriptionResourceKey": "localSecurityOptionsAllowUIAccessApplicationElevationDesc",
|
"descriptionResourceKey": "localSecurityOptionsAllowUIAccessApplicationElevationDesc",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1010,7 +1010,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 19,
|
"dataType": 19,
|
||||||
"category": 32,
|
"category": 35,
|
||||||
"nameResourceKey": "localSecurityOptionsVirtualizeFileAndRegistryWriteFailuresToPerUserLocationsName",
|
"nameResourceKey": "localSecurityOptionsVirtualizeFileAndRegistryWriteFailuresToPerUserLocationsName",
|
||||||
"descriptionResourceKey": "localSecurityOptionsVirtualizeFileAndRegistryWriteFailuresToPerUserLocationsDesc",
|
"descriptionResourceKey": "localSecurityOptionsVirtualizeFileAndRegistryWriteFailuresToPerUserLocationsDesc",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1037,7 +1037,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 19,
|
"dataType": 19,
|
||||||
"category": 32,
|
"category": 35,
|
||||||
"nameResourceKey": "localSecurityOptionsOnlyElevateSignedExecutablesName",
|
"nameResourceKey": "localSecurityOptionsOnlyElevateSignedExecutablesName",
|
||||||
"descriptionResourceKey": "localSecurityOptionsOnlyElevateSignedExecutablesDesc",
|
"descriptionResourceKey": "localSecurityOptionsOnlyElevateSignedExecutablesDesc",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1066,7 +1066,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 32,
|
"category": 35,
|
||||||
"nameResourceKey": "localSecurityOptionsUIAElevationPromptText",
|
"nameResourceKey": "localSecurityOptionsUIAElevationPromptText",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -1080,7 +1080,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 32,
|
"category": 35,
|
||||||
"nameResourceKey": "localSecurityOptionsAdministratorElevationPromptBehaviorName",
|
"nameResourceKey": "localSecurityOptionsAdministratorElevationPromptBehaviorName",
|
||||||
"descriptionResourceKey": "localSecurityOptionsAdministratorElevationPromptBehaviorDesc",
|
"descriptionResourceKey": "localSecurityOptionsAdministratorElevationPromptBehaviorDesc",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1132,7 +1132,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 32,
|
"category": 35,
|
||||||
"nameResourceKey": "localSecurityOptionsStandardUserElevationPromptBehaviorName",
|
"nameResourceKey": "localSecurityOptionsStandardUserElevationPromptBehaviorName",
|
||||||
"descriptionResourceKey": "localSecurityOptionsStandardUserElevationPromptBehaviorDesc",
|
"descriptionResourceKey": "localSecurityOptionsStandardUserElevationPromptBehaviorDesc",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1169,7 +1169,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 19,
|
"dataType": 19,
|
||||||
"category": 32,
|
"category": 35,
|
||||||
"nameResourceKey": "localSecurityOptionsSwitchToSecureDesktopWhenPromptingForElevationName",
|
"nameResourceKey": "localSecurityOptionsSwitchToSecureDesktopWhenPromptingForElevationName",
|
||||||
"descriptionResourceKey": "localSecurityOptionsSwitchToSecureDesktopWhenPromptingForElevationDesc",
|
"descriptionResourceKey": "localSecurityOptionsSwitchToSecureDesktopWhenPromptingForElevationDesc",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1196,7 +1196,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 19,
|
"dataType": 19,
|
||||||
"category": 32,
|
"category": 35,
|
||||||
"nameResourceKey": "localSecurityOptionsDetectApplicationInstallationsAndPromptForElevationName",
|
"nameResourceKey": "localSecurityOptionsDetectApplicationInstallationsAndPromptForElevationName",
|
||||||
"descriptionResourceKey": "localSecurityOptionsDetectApplicationInstallationsAndPromptForElevationDesc",
|
"descriptionResourceKey": "localSecurityOptionsDetectApplicationInstallationsAndPromptForElevationDesc",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1223,7 +1223,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 19,
|
"dataType": 19,
|
||||||
"category": 32,
|
"category": 35,
|
||||||
"nameResourceKey": "localSecurityOptionsAllowUIAccessApplicationsForSecureLocationsName",
|
"nameResourceKey": "localSecurityOptionsAllowUIAccessApplicationsForSecureLocationsName",
|
||||||
"descriptionResourceKey": "localSecurityOptionsAllowUIAccessApplicationsForSecureLocationsDesc",
|
"descriptionResourceKey": "localSecurityOptionsAllowUIAccessApplicationsForSecureLocationsDesc",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1252,7 +1252,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 32,
|
"category": 35,
|
||||||
"nameResourceKey": "localSecurityOptionsAdminApprovalModeText",
|
"nameResourceKey": "localSecurityOptionsAdminApprovalModeText",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -1266,7 +1266,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 19,
|
"dataType": 19,
|
||||||
"category": 32,
|
"category": 35,
|
||||||
"nameResourceKey": "localSecurityOptionsUseAdminApprovalModeName",
|
"nameResourceKey": "localSecurityOptionsUseAdminApprovalModeName",
|
||||||
"descriptionResourceKey": "localSecurityOptionsUseAdminApprovalModeDesc",
|
"descriptionResourceKey": "localSecurityOptionsUseAdminApprovalModeDesc",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1293,7 +1293,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 19,
|
"dataType": 19,
|
||||||
"category": 32,
|
"category": 35,
|
||||||
"nameResourceKey": "localSecurityOptionsUseAdminApprovalModeForAdministratorsName",
|
"nameResourceKey": "localSecurityOptionsUseAdminApprovalModeForAdministratorsName",
|
||||||
"descriptionResourceKey": "localSecurityOptionsUseAdminApprovalModeForAdministratorsDesc",
|
"descriptionResourceKey": "localSecurityOptionsUseAdminApprovalModeForAdministratorsDesc",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1320,7 +1320,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 5,
|
"dataType": 5,
|
||||||
"category": 32,
|
"category": 35,
|
||||||
"nameResourceKey": "localSecurityOptionsUserAccountControlChevronName",
|
"nameResourceKey": "localSecurityOptionsUserAccountControlChevronName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -1336,7 +1336,7 @@
|
|||||||
"complexOptions": [
|
"complexOptions": [
|
||||||
{
|
{
|
||||||
"dataType": 19,
|
"dataType": 19,
|
||||||
"category": 32,
|
"category": 35,
|
||||||
"nameResourceKey": "localSecurityOptionsDisableClientDigitallySignCommunicationsIfServerAgreesName",
|
"nameResourceKey": "localSecurityOptionsDisableClientDigitallySignCommunicationsIfServerAgreesName",
|
||||||
"descriptionResourceKey": "localSecurityOptionsDisableClientDigitallySignCommunicationsIfServerAgreesDesc",
|
"descriptionResourceKey": "localSecurityOptionsDisableClientDigitallySignCommunicationsIfServerAgreesDesc",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1363,7 +1363,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 19,
|
"dataType": 19,
|
||||||
"category": 32,
|
"category": 35,
|
||||||
"nameResourceKey": "localSecurityOptionsClientSendUnencryptedPasswordToThirdPartySMBServersName",
|
"nameResourceKey": "localSecurityOptionsClientSendUnencryptedPasswordToThirdPartySMBServersName",
|
||||||
"descriptionResourceKey": "localSecurityOptionsClientSendUnencryptedPasswordToThirdPartySMBServersDesc",
|
"descriptionResourceKey": "localSecurityOptionsClientSendUnencryptedPasswordToThirdPartySMBServersDesc",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1390,7 +1390,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 19,
|
"dataType": 19,
|
||||||
"category": 32,
|
"category": 35,
|
||||||
"nameResourceKey": "localSecurityOptionsClientDigitallySignCommunicationsAlwaysName",
|
"nameResourceKey": "localSecurityOptionsClientDigitallySignCommunicationsAlwaysName",
|
||||||
"descriptionResourceKey": "localSecurityOptionsClientDigitallySignCommunicationsAlwaysDesc",
|
"descriptionResourceKey": "localSecurityOptionsClientDigitallySignCommunicationsAlwaysDesc",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1417,7 +1417,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 5,
|
"dataType": 5,
|
||||||
"category": 32,
|
"category": 35,
|
||||||
"nameResourceKey": "localSecurityOptionsMicrosoftNetworkClientName",
|
"nameResourceKey": "localSecurityOptionsMicrosoftNetworkClientName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -1433,7 +1433,7 @@
|
|||||||
"complexOptions": [
|
"complexOptions": [
|
||||||
{
|
{
|
||||||
"dataType": 19,
|
"dataType": 19,
|
||||||
"category": 32,
|
"category": 35,
|
||||||
"nameResourceKey": "localSecurityOptionsDisableServerDigitallySignCommunicationsIfClientAgreesName",
|
"nameResourceKey": "localSecurityOptionsDisableServerDigitallySignCommunicationsIfClientAgreesName",
|
||||||
"descriptionResourceKey": "localSecurityOptionsDisableServerDigitallySignCommunicationsIfClientAgreesDesc",
|
"descriptionResourceKey": "localSecurityOptionsDisableServerDigitallySignCommunicationsIfClientAgreesDesc",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1460,7 +1460,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 19,
|
"dataType": 19,
|
||||||
"category": 32,
|
"category": 35,
|
||||||
"nameResourceKey": "localSecurityOptionsDisableServerDigitallySignCommunicationsAlwaysName",
|
"nameResourceKey": "localSecurityOptionsDisableServerDigitallySignCommunicationsAlwaysName",
|
||||||
"descriptionResourceKey": "localSecurityOptionsDisableServerDigitallySignCommunicationsAlwaysDesc",
|
"descriptionResourceKey": "localSecurityOptionsDisableServerDigitallySignCommunicationsAlwaysDesc",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1487,7 +1487,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 5,
|
"dataType": 5,
|
||||||
"category": 32,
|
"category": 35,
|
||||||
"nameResourceKey": "localSecurityOptionsMicrosoftNetworkServerName",
|
"nameResourceKey": "localSecurityOptionsMicrosoftNetworkServerName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 31,
|
"category": 34,
|
||||||
"nameResourceKey": "defenderSecurityCenterHeaderText",
|
"nameResourceKey": "defenderSecurityCenterHeaderText",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -20,7 +20,7 @@
|
|||||||
"isSettingDescription": true,
|
"isSettingDescription": true,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 31,
|
"category": 34,
|
||||||
"nameResourceKey": "defenderSecurityCenterSubHeaderText",
|
"nameResourceKey": "defenderSecurityCenterSubHeaderText",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -34,13 +34,13 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 31,
|
"category": 34,
|
||||||
"nameResourceKey": "defenderSecurityCenterDisableVirusUIName",
|
"nameResourceKey": "defenderSecurityCenterDisableVirusUIName",
|
||||||
"descriptionResourceKey": "defenderSecurityCenterDisableVirusUIDescription",
|
"descriptionResourceKey": "defenderSecurityCenterDisableVirusUIDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 31,
|
"category": 34,
|
||||||
"nameResourceKey": "defenderSecurityCenterDisableRansomwareUIName",
|
"nameResourceKey": "defenderSecurityCenterDisableRansomwareUIName",
|
||||||
"descriptionResourceKey": "defenderSecurityCenterDisableRansomwareUIDescription",
|
"descriptionResourceKey": "defenderSecurityCenterDisableRansomwareUIDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -91,7 +91,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 31,
|
"category": 34,
|
||||||
"nameResourceKey": "defenderSecurityCenterDisableAccountUIName",
|
"nameResourceKey": "defenderSecurityCenterDisableAccountUIName",
|
||||||
"descriptionResourceKey": "defenderSecurityCenterDisableAccountUIDescription",
|
"descriptionResourceKey": "defenderSecurityCenterDisableAccountUIDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -120,7 +120,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 31,
|
"category": 34,
|
||||||
"nameResourceKey": "defenderSecurityCenterDisableNetworkUIName",
|
"nameResourceKey": "defenderSecurityCenterDisableNetworkUIName",
|
||||||
"descriptionResourceKey": "defenderSecurityCenterDisableNetworkUIDescription",
|
"descriptionResourceKey": "defenderSecurityCenterDisableNetworkUIDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -149,7 +149,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 31,
|
"category": 34,
|
||||||
"nameResourceKey": "defenderSecurityCenterDisableAppBrowserUIName",
|
"nameResourceKey": "defenderSecurityCenterDisableAppBrowserUIName",
|
||||||
"descriptionResourceKey": "defenderSecurityCenterDisableAppBrowserUIDescription",
|
"descriptionResourceKey": "defenderSecurityCenterDisableAppBrowserUIDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -178,7 +178,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 19,
|
"dataType": 19,
|
||||||
"category": 31,
|
"category": 34,
|
||||||
"nameResourceKey": "defenderSecurityCenterDisableHardwareUIName",
|
"nameResourceKey": "defenderSecurityCenterDisableHardwareUIName",
|
||||||
"descriptionResourceKey": "defenderSecurityCenterDisableHardwareUIDescription",
|
"descriptionResourceKey": "defenderSecurityCenterDisableHardwareUIDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -204,7 +204,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 31,
|
"category": 34,
|
||||||
"nameResourceKey": "defenderSecurityCenterDisableHealthUIName",
|
"nameResourceKey": "defenderSecurityCenterDisableHealthUIName",
|
||||||
"descriptionResourceKey": "defenderSecurityCenterDisableHealthUIDescription",
|
"descriptionResourceKey": "defenderSecurityCenterDisableHealthUIDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -233,7 +233,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 31,
|
"category": 34,
|
||||||
"nameResourceKey": "defenderSecurityCenterDisableFamilyUIName",
|
"nameResourceKey": "defenderSecurityCenterDisableFamilyUIName",
|
||||||
"descriptionResourceKey": "defenderSecurityCenterDisableFamilyUIDescription",
|
"descriptionResourceKey": "defenderSecurityCenterDisableFamilyUIDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -262,7 +262,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 31,
|
"category": 34,
|
||||||
"nameResourceKey": "defenderSecurityCenterNotificationsFromAppName",
|
"nameResourceKey": "defenderSecurityCenterNotificationsFromAppName",
|
||||||
"descriptionResourceKey": "defenderSecurityCenterNotificationsFromAppDescription",
|
"descriptionResourceKey": "defenderSecurityCenterNotificationsFromAppDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -294,7 +294,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 31,
|
"category": 34,
|
||||||
"nameResourceKey": "defenderSecurityCenterDisableNotificationAreaUIName",
|
"nameResourceKey": "defenderSecurityCenterDisableNotificationAreaUIName",
|
||||||
"descriptionResourceKey": "defenderSecurityCenterDisableNotificationAreaUIDescription",
|
"descriptionResourceKey": "defenderSecurityCenterDisableNotificationAreaUIDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -323,7 +323,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 31,
|
"category": 34,
|
||||||
"nameResourceKey": "defenderSecurityCenterDisableClearTpmUIName",
|
"nameResourceKey": "defenderSecurityCenterDisableClearTpmUIName",
|
||||||
"descriptionResourceKey": "defenderSecurityCenterDisableClearTpmUIDescription",
|
"descriptionResourceKey": "defenderSecurityCenterDisableClearTpmUIDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -352,7 +352,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 31,
|
"category": 34,
|
||||||
"nameResourceKey": "defenderSecurityCenterDisableVulnerableTpmFirmwareUpdateUIName",
|
"nameResourceKey": "defenderSecurityCenterDisableVulnerableTpmFirmwareUpdateUIName",
|
||||||
"descriptionResourceKey": "defenderSecurityCenterDisableVulnerableTpmFirmwareUpdateUIDescription",
|
"descriptionResourceKey": "defenderSecurityCenterDisableVulnerableTpmFirmwareUpdateUIDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -381,7 +381,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 31,
|
"category": 34,
|
||||||
"nameResourceKey": "defenderSecurityCenterTamperProtectionName",
|
"nameResourceKey": "defenderSecurityCenterTamperProtectionName",
|
||||||
"descriptionResourceKey": "defenderSecurityCenterTamperProtectionDescription",
|
"descriptionResourceKey": "defenderSecurityCenterTamperProtectionDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -415,7 +415,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 31,
|
"category": 34,
|
||||||
"nameResourceKey": "defenderSecurityCenterITContactInformationHeaderText",
|
"nameResourceKey": "defenderSecurityCenterITContactInformationHeaderText",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -431,7 +431,7 @@
|
|||||||
"isSettingDescription": true,
|
"isSettingDescription": true,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 31,
|
"category": 34,
|
||||||
"nameResourceKey": "defenderSecurityCenterITContactInformationSubHeaderText",
|
"nameResourceKey": "defenderSecurityCenterITContactInformationSubHeaderText",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -445,13 +445,13 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 31,
|
"category": 34,
|
||||||
"nameResourceKey": "defenderSecurityCenterITContactDisplayName",
|
"nameResourceKey": "defenderSecurityCenterITContactDisplayName",
|
||||||
"descriptionResourceKey": "defenderSecurityCenterITContactDisplayDescription",
|
"descriptionResourceKey": "defenderSecurityCenterITContactDisplayDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 31,
|
"category": 34,
|
||||||
"nameResourceKey": "defenderSecurityCenterOrganizationDisplayNameName",
|
"nameResourceKey": "defenderSecurityCenterOrganizationDisplayNameName",
|
||||||
"descriptionResourceKey": "defenderSecurityCenterOrganizationDisplayNameName",
|
"descriptionResourceKey": "defenderSecurityCenterOrganizationDisplayNameName",
|
||||||
"emptyValueResourceKey": "defenderSecurityCenterOrganizationDisplayNamePlaceholder",
|
"emptyValueResourceKey": "defenderSecurityCenterOrganizationDisplayNamePlaceholder",
|
||||||
@@ -471,7 +471,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 31,
|
"category": 34,
|
||||||
"nameResourceKey": "defenderSecurityCenterContactOptionsText",
|
"nameResourceKey": "defenderSecurityCenterContactOptionsText",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -485,7 +485,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 31,
|
"category": 34,
|
||||||
"nameResourceKey": "defenderSecurityCenterHelpPhoneName",
|
"nameResourceKey": "defenderSecurityCenterHelpPhoneName",
|
||||||
"descriptionResourceKey": "defenderSecurityCenterHelpPhoneDescription",
|
"descriptionResourceKey": "defenderSecurityCenterHelpPhoneDescription",
|
||||||
"emptyValueResourceKey": "defenderSecurityCenterHelpPhonePlaceholder",
|
"emptyValueResourceKey": "defenderSecurityCenterHelpPhonePlaceholder",
|
||||||
@@ -503,7 +503,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 31,
|
"category": 34,
|
||||||
"nameResourceKey": "defenderSecurityCenterHelpEmailName",
|
"nameResourceKey": "defenderSecurityCenterHelpEmailName",
|
||||||
"descriptionResourceKey": "defenderSecurityCenterHelpEmailDescription",
|
"descriptionResourceKey": "defenderSecurityCenterHelpEmailDescription",
|
||||||
"emptyValueResourceKey": "defenderSecurityCenterHelpEmailPlaceholder",
|
"emptyValueResourceKey": "defenderSecurityCenterHelpEmailPlaceholder",
|
||||||
@@ -521,7 +521,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 31,
|
"category": 34,
|
||||||
"nameResourceKey": "defenderSecurityCenterHelpURLName",
|
"nameResourceKey": "defenderSecurityCenterHelpURLName",
|
||||||
"descriptionResourceKey": "defenderSecurityCenterHelpURLDescription",
|
"descriptionResourceKey": "defenderSecurityCenterHelpURLDescription",
|
||||||
"emptyValueResourceKey": "defenderSecurityCenterHelpURLPlaceholder",
|
"emptyValueResourceKey": "defenderSecurityCenterHelpURLPlaceholder",
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 34,
|
"category": 37,
|
||||||
"nameResourceKey": "deliveryOptimizationDOHeader",
|
"nameResourceKey": "deliveryOptimizationDOHeader",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -20,7 +20,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 34,
|
"category": 37,
|
||||||
"nameResourceKey": "LearnMore",
|
"nameResourceKey": "LearnMore",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -34,7 +34,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 34,
|
"category": 37,
|
||||||
"nameResourceKey": "deliveryOptimizationName",
|
"nameResourceKey": "deliveryOptimizationName",
|
||||||
"descriptionResourceKey": "deliveryOptimizationDODescription",
|
"descriptionResourceKey": "deliveryOptimizationDODescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -85,7 +85,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 34,
|
"category": 37,
|
||||||
"nameResourceKey": "deliveryOptimizationDownloadModeName",
|
"nameResourceKey": "deliveryOptimizationDownloadModeName",
|
||||||
"descriptionResourceKey": "deliveryOptimizationDODescription",
|
"descriptionResourceKey": "deliveryOptimizationDODescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -93,7 +93,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 34,
|
"category": 37,
|
||||||
"nameResourceKey": "DeliveryOptimizationBandwidthHeader",
|
"nameResourceKey": "DeliveryOptimizationBandwidthHeader",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -109,7 +109,7 @@
|
|||||||
"complexOptions": [
|
"complexOptions": [
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 34,
|
"category": 37,
|
||||||
"nameResourceKey": "DoBandwidthModeName",
|
"nameResourceKey": "DoBandwidthModeName",
|
||||||
"descriptionResourceKey": "DoBandwidthModeDescription",
|
"descriptionResourceKey": "DoBandwidthModeDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -126,7 +126,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 15,
|
"dataType": 15,
|
||||||
"category": 34,
|
"category": 37,
|
||||||
"nameResourceKey": "DoMaximumDownloadBandwidthName",
|
"nameResourceKey": "DoMaximumDownloadBandwidthName",
|
||||||
"descriptionResourceKey": "DoMaximumDownloadBandwidthDescription",
|
"descriptionResourceKey": "DoMaximumDownloadBandwidthDescription",
|
||||||
"emptyValueResourceKey": "ValueInKilobytesPerSecondEmpty",
|
"emptyValueResourceKey": "ValueInKilobytesPerSecondEmpty",
|
||||||
@@ -143,7 +143,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 15,
|
"dataType": 15,
|
||||||
"category": 34,
|
"category": 37,
|
||||||
"nameResourceKey": "DoMaximumUploadBandwidthName",
|
"nameResourceKey": "DoMaximumUploadBandwidthName",
|
||||||
"descriptionResourceKey": "DoMaximumUploadBandwidthDescription",
|
"descriptionResourceKey": "DoMaximumUploadBandwidthDescription",
|
||||||
"emptyValueResourceKey": "ValueInKilobytesPerSecondEmpty",
|
"emptyValueResourceKey": "ValueInKilobytesPerSecondEmpty",
|
||||||
@@ -167,7 +167,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 34,
|
"category": 37,
|
||||||
"nameResourceKey": "DoMaximumForegroundBandwidthName",
|
"nameResourceKey": "DoMaximumForegroundBandwidthName",
|
||||||
"descriptionResourceKey": "DoMaximumForegroundBandwidthDescription",
|
"descriptionResourceKey": "DoMaximumForegroundBandwidthDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -183,7 +183,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 34,
|
"category": 37,
|
||||||
"nameResourceKey": "DoMaximumBackgroundBandwidthName",
|
"nameResourceKey": "DoMaximumBackgroundBandwidthName",
|
||||||
"descriptionResourceKey": "DoMaximumBackgroundBandwidthDescription",
|
"descriptionResourceKey": "DoMaximumBackgroundBandwidthDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -208,7 +208,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 34,
|
"category": 37,
|
||||||
"nameResourceKey": "DoMaxForegroundBandwidthHeader",
|
"nameResourceKey": "DoMaxForegroundBandwidthHeader",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -225,7 +225,7 @@
|
|||||||
{
|
{
|
||||||
"value": "#microsoft.graph.deliveryOptimizationBandwidthBusinessHoursLimit",
|
"value": "#microsoft.graph.deliveryOptimizationBandwidthBusinessHoursLimit",
|
||||||
"dataType": 9,
|
"dataType": 9,
|
||||||
"category": 34,
|
"category": 37,
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
],
|
],
|
||||||
@@ -239,13 +239,13 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 34,
|
"category": 37,
|
||||||
"nameResourceKey": "DoBusinessBeginName",
|
"nameResourceKey": "DoBusinessBeginName",
|
||||||
"descriptionResourceKey": "DoBusinessName",
|
"descriptionResourceKey": "DoBusinessName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 34,
|
"category": 37,
|
||||||
"nameResourceKey": "DoBusinessEndName",
|
"nameResourceKey": "DoBusinessEndName",
|
||||||
"descriptionResourceKey": "DoBusinessEndName",
|
"descriptionResourceKey": "DoBusinessEndName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -384,7 +384,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 34,
|
"category": 37,
|
||||||
"nameResourceKey": "DoBusinessPercentageDuringName",
|
"nameResourceKey": "DoBusinessPercentageDuringName",
|
||||||
"descriptionResourceKey": "DoBusinessPercentageDuringName",
|
"descriptionResourceKey": "DoBusinessPercentageDuringName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -400,7 +400,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 34,
|
"category": 37,
|
||||||
"nameResourceKey": "DoBusinessPercentageOutsideName",
|
"nameResourceKey": "DoBusinessPercentageOutsideName",
|
||||||
"descriptionResourceKey": "DoBusinessPercentageOutsideName",
|
"descriptionResourceKey": "DoBusinessPercentageOutsideName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -548,7 +548,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 6,
|
"dataType": 6,
|
||||||
"category": 34,
|
"category": 37,
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
],
|
],
|
||||||
@@ -564,7 +564,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 34,
|
"category": 37,
|
||||||
"nameResourceKey": "DoMaxBackgroundBandwidthHeader",
|
"nameResourceKey": "DoMaxBackgroundBandwidthHeader",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -581,7 +581,7 @@
|
|||||||
{
|
{
|
||||||
"value": "#microsoft.graph.deliveryOptimizationBandwidthBusinessHoursLimit",
|
"value": "#microsoft.graph.deliveryOptimizationBandwidthBusinessHoursLimit",
|
||||||
"dataType": 9,
|
"dataType": 9,
|
||||||
"category": 34,
|
"category": 37,
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
],
|
],
|
||||||
@@ -595,13 +595,13 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 34,
|
"category": 37,
|
||||||
"nameResourceKey": "DoBusinessBeginName",
|
"nameResourceKey": "DoBusinessBeginName",
|
||||||
"descriptionResourceKey": "DoBusinessName",
|
"descriptionResourceKey": "DoBusinessName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 34,
|
"category": 37,
|
||||||
"nameResourceKey": "DoBusinessEndName",
|
"nameResourceKey": "DoBusinessEndName",
|
||||||
"descriptionResourceKey": "DoBusinessEndName",
|
"descriptionResourceKey": "DoBusinessEndName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -740,7 +740,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 34,
|
"category": 37,
|
||||||
"nameResourceKey": "DoBusinessPercentageDuringName",
|
"nameResourceKey": "DoBusinessPercentageDuringName",
|
||||||
"descriptionResourceKey": "DoBusinessPercentageDuringName",
|
"descriptionResourceKey": "DoBusinessPercentageDuringName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -756,7 +756,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 34,
|
"category": 37,
|
||||||
"nameResourceKey": "DoBusinessPercentageOutsideName",
|
"nameResourceKey": "DoBusinessPercentageOutsideName",
|
||||||
"descriptionResourceKey": "DoBusinessPercentageOutsideName",
|
"descriptionResourceKey": "DoBusinessPercentageOutsideName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -904,7 +904,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 6,
|
"dataType": 6,
|
||||||
"category": 34,
|
"category": 37,
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
],
|
],
|
||||||
@@ -927,7 +927,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 6,
|
"dataType": 6,
|
||||||
"category": 34,
|
"category": 37,
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
],
|
],
|
||||||
@@ -941,7 +941,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 15,
|
"dataType": 15,
|
||||||
"category": 34,
|
"category": 37,
|
||||||
"nameResourceKey": "DoBackgroundDownloadFromHttpDelayInSecondsName",
|
"nameResourceKey": "DoBackgroundDownloadFromHttpDelayInSecondsName",
|
||||||
"descriptionResourceKey": "DoBackgroundDownloadFromHttpDelayInSecondsDescription",
|
"descriptionResourceKey": "DoBackgroundDownloadFromHttpDelayInSecondsDescription",
|
||||||
"emptyValueResourceKey": "DoBackgroundDownloadFromHttpDelayInSecondsEmpty",
|
"emptyValueResourceKey": "DoBackgroundDownloadFromHttpDelayInSecondsEmpty",
|
||||||
@@ -960,7 +960,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 15,
|
"dataType": 15,
|
||||||
"category": 34,
|
"category": 37,
|
||||||
"nameResourceKey": "DoForegroundDownloadFromHttpDelayInSecondsName",
|
"nameResourceKey": "DoForegroundDownloadFromHttpDelayInSecondsName",
|
||||||
"descriptionResourceKey": "DoForegroundDownloadFromHttpDelayInSecondsDescription",
|
"descriptionResourceKey": "DoForegroundDownloadFromHttpDelayInSecondsDescription",
|
||||||
"emptyValueResourceKey": "DoForegroundDownloadFromHttpDelayInSecondsEmpty",
|
"emptyValueResourceKey": "DoForegroundDownloadFromHttpDelayInSecondsEmpty",
|
||||||
@@ -979,7 +979,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 34,
|
"category": 37,
|
||||||
"nameResourceKey": "DeliveryOptimizationCachingHeader",
|
"nameResourceKey": "DeliveryOptimizationCachingHeader",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -993,7 +993,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 34,
|
"category": 37,
|
||||||
"nameResourceKey": "DoMinRamName",
|
"nameResourceKey": "DoMinRamName",
|
||||||
"descriptionResourceKey": "DoMinRamDescription",
|
"descriptionResourceKey": "DoMinRamDescription",
|
||||||
"emptyValueResourceKey": "DoMinRamEmpty",
|
"emptyValueResourceKey": "DoMinRamEmpty",
|
||||||
@@ -1010,7 +1010,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 34,
|
"category": 37,
|
||||||
"nameResourceKey": "DoMinDiskName",
|
"nameResourceKey": "DoMinDiskName",
|
||||||
"descriptionResourceKey": "DoMinDiskDescription",
|
"descriptionResourceKey": "DoMinDiskDescription",
|
||||||
"emptyValueResourceKey": "DoMinRamEmpty",
|
"emptyValueResourceKey": "DoMinRamEmpty",
|
||||||
@@ -1027,7 +1027,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 34,
|
"category": 37,
|
||||||
"nameResourceKey": "DoMinFileSizeName",
|
"nameResourceKey": "DoMinFileSizeName",
|
||||||
"descriptionResourceKey": "DoMinFileSizeDescription",
|
"descriptionResourceKey": "DoMinFileSizeDescription",
|
||||||
"emptyValueResourceKey": "DoMinFileEmpty",
|
"emptyValueResourceKey": "DoMinFileEmpty",
|
||||||
@@ -1044,7 +1044,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 34,
|
"category": 37,
|
||||||
"nameResourceKey": "DoMinBatteryName",
|
"nameResourceKey": "DoMinBatteryName",
|
||||||
"descriptionResourceKey": "DoMinBatteryDescription",
|
"descriptionResourceKey": "DoMinBatteryDescription",
|
||||||
"emptyValueResourceKey": "ValueZeroNotLimitedEmpty",
|
"emptyValueResourceKey": "ValueZeroNotLimitedEmpty",
|
||||||
@@ -1061,7 +1061,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 34,
|
"category": 37,
|
||||||
"nameResourceKey": "DoModifyCacheName",
|
"nameResourceKey": "DoModifyCacheName",
|
||||||
"descriptionResourceKey": "DoModifyCacheDescription",
|
"descriptionResourceKey": "DoModifyCacheDescription",
|
||||||
"emptyValueResourceKey": "DoModifyCacheEmpty",
|
"emptyValueResourceKey": "DoModifyCacheEmpty",
|
||||||
@@ -1078,7 +1078,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 34,
|
"category": 37,
|
||||||
"nameResourceKey": "DoMaxCacheAgeName",
|
"nameResourceKey": "DoMaxCacheAgeName",
|
||||||
"descriptionResourceKey": "DoMaxCacheAgeDescription",
|
"descriptionResourceKey": "DoMaxCacheAgeDescription",
|
||||||
"emptyValueResourceKey": "ValueZeroNotLimitedEmpty",
|
"emptyValueResourceKey": "ValueZeroNotLimitedEmpty",
|
||||||
@@ -1097,7 +1097,7 @@
|
|||||||
"complexOptions": [
|
"complexOptions": [
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 34,
|
"category": 37,
|
||||||
"nameResourceKey": "DoMaxCacheTypeName",
|
"nameResourceKey": "DoMaxCacheTypeName",
|
||||||
"descriptionResourceKey": "DoMaxCacheTypeDescription",
|
"descriptionResourceKey": "DoMaxCacheTypeDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1114,7 +1114,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 15,
|
"dataType": 15,
|
||||||
"category": 34,
|
"category": 37,
|
||||||
"nameResourceKey": "DoMaxCacheSizeName",
|
"nameResourceKey": "DoMaxCacheSizeName",
|
||||||
"descriptionResourceKey": "DoMaxCacheSizeDescription",
|
"descriptionResourceKey": "DoMaxCacheSizeDescription",
|
||||||
"emptyValueResourceKey": "ValueZeroNotLimitedEmpty",
|
"emptyValueResourceKey": "ValueZeroNotLimitedEmpty",
|
||||||
@@ -1138,7 +1138,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 34,
|
"category": 37,
|
||||||
"nameResourceKey": "DoMaxCacheSizePercentageName",
|
"nameResourceKey": "DoMaxCacheSizePercentageName",
|
||||||
"descriptionResourceKey": "DoMaxCacheSizePercentageDescription",
|
"descriptionResourceKey": "DoMaxCacheSizePercentageDescription",
|
||||||
"emptyValueResourceKey": "DoMaxCacheSizePercentageEmpty",
|
"emptyValueResourceKey": "DoMaxCacheSizePercentageEmpty",
|
||||||
@@ -1164,7 +1164,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 6,
|
"dataType": 6,
|
||||||
"category": 34,
|
"category": 37,
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
],
|
],
|
||||||
@@ -1178,7 +1178,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 34,
|
"category": 37,
|
||||||
"nameResourceKey": "DoVpnPeerCachingName",
|
"nameResourceKey": "DoVpnPeerCachingName",
|
||||||
"descriptionResourceKey": "DoVpnPeerCachingDescription",
|
"descriptionResourceKey": "DoVpnPeerCachingDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1226,7 +1226,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 34,
|
"category": 37,
|
||||||
"nameResourceKey": "RestrictPeerSelectionByName",
|
"nameResourceKey": "RestrictPeerSelectionByName",
|
||||||
"descriptionResourceKey": "RestrictPeerSelectionByDescription",
|
"descriptionResourceKey": "RestrictPeerSelectionByDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1260,7 +1260,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 34,
|
"category": 37,
|
||||||
"nameResourceKey": "RestrictPeerSelectionByName",
|
"nameResourceKey": "RestrictPeerSelectionByName",
|
||||||
"descriptionResourceKey": "RestrictPeerSelectionByDescription",
|
"descriptionResourceKey": "RestrictPeerSelectionByDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1287,7 +1287,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 34,
|
"category": 37,
|
||||||
"nameResourceKey": "DoGroupIdSourceName",
|
"nameResourceKey": "DoGroupIdSourceName",
|
||||||
"descriptionResourceKey": "DoGroupIdSourceDescription",
|
"descriptionResourceKey": "DoGroupIdSourceDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1308,7 +1308,7 @@
|
|||||||
{
|
{
|
||||||
"value": "#microsoft.graph.deliveryOptimizationGroupIdSourceOptions",
|
"value": "#microsoft.graph.deliveryOptimizationGroupIdSourceOptions",
|
||||||
"dataType": 9,
|
"dataType": 9,
|
||||||
"category": 34,
|
"category": 37,
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
],
|
],
|
||||||
@@ -1323,7 +1323,7 @@
|
|||||||
{
|
{
|
||||||
"value": "adSite",
|
"value": "adSite",
|
||||||
"dataType": 9,
|
"dataType": 9,
|
||||||
"category": 34,
|
"category": 37,
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
],
|
],
|
||||||
@@ -1337,7 +1337,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 6,
|
"dataType": 6,
|
||||||
"category": 34,
|
"category": 37,
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
],
|
],
|
||||||
@@ -1361,7 +1361,7 @@
|
|||||||
{
|
{
|
||||||
"value": "#microsoft.graph.deliveryOptimizationGroupIdSourceOptions",
|
"value": "#microsoft.graph.deliveryOptimizationGroupIdSourceOptions",
|
||||||
"dataType": 9,
|
"dataType": 9,
|
||||||
"category": 34,
|
"category": 37,
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
],
|
],
|
||||||
@@ -1376,7 +1376,7 @@
|
|||||||
{
|
{
|
||||||
"value": "authenticatedDomainSid",
|
"value": "authenticatedDomainSid",
|
||||||
"dataType": 9,
|
"dataType": 9,
|
||||||
"category": 34,
|
"category": 37,
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
],
|
],
|
||||||
@@ -1390,7 +1390,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 6,
|
"dataType": 6,
|
||||||
"category": 34,
|
"category": 37,
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
],
|
],
|
||||||
@@ -1414,7 +1414,7 @@
|
|||||||
{
|
{
|
||||||
"value": "#microsoft.graph.deliveryOptimizationGroupIdSourceOptions",
|
"value": "#microsoft.graph.deliveryOptimizationGroupIdSourceOptions",
|
||||||
"dataType": 9,
|
"dataType": 9,
|
||||||
"category": 34,
|
"category": 37,
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
],
|
],
|
||||||
@@ -1429,7 +1429,7 @@
|
|||||||
{
|
{
|
||||||
"value": "dhcpUserOption",
|
"value": "dhcpUserOption",
|
||||||
"dataType": 9,
|
"dataType": 9,
|
||||||
"category": 34,
|
"category": 37,
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
],
|
],
|
||||||
@@ -1443,7 +1443,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 6,
|
"dataType": 6,
|
||||||
"category": 34,
|
"category": 37,
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
],
|
],
|
||||||
@@ -1467,7 +1467,7 @@
|
|||||||
{
|
{
|
||||||
"value": "#microsoft.graph.deliveryOptimizationGroupIdSourceOptions",
|
"value": "#microsoft.graph.deliveryOptimizationGroupIdSourceOptions",
|
||||||
"dataType": 9,
|
"dataType": 9,
|
||||||
"category": 34,
|
"category": 37,
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
],
|
],
|
||||||
@@ -1482,7 +1482,7 @@
|
|||||||
{
|
{
|
||||||
"value": "dnsSuffix",
|
"value": "dnsSuffix",
|
||||||
"dataType": 9,
|
"dataType": 9,
|
||||||
"category": 34,
|
"category": 37,
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
],
|
],
|
||||||
@@ -1496,7 +1496,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 6,
|
"dataType": 6,
|
||||||
"category": 34,
|
"category": 37,
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
],
|
],
|
||||||
@@ -1520,7 +1520,7 @@
|
|||||||
{
|
{
|
||||||
"value": "#microsoft.graph.deliveryOptimizationGroupIdCustom",
|
"value": "#microsoft.graph.deliveryOptimizationGroupIdCustom",
|
||||||
"dataType": 9,
|
"dataType": 9,
|
||||||
"category": 34,
|
"category": 37,
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
],
|
],
|
||||||
@@ -1534,7 +1534,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 34,
|
"category": 37,
|
||||||
"nameResourceKey": "DoGroupIdCustomName",
|
"nameResourceKey": "DoGroupIdCustomName",
|
||||||
"descriptionResourceKey": "DoGroupIdCustomDescription",
|
"descriptionResourceKey": "DoGroupIdCustomDescription",
|
||||||
"emptyValueResourceKey": "DoGroupIdCustomEmpty",
|
"emptyValueResourceKey": "DoGroupIdCustomEmpty",
|
||||||
@@ -1551,7 +1551,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 6,
|
"dataType": 6,
|
||||||
"category": 34,
|
"category": 37,
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
],
|
],
|
||||||
@@ -1604,7 +1604,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 34,
|
"category": 37,
|
||||||
"nameResourceKey": "localServerCachingHeader",
|
"nameResourceKey": "localServerCachingHeader",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -1621,7 +1621,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 34,
|
"category": 37,
|
||||||
"nameResourceKey": "cacheServerColumns",
|
"nameResourceKey": "cacheServerColumns",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -1637,7 +1637,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 21,
|
"dataType": 21,
|
||||||
"category": 34,
|
"category": 37,
|
||||||
"nameResourceKey": "cacheServerHostNamesName",
|
"nameResourceKey": "cacheServerHostNamesName",
|
||||||
"descriptionResourceKey": "cacheServerHostNamesDescription",
|
"descriptionResourceKey": "cacheServerHostNamesDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1653,7 +1653,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 34,
|
"category": 37,
|
||||||
"nameResourceKey": "cacheServerForegroundDownloadFallbackToHttpDelayName",
|
"nameResourceKey": "cacheServerForegroundDownloadFallbackToHttpDelayName",
|
||||||
"descriptionResourceKey": "cacheServerForegroundDownloadFallbackToHttpDelayDescription",
|
"descriptionResourceKey": "cacheServerForegroundDownloadFallbackToHttpDelayDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1671,7 +1671,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 34,
|
"category": 37,
|
||||||
"nameResourceKey": "cacheServerBackgroundDownloadFallbackToHttpDelayName",
|
"nameResourceKey": "cacheServerBackgroundDownloadFallbackToHttpDelayName",
|
||||||
"descriptionResourceKey": "cacheServerBackgroundDownloadFallbackToHttpDelayDescription",
|
"descriptionResourceKey": "cacheServerBackgroundDownloadFallbackToHttpDelayDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1689,7 +1689,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 9,
|
"dataType": 9,
|
||||||
"category": 34,
|
"category": 37,
|
||||||
"nameResourceKey": "DoMaxCacheSizePercentageName",
|
"nameResourceKey": "DoMaxCacheSizePercentageName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -1704,7 +1704,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 9,
|
"dataType": 9,
|
||||||
"category": 34,
|
"category": 37,
|
||||||
"nameResourceKey": "DoVpnPeerCachingName",
|
"nameResourceKey": "DoVpnPeerCachingName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -1719,7 +1719,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 9,
|
"dataType": 9,
|
||||||
"category": 34,
|
"category": 37,
|
||||||
"nameResourceKey": "DoMaxCacheAgeName",
|
"nameResourceKey": "DoMaxCacheAgeName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -1734,7 +1734,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 9,
|
"dataType": 9,
|
||||||
"category": 34,
|
"category": 37,
|
||||||
"nameResourceKey": "DoGroupIdSourceName",
|
"nameResourceKey": "DoGroupIdSourceName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -1749,7 +1749,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 9,
|
"dataType": 9,
|
||||||
"category": 34,
|
"category": 37,
|
||||||
"nameResourceKey": "DoGroupIdSourceName",
|
"nameResourceKey": "DoGroupIdSourceName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -1764,7 +1764,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 9,
|
"dataType": 9,
|
||||||
"category": 34,
|
"category": 37,
|
||||||
"nameResourceKey": "DoMaxCacheSizeName",
|
"nameResourceKey": "DoMaxCacheSizeName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -1779,7 +1779,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 9,
|
"dataType": 9,
|
||||||
"category": 34,
|
"category": 37,
|
||||||
"nameResourceKey": "DoMaximumDownloadBandwidthName",
|
"nameResourceKey": "DoMaximumDownloadBandwidthName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -1794,7 +1794,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 9,
|
"dataType": 9,
|
||||||
"category": 34,
|
"category": 37,
|
||||||
"nameResourceKey": "DoMaximumUploadBandwidthName",
|
"nameResourceKey": "DoMaximumUploadBandwidthName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -1809,7 +1809,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 9,
|
"dataType": 9,
|
||||||
"category": 34,
|
"category": 37,
|
||||||
"nameResourceKey": "DoMaximumBackgroundBandwidthName",
|
"nameResourceKey": "DoMaximumBackgroundBandwidthName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -1824,7 +1824,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 9,
|
"dataType": 9,
|
||||||
"category": 34,
|
"category": 37,
|
||||||
"nameResourceKey": "DoMaximumForegroundBandwidthName",
|
"nameResourceKey": "DoMaximumForegroundBandwidthName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -1839,7 +1839,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 9,
|
"dataType": 9,
|
||||||
"category": 34,
|
"category": 37,
|
||||||
"nameResourceKey": "DoMaxForegroundBandwidthHeader",
|
"nameResourceKey": "DoMaxForegroundBandwidthHeader",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -1854,7 +1854,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 9,
|
"dataType": 9,
|
||||||
"category": 34,
|
"category": 37,
|
||||||
"nameResourceKey": "DoMaxBackgroundBandwidthHeader",
|
"nameResourceKey": "DoMaxBackgroundBandwidthHeader",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
|
|||||||
@@ -2,11 +2,11 @@
|
|||||||
"derivedcredentialauthenticationconfiguration_androiddeviceownerderivedcredentialappauthenticationconfiguration": [
|
"derivedcredentialauthenticationconfiguration_androiddeviceownerderivedcredentialappauthenticationconfiguration": [
|
||||||
{
|
{
|
||||||
"dataType": 9,
|
"dataType": 9,
|
||||||
"category": 35,
|
"category": 38,
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 10,
|
"dataType": 10,
|
||||||
"category": 35,
|
"category": 38,
|
||||||
"nameResourceKey": "derivedCredentialsSearchingForTenantLevel",
|
"nameResourceKey": "derivedCredentialsSearchingForTenantLevel",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -20,7 +20,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 10,
|
"dataType": 10,
|
||||||
"category": 35,
|
"category": 38,
|
||||||
"nameResourceKey": "derivedCredentialsTenantLevelNotConfigured",
|
"nameResourceKey": "derivedCredentialsTenantLevelNotConfigured",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -45,7 +45,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 35,
|
"category": 38,
|
||||||
"nameResourceKey": "derivedCredentialAppAuthenticationHeader",
|
"nameResourceKey": "derivedCredentialAppAuthenticationHeader",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -61,7 +61,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 35,
|
"category": 38,
|
||||||
"nameResourceKey": "derivedCredentialAppAuthenticationHeaderLearnMore",
|
"nameResourceKey": "derivedCredentialAppAuthenticationHeaderLearnMore",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
|
|||||||
@@ -2,11 +2,11 @@
|
|||||||
"derivedcredentialauthenticationconfiguration_iosderivedcredentialauthenticationconfiguration": [
|
"derivedcredentialauthenticationconfiguration_iosderivedcredentialauthenticationconfiguration": [
|
||||||
{
|
{
|
||||||
"dataType": 9,
|
"dataType": 9,
|
||||||
"category": 35,
|
"category": 38,
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 10,
|
"dataType": 10,
|
||||||
"category": 35,
|
"category": 38,
|
||||||
"nameResourceKey": "derivedCredentialsSearchingForTenantLevel",
|
"nameResourceKey": "derivedCredentialsSearchingForTenantLevel",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -20,7 +20,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 10,
|
"dataType": 10,
|
||||||
"category": 35,
|
"category": 38,
|
||||||
"nameResourceKey": "derivedCredentialsTenantLevelNotConfigured",
|
"nameResourceKey": "derivedCredentialsTenantLevelNotConfigured",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -45,7 +45,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 35,
|
"category": 38,
|
||||||
"nameResourceKey": "derivedCredentialAppAuthenticationHeader",
|
"nameResourceKey": "derivedCredentialAppAuthenticationHeader",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -61,7 +61,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 35,
|
"category": 38,
|
||||||
"nameResourceKey": "derivedCredentialAppAuthenticationHeaderLearnMore",
|
"nameResourceKey": "derivedCredentialAppAuthenticationHeaderLearnMore",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
|
|||||||
@@ -3,13 +3,13 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": true,
|
"showAsSectionHeader": true,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 43,
|
"category": 46,
|
||||||
"nameResourceKey": "fullyManagedAndDedicatedAndroidEnrollmentTypesHeaderName",
|
"nameResourceKey": "fullyManagedAndDedicatedAndroidEnrollmentTypesHeaderName",
|
||||||
"descriptionResourceKey": "fullyManagedAndDedicatedAndroidEnrollmentTypesHeaderDescription",
|
"descriptionResourceKey": "fullyManagedAndDedicatedAndroidEnrollmentTypesHeaderDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 43,
|
"category": 46,
|
||||||
"nameResourceKey": "enrollmentProfileTypeName",
|
"nameResourceKey": "enrollmentProfileTypeName",
|
||||||
"descriptionResourceKey": "enrollmentProfileTypeDescription",
|
"descriptionResourceKey": "enrollmentProfileTypeDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -29,7 +29,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 43,
|
"category": 46,
|
||||||
"nameResourceKey": "deviceOwnerKioskHeadingText",
|
"nameResourceKey": "deviceOwnerKioskHeadingText",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -45,7 +45,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 43,
|
"category": 46,
|
||||||
"nameResourceKey": "deviceOwnerKioskLearnMoreText",
|
"nameResourceKey": "deviceOwnerKioskLearnMoreText",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -59,7 +59,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 43,
|
"category": 46,
|
||||||
"nameResourceKey": "kioskModeName",
|
"nameResourceKey": "kioskModeName",
|
||||||
"descriptionResourceKey": "kioskModeDescription",
|
"descriptionResourceKey": "kioskModeDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -79,7 +79,7 @@
|
|||||||
"complexOptions": [
|
"complexOptions": [
|
||||||
{
|
{
|
||||||
"dataType": 11,
|
"dataType": 11,
|
||||||
"category": 43,
|
"category": 46,
|
||||||
"nameResourceKey": "kioskModeManagedAppName",
|
"nameResourceKey": "kioskModeManagedAppName",
|
||||||
"descriptionResourceKey": "kioskModeManagedAppDescription",
|
"descriptionResourceKey": "kioskModeManagedAppDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -95,7 +95,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 5,
|
"dataType": 5,
|
||||||
"category": 43,
|
"category": 46,
|
||||||
"nameResourceKey": "kioskModeManagedAppName",
|
"nameResourceKey": "kioskModeManagedAppName",
|
||||||
"emptyValueResourceKey": "selectManagedApp",
|
"emptyValueResourceKey": "selectManagedApp",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -118,7 +118,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 25,
|
"dataType": 25,
|
||||||
"category": 43,
|
"category": 46,
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
],
|
],
|
||||||
@@ -131,7 +131,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 43,
|
"category": 46,
|
||||||
"nameResourceKey": "kioskFolderIconName",
|
"nameResourceKey": "kioskFolderIconName",
|
||||||
"descriptionResourceKey": "kioskFolderIconDescription",
|
"descriptionResourceKey": "kioskFolderIconDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -173,7 +173,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 43,
|
"category": 46,
|
||||||
"nameResourceKey": "kioskIconSizeName",
|
"nameResourceKey": "kioskIconSizeName",
|
||||||
"descriptionResourceKey": "kioskIconSizeDescription",
|
"descriptionResourceKey": "kioskIconSizeDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -220,7 +220,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 43,
|
"category": 46,
|
||||||
"nameResourceKey": "kioskScreenOrientationName",
|
"nameResourceKey": "kioskScreenOrientationName",
|
||||||
"descriptionResourceKey": "kioskScreenOrientationDescription",
|
"descriptionResourceKey": "kioskScreenOrientationDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -257,7 +257,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 43,
|
"category": 46,
|
||||||
"nameResourceKey": "kioskAppNotificationBadgeName",
|
"nameResourceKey": "kioskAppNotificationBadgeName",
|
||||||
"descriptionResourceKey": "kioskAppNotificationBadgeDescription",
|
"descriptionResourceKey": "kioskAppNotificationBadgeDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -274,7 +274,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 43,
|
"category": 46,
|
||||||
"nameResourceKey": "virtualHomeButtonName",
|
"nameResourceKey": "virtualHomeButtonName",
|
||||||
"descriptionResourceKey": "virtualHomeButtonDescription",
|
"descriptionResourceKey": "virtualHomeButtonDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -306,13 +306,13 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 43,
|
"category": 46,
|
||||||
"nameResourceKey": "kioskDropOutName",
|
"nameResourceKey": "kioskDropOutName",
|
||||||
"descriptionResourceKey": "kioskDropOutDescription",
|
"descriptionResourceKey": "kioskDropOutDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 43,
|
"category": 46,
|
||||||
"nameResourceKey": "kioskModeExitCodeName",
|
"nameResourceKey": "kioskModeExitCodeName",
|
||||||
"descriptionResourceKey": "kioskModeExitCodeDescription",
|
"descriptionResourceKey": "kioskModeExitCodeDescription",
|
||||||
"emptyValueResourceKey": "kioskDropOutCodeEmptyValueKey",
|
"emptyValueResourceKey": "kioskDropOutCodeEmptyValueKey",
|
||||||
@@ -339,7 +339,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 43,
|
"category": 46,
|
||||||
"nameResourceKey": "backgroundWallpaperName",
|
"nameResourceKey": "backgroundWallpaperName",
|
||||||
"descriptionResourceKey": "backgroundWallpaperDescription",
|
"descriptionResourceKey": "backgroundWallpaperDescription",
|
||||||
"emptyValueResourceKey": "backgroundWallpaperEmptyValueKey",
|
"emptyValueResourceKey": "backgroundWallpaperEmptyValueKey",
|
||||||
@@ -356,7 +356,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 43,
|
"category": 46,
|
||||||
"nameResourceKey": "kioskManagedSettingsName",
|
"nameResourceKey": "kioskManagedSettingsName",
|
||||||
"descriptionResourceKey": "kioskManagedSettingsDescription",
|
"descriptionResourceKey": "kioskManagedSettingsDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -373,7 +373,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 43,
|
"category": 46,
|
||||||
"nameResourceKey": "kioskDebugMenuName",
|
"nameResourceKey": "kioskDebugMenuName",
|
||||||
"descriptionResourceKey": "kioskDebugMenuDescription",
|
"descriptionResourceKey": "kioskDebugMenuDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -390,7 +390,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 43,
|
"category": 46,
|
||||||
"nameResourceKey": "kioskWifiConfigName",
|
"nameResourceKey": "kioskWifiConfigName",
|
||||||
"descriptionResourceKey": "kioskWifiConfigDescription",
|
"descriptionResourceKey": "kioskWifiConfigDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -399,7 +399,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 43,
|
"category": 46,
|
||||||
"nameResourceKey": "kioskWifiSsidColumnName",
|
"nameResourceKey": "kioskWifiSsidColumnName",
|
||||||
"emptyValueResourceKey": "kioskWifiSsidEmptyValueKey",
|
"emptyValueResourceKey": "kioskWifiSsidEmptyValueKey",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -416,7 +416,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 21,
|
"dataType": 21,
|
||||||
"category": 43,
|
"category": 46,
|
||||||
"nameResourceKey": "kioskWifiSsidsName",
|
"nameResourceKey": "kioskWifiSsidsName",
|
||||||
"descriptionResourceKey": "kioskWifiSsidsDescription",
|
"descriptionResourceKey": "kioskWifiSsidsDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -442,7 +442,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 43,
|
"category": 46,
|
||||||
"nameResourceKey": "kioskBluetoothConfigName",
|
"nameResourceKey": "kioskBluetoothConfigName",
|
||||||
"descriptionResourceKey": "kioskBluetoothConfigDescription",
|
"descriptionResourceKey": "kioskBluetoothConfigDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -459,7 +459,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 43,
|
"category": 46,
|
||||||
"nameResourceKey": "kioskFlashlightConfigName",
|
"nameResourceKey": "kioskFlashlightConfigName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -475,7 +475,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 43,
|
"category": 46,
|
||||||
"nameResourceKey": "kioskMediaVolumeConfigName",
|
"nameResourceKey": "kioskMediaVolumeConfigName",
|
||||||
"descriptionResourceKey": "kioskMediaVolumeConfigDescription",
|
"descriptionResourceKey": "kioskMediaVolumeConfigDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -492,7 +492,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 43,
|
"category": 46,
|
||||||
"nameResourceKey": "kioskDeviceInfoName",
|
"nameResourceKey": "kioskDeviceInfoName",
|
||||||
"descriptionResourceKey": "kioskDeviceInfoDescription",
|
"descriptionResourceKey": "kioskDeviceInfoDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -509,13 +509,13 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 43,
|
"category": 46,
|
||||||
"nameResourceKey": "kioskScreenSaverConfigName",
|
"nameResourceKey": "kioskScreenSaverConfigName",
|
||||||
"descriptionResourceKey": "kioskScreenSaverConfigDescription",
|
"descriptionResourceKey": "kioskScreenSaverConfigDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 43,
|
"category": 46,
|
||||||
"nameResourceKey": "kioskScreenSaverImageConfigName",
|
"nameResourceKey": "kioskScreenSaverImageConfigName",
|
||||||
"emptyValueResourceKey": "kioskScreenSaverImageEmptyValueKey",
|
"emptyValueResourceKey": "kioskScreenSaverImageEmptyValueKey",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -532,7 +532,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 43,
|
"category": 46,
|
||||||
"nameResourceKey": "kioskScreenSaverDisplayTimeConfigName",
|
"nameResourceKey": "kioskScreenSaverDisplayTimeConfigName",
|
||||||
"descriptionResourceKey": "kioskScreenSaverDisplayTimeConfigDescription",
|
"descriptionResourceKey": "kioskScreenSaverDisplayTimeConfigDescription",
|
||||||
"emptyValueResourceKey": "kioskScreenSaverSecondsEmptyValueKey",
|
"emptyValueResourceKey": "kioskScreenSaverSecondsEmptyValueKey",
|
||||||
@@ -550,7 +550,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 43,
|
"category": 46,
|
||||||
"nameResourceKey": "kioskScreenSaverStartDelayConfigName",
|
"nameResourceKey": "kioskScreenSaverStartDelayConfigName",
|
||||||
"descriptionResourceKey": "kioskScreenSaverStartDelayConfigDescription",
|
"descriptionResourceKey": "kioskScreenSaverStartDelayConfigDescription",
|
||||||
"emptyValueResourceKey": "kioskScreenSaverSecondsEmptyValueKey",
|
"emptyValueResourceKey": "kioskScreenSaverSecondsEmptyValueKey",
|
||||||
@@ -568,7 +568,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 43,
|
"category": 46,
|
||||||
"nameResourceKey": "kioskScreenSaverDetectMediaConfigName",
|
"nameResourceKey": "kioskScreenSaverDetectMediaConfigName",
|
||||||
"descriptionResourceKey": "kioskScreenSaverDetectMediaConfigDescription",
|
"descriptionResourceKey": "kioskScreenSaverDetectMediaConfigDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -595,13 +595,13 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 43,
|
"category": 46,
|
||||||
"nameResourceKey": "kioskManagedHomeScreenSignInEnabledName",
|
"nameResourceKey": "kioskManagedHomeScreenSignInEnabledName",
|
||||||
"descriptionResourceKey": "kioskManagedHomeScreenSignInEnabledDescription",
|
"descriptionResourceKey": "kioskManagedHomeScreenSignInEnabledDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 43,
|
"category": 46,
|
||||||
"nameResourceKey": "kioskManagedHomeScreenSignInBackgroundName",
|
"nameResourceKey": "kioskManagedHomeScreenSignInBackgroundName",
|
||||||
"descriptionResourceKey": "kioskManagedHomeScreenSignInBackgroundDescription",
|
"descriptionResourceKey": "kioskManagedHomeScreenSignInBackgroundDescription",
|
||||||
"emptyValueResourceKey": "kioskManagedHomeScreenSignInBackgroundEmptyValueKey",
|
"emptyValueResourceKey": "kioskManagedHomeScreenSignInBackgroundEmptyValueKey",
|
||||||
@@ -619,7 +619,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 43,
|
"category": 46,
|
||||||
"nameResourceKey": "kioskManagedHomeScreenSignInBrandingLogoName",
|
"nameResourceKey": "kioskManagedHomeScreenSignInBrandingLogoName",
|
||||||
"descriptionResourceKey": "kioskManagedHomeScreenSignInBrandingLogoDescription",
|
"descriptionResourceKey": "kioskManagedHomeScreenSignInBrandingLogoDescription",
|
||||||
"emptyValueResourceKey": "kioskManagedHomeScreenSignInBrandingLogoEmptyValueKey",
|
"emptyValueResourceKey": "kioskManagedHomeScreenSignInBrandingLogoEmptyValueKey",
|
||||||
@@ -637,13 +637,13 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 43,
|
"category": 46,
|
||||||
"nameResourceKey": "kioskManagedHomeScreenPINRequiredName",
|
"nameResourceKey": "kioskManagedHomeScreenPINRequiredName",
|
||||||
"descriptionResourceKey": "kioskManagedHomeScreenPINRequiredDescription",
|
"descriptionResourceKey": "kioskManagedHomeScreenPINRequiredDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 43,
|
"category": 46,
|
||||||
"nameResourceKey": "kioskManagedHomeScreenPINComplexityName",
|
"nameResourceKey": "kioskManagedHomeScreenPINComplexityName",
|
||||||
"descriptionResourceKey": "kioskManagedHomeScreenPINComplexityDescription",
|
"descriptionResourceKey": "kioskManagedHomeScreenPINComplexityDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -675,7 +675,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 43,
|
"category": 46,
|
||||||
"nameResourceKey": "kioskManagedHomeScreenPINRequiredToResumeName",
|
"nameResourceKey": "kioskManagedHomeScreenPINRequiredToResumeName",
|
||||||
"descriptionResourceKey": "kioskManagedHomeScreenPINRequiredToResumeDescription",
|
"descriptionResourceKey": "kioskManagedHomeScreenPINRequiredToResumeDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -702,13 +702,13 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 43,
|
"category": 46,
|
||||||
"nameResourceKey": "kioskManagedHomeScreenAutoSignOutName",
|
"nameResourceKey": "kioskManagedHomeScreenAutoSignOutName",
|
||||||
"descriptionResourceKey": "kioskManagedHomeScreenAutoSignOutDescription",
|
"descriptionResourceKey": "kioskManagedHomeScreenAutoSignOutDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 43,
|
"category": 46,
|
||||||
"nameResourceKey": "kioskManagedHomeScreenInactiveSignOutDelayName",
|
"nameResourceKey": "kioskManagedHomeScreenInactiveSignOutDelayName",
|
||||||
"descriptionResourceKey": "kioskManagedHomeScreenInactiveSignOutDelayDescription",
|
"descriptionResourceKey": "kioskManagedHomeScreenInactiveSignOutDelayDescription",
|
||||||
"emptyValueResourceKey": "kioskScreenSaverSecondsEmptyValueKey",
|
"emptyValueResourceKey": "kioskScreenSaverSecondsEmptyValueKey",
|
||||||
@@ -726,7 +726,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 43,
|
"category": 46,
|
||||||
"nameResourceKey": "kioskManagedHomeScreenInactiveNoticeDelayName",
|
"nameResourceKey": "kioskManagedHomeScreenInactiveNoticeDelayName",
|
||||||
"descriptionResourceKey": "kioskManagedHomeScreenInactiveNoticeDelayDescription",
|
"descriptionResourceKey": "kioskManagedHomeScreenInactiveNoticeDelayDescription",
|
||||||
"emptyValueResourceKey": "kioskScreenSaverSecondsEmptyValueKey",
|
"emptyValueResourceKey": "kioskScreenSaverSecondsEmptyValueKey",
|
||||||
@@ -782,7 +782,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 43,
|
"category": 46,
|
||||||
"nameResourceKey": "enrollmentProfileTypeFullyManagedConfigureMicrosoftLauncher",
|
"nameResourceKey": "enrollmentProfileTypeFullyManagedConfigureMicrosoftLauncher",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -796,7 +796,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 43,
|
"category": 46,
|
||||||
"nameResourceKey": "enrollmentProfileTypeFullyManagedMakeMicrosoftLauncherDefaultName",
|
"nameResourceKey": "enrollmentProfileTypeFullyManagedMakeMicrosoftLauncherDefaultName",
|
||||||
"descriptionResourceKey": "enrollmentProfileTypeFullyManagedMakeMicrosoftLauncherDefaultDescription",
|
"descriptionResourceKey": "enrollmentProfileTypeFullyManagedMakeMicrosoftLauncherDefaultDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -813,13 +813,13 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 43,
|
"category": 46,
|
||||||
"nameResourceKey": "enrollmentProfileTypeFullyManagedMicrosoftLauncherConfigureCustomWallpaperName",
|
"nameResourceKey": "enrollmentProfileTypeFullyManagedMicrosoftLauncherConfigureCustomWallpaperName",
|
||||||
"descriptionResourceKey": "enrollmentProfileTypeFullyManagedMicrosoftLauncherConfigureCustomWallpaperDescription",
|
"descriptionResourceKey": "enrollmentProfileTypeFullyManagedMicrosoftLauncherConfigureCustomWallpaperDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 43,
|
"category": 46,
|
||||||
"nameResourceKey": "enrollmentProfileTypeFullyManagedMicrosoftLauncherConfigureCustomWallpaperUrlName",
|
"nameResourceKey": "enrollmentProfileTypeFullyManagedMicrosoftLauncherConfigureCustomWallpaperUrlName",
|
||||||
"descriptionResourceKey": "enrollmentProfileTypeFullyManagedMicrosoftLauncherConfigureCustomWallpaperUrlDescription",
|
"descriptionResourceKey": "enrollmentProfileTypeFullyManagedMicrosoftLauncherConfigureCustomWallpaperUrlDescription",
|
||||||
"emptyValueResourceKey": "enrollmentProfileTypeFullyManagedMicrosoftLauncherConfigureCustomWallpaperUrlEmptyValueKey",
|
"emptyValueResourceKey": "enrollmentProfileTypeFullyManagedMicrosoftLauncherConfigureCustomWallpaperUrlEmptyValueKey",
|
||||||
@@ -836,7 +836,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 43,
|
"category": 46,
|
||||||
"nameResourceKey": "enrollmentProfileTypeFullyManagedMicrosoftLauncherConfigureCustomWallpaperAllowUserModifyName",
|
"nameResourceKey": "enrollmentProfileTypeFullyManagedMicrosoftLauncherConfigureCustomWallpaperAllowUserModifyName",
|
||||||
"descriptionResourceKey": "enrollmentProfileTypeFullyManagedMicrosoftLauncherConfigureCustomWallpaperAllowUserModifyDescription",
|
"descriptionResourceKey": "enrollmentProfileTypeFullyManagedMicrosoftLauncherConfigureCustomWallpaperAllowUserModifyDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -863,13 +863,13 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 43,
|
"category": 46,
|
||||||
"nameResourceKey": "enrollmentProfileTypeFullyManagedMicrosoftLauncherConfigureEnableLauncherFeedName",
|
"nameResourceKey": "enrollmentProfileTypeFullyManagedMicrosoftLauncherConfigureEnableLauncherFeedName",
|
||||||
"descriptionResourceKey": "enrollmentProfileTypeFullyManagedMicrosoftLauncherConfigureEnableLauncherFeedDescription",
|
"descriptionResourceKey": "enrollmentProfileTypeFullyManagedMicrosoftLauncherConfigureEnableLauncherFeedDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 43,
|
"category": 46,
|
||||||
"nameResourceKey": "enrollmentProfileTypeFullyManagedMicrosoftLauncherConfigureEnableLauncherFeedAllowUserModifyName",
|
"nameResourceKey": "enrollmentProfileTypeFullyManagedMicrosoftLauncherConfigureEnableLauncherFeedAllowUserModifyName",
|
||||||
"descriptionResourceKey": "enrollmentProfileTypeFullyManagedMicrosoftLauncherConfigureEnableLauncherFeedAllowUserModifyDescription",
|
"descriptionResourceKey": "enrollmentProfileTypeFullyManagedMicrosoftLauncherConfigureEnableLauncherFeedAllowUserModifyDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -896,13 +896,13 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 43,
|
"category": 46,
|
||||||
"nameResourceKey": "enrollmentProfileTypeFullyManagedMicrosoftLauncherConfigureEnableLauncherDockPresenceName",
|
"nameResourceKey": "enrollmentProfileTypeFullyManagedMicrosoftLauncherConfigureEnableLauncherDockPresenceName",
|
||||||
"descriptionResourceKey": "enrollmentProfileTypeFullyManagedMicrosoftLauncherConfigureEnableLauncherDockPresenceDescription",
|
"descriptionResourceKey": "enrollmentProfileTypeFullyManagedMicrosoftLauncherConfigureEnableLauncherDockPresenceDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 43,
|
"category": 46,
|
||||||
"nameResourceKey": "enrollmentProfileTypeFullyManagedMicrosoftLauncherConfigureEnableLauncherDockPresenceAllowUserModifyName",
|
"nameResourceKey": "enrollmentProfileTypeFullyManagedMicrosoftLauncherConfigureEnableLauncherDockPresenceAllowUserModifyName",
|
||||||
"descriptionResourceKey": "enrollmentProfileTypeFullyManagedMicrosoftLauncherConfigureEnableLauncherDockPresenceAllowUserModifyDescription",
|
"descriptionResourceKey": "enrollmentProfileTypeFullyManagedMicrosoftLauncherConfigureEnableLauncherDockPresenceAllowUserModifyDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -946,7 +946,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 43,
|
"category": 46,
|
||||||
"nameResourceKey": "enrollmentProfileTypeFullyManagedMicrosoftLauncherConfigureEnableLauncherSearchBarPlacementName",
|
"nameResourceKey": "enrollmentProfileTypeFullyManagedMicrosoftLauncherConfigureEnableLauncherSearchBarPlacementName",
|
||||||
"descriptionResourceKey": "enrollmentProfileTypeFullyManagedMicrosoftLauncherConfigureEnableLauncherSearchBarPlacementDescription",
|
"descriptionResourceKey": "enrollmentProfileTypeFullyManagedMicrosoftLauncherConfigureEnableLauncherSearchBarPlacementDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
"isSettingDescription": true,
|
"isSettingDescription": true,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 38,
|
"category": 41,
|
||||||
"nameResourceKey": "Windows10EndpointProtectionDeviceGuardLearnMore",
|
"nameResourceKey": "Windows10EndpointProtectionDeviceGuardLearnMore",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -18,7 +18,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 38,
|
"category": 41,
|
||||||
"nameResourceKey": "Win10AppLockerEnforcementTypeName",
|
"nameResourceKey": "Win10AppLockerEnforcementTypeName",
|
||||||
"descriptionResourceKey": "Win10AppLockerEnforcementTypeDescription",
|
"descriptionResourceKey": "Win10AppLockerEnforcementTypeDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -36,7 +36,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 38,
|
"category": 41,
|
||||||
"nameResourceKey": "Win10AppLockerApplicationControlTypeName",
|
"nameResourceKey": "Win10AppLockerApplicationControlTypeName",
|
||||||
"descriptionResourceKey": "Win10appLockerApplicationControlAllowDescription",
|
"descriptionResourceKey": "Win10appLockerApplicationControlAllowDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -51,7 +51,7 @@
|
|||||||
"isSettingDescription": true,
|
"isSettingDescription": true,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 38,
|
"category": 41,
|
||||||
"nameResourceKey": "Win10appLockerApplicationControlEnforceComponentsAndStoreAppsDescription",
|
"nameResourceKey": "Win10appLockerApplicationControlEnforceComponentsAndStoreAppsDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -74,7 +74,7 @@
|
|||||||
"isSettingDescription": true,
|
"isSettingDescription": true,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 38,
|
"category": 41,
|
||||||
"nameResourceKey": "Win10appLockerApplicationControlEnforceComponentsStoreAppsAndSmartlockerDescription",
|
"nameResourceKey": "Win10appLockerApplicationControlEnforceComponentsStoreAppsAndSmartlockerDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -106,7 +106,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 38,
|
"category": 41,
|
||||||
"nameResourceKey": "Win10AppLockerApplicationControlTypeName",
|
"nameResourceKey": "Win10AppLockerApplicationControlTypeName",
|
||||||
"descriptionResourceKey": "Win10AppLockerApplicationControlTypeAuditDescription",
|
"descriptionResourceKey": "Win10AppLockerApplicationControlTypeAuditDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -121,7 +121,7 @@
|
|||||||
"isSettingDescription": true,
|
"isSettingDescription": true,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 38,
|
"category": 41,
|
||||||
"nameResourceKey": "Win10appLockerApplicationControlAuditComponentsAndStoreAppsDescription",
|
"nameResourceKey": "Win10appLockerApplicationControlAuditComponentsAndStoreAppsDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -144,7 +144,7 @@
|
|||||||
"isSettingDescription": true,
|
"isSettingDescription": true,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 38,
|
"category": 41,
|
||||||
"nameResourceKey": "Win10appLockerApplicationControlAuditComponentsStoreAppsAndSmartlockerDescription",
|
"nameResourceKey": "Win10appLockerApplicationControlAuditComponentsStoreAppsAndSmartlockerDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
"devicehealth_complianceandroid": [
|
"devicehealth_complianceandroid": [
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 36,
|
"category": 39,
|
||||||
"nameResourceKey": "complianceBlockDAManagedDevicesName",
|
"nameResourceKey": "complianceBlockDAManagedDevicesName",
|
||||||
"descriptionResourceKey": "complianceBlockDAManagedDevicesDescription",
|
"descriptionResourceKey": "complianceBlockDAManagedDevicesDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -19,7 +19,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 36,
|
"category": 39,
|
||||||
"nameResourceKey": "complianceRootedAllowedName",
|
"nameResourceKey": "complianceRootedAllowedName",
|
||||||
"descriptionResourceKey": "complianceRootedAllowedDescription",
|
"descriptionResourceKey": "complianceRootedAllowedDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -36,7 +36,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 36,
|
"category": 39,
|
||||||
"nameResourceKey": "complianceDeviceThreatProtectionRequirementName",
|
"nameResourceKey": "complianceDeviceThreatProtectionRequirementName",
|
||||||
"descriptionResourceKey": "complianceDeviceThreatProtectionRequirementDescription",
|
"descriptionResourceKey": "complianceDeviceThreatProtectionRequirementDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -80,12 +80,12 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 36,
|
"category": 39,
|
||||||
"nameResourceKey": "googlePlayProtectHeader",
|
"nameResourceKey": "googlePlayProtectHeader",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 36,
|
"category": 39,
|
||||||
"nameResourceKey": "requireGooglePlayServicesName",
|
"nameResourceKey": "requireGooglePlayServicesName",
|
||||||
"descriptionResourceKey": "requireGooglePlayServicesDescription",
|
"descriptionResourceKey": "requireGooglePlayServicesDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -102,7 +102,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 36,
|
"category": 39,
|
||||||
"nameResourceKey": "requireUpToDateSecurityProvidersName",
|
"nameResourceKey": "requireUpToDateSecurityProvidersName",
|
||||||
"descriptionResourceKey": "requireUpToDateSecurityProvidersDescription",
|
"descriptionResourceKey": "requireUpToDateSecurityProvidersDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -119,7 +119,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 36,
|
"category": 39,
|
||||||
"nameResourceKey": "complianceSecurityEnableThreatScanOnAppsName",
|
"nameResourceKey": "complianceSecurityEnableThreatScanOnAppsName",
|
||||||
"descriptionResourceKey": "complianceSecurityEnableThreatScanOnAppsDescription",
|
"descriptionResourceKey": "complianceSecurityEnableThreatScanOnAppsDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -136,7 +136,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 36,
|
"category": 39,
|
||||||
"nameResourceKey": "complianceSecurityEnableThreatScanOnAppsName",
|
"nameResourceKey": "complianceSecurityEnableThreatScanOnAppsName",
|
||||||
"descriptionResourceKey": "complianceSecurityEnableThreatScanOnAppsDescription",
|
"descriptionResourceKey": "complianceSecurityEnableThreatScanOnAppsDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -153,7 +153,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 36,
|
"category": 39,
|
||||||
"nameResourceKey": "safetyNetAttestationOptionsName",
|
"nameResourceKey": "safetyNetAttestationOptionsName",
|
||||||
"descriptionResourceKey": "safetyNetAttestationOptionsDescription",
|
"descriptionResourceKey": "safetyNetAttestationOptionsDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
"devicehealth_complianceandroiddeviceowner": [
|
"devicehealth_complianceandroiddeviceowner": [
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 36,
|
"category": 39,
|
||||||
"nameResourceKey": "complianceDeviceThreatProtectionRequirementName",
|
"nameResourceKey": "complianceDeviceThreatProtectionRequirementName",
|
||||||
"descriptionResourceKey": "complianceDeviceThreatProtectionRequirementDescription",
|
"descriptionResourceKey": "complianceDeviceThreatProtectionRequirementDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -46,12 +46,12 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 36,
|
"category": 39,
|
||||||
"nameResourceKey": "googlePlayProtectHeader",
|
"nameResourceKey": "googlePlayProtectHeader",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 36,
|
"category": 39,
|
||||||
"nameResourceKey": "safetyNetAttestationOptionsName",
|
"nameResourceKey": "safetyNetAttestationOptionsName",
|
||||||
"descriptionResourceKey": "safetyNetAttestationOptionsDescription",
|
"descriptionResourceKey": "safetyNetAttestationOptionsDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
"devicehealth_complianceandroidforwork": [
|
"devicehealth_complianceandroidforwork": [
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 36,
|
"category": 39,
|
||||||
"nameResourceKey": "complianceRootedAllowedName",
|
"nameResourceKey": "complianceRootedAllowedName",
|
||||||
"descriptionResourceKey": "complianceRootedAllowedDescription",
|
"descriptionResourceKey": "complianceRootedAllowedDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -19,7 +19,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 36,
|
"category": 39,
|
||||||
"nameResourceKey": "complianceDeviceThreatProtectionRequirementName",
|
"nameResourceKey": "complianceDeviceThreatProtectionRequirementName",
|
||||||
"descriptionResourceKey": "complianceDeviceThreatProtectionRequirementDescription",
|
"descriptionResourceKey": "complianceDeviceThreatProtectionRequirementDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -63,12 +63,12 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 36,
|
"category": 39,
|
||||||
"nameResourceKey": "googlePlayProtectHeader",
|
"nameResourceKey": "googlePlayProtectHeader",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 36,
|
"category": 39,
|
||||||
"nameResourceKey": "requireGooglePlayServicesName",
|
"nameResourceKey": "requireGooglePlayServicesName",
|
||||||
"descriptionResourceKey": "requireGooglePlayServicesDescription",
|
"descriptionResourceKey": "requireGooglePlayServicesDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -85,7 +85,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 36,
|
"category": 39,
|
||||||
"nameResourceKey": "requireUpToDateSecurityProvidersName",
|
"nameResourceKey": "requireUpToDateSecurityProvidersName",
|
||||||
"descriptionResourceKey": "requireUpToDateSecurityProvidersDescription",
|
"descriptionResourceKey": "requireUpToDateSecurityProvidersDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -102,7 +102,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 36,
|
"category": 39,
|
||||||
"nameResourceKey": "safetyNetAttestationOptionsName",
|
"nameResourceKey": "safetyNetAttestationOptionsName",
|
||||||
"descriptionResourceKey": "safetyNetAttestationOptionsDescription",
|
"descriptionResourceKey": "safetyNetAttestationOptionsDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -120,7 +120,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 36,
|
"category": 39,
|
||||||
"nameResourceKey": "requiredAndroidSafetyNetEvaluationTypeName",
|
"nameResourceKey": "requiredAndroidSafetyNetEvaluationTypeName",
|
||||||
"descriptionResourceKey": "requiredAndroidSafetyNetEvaluationTypeDescription",
|
"descriptionResourceKey": "requiredAndroidSafetyNetEvaluationTypeDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -154,7 +154,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 36,
|
"category": 39,
|
||||||
"nameResourceKey": "requiredAndroidSafetyNetEvaluationTypeName",
|
"nameResourceKey": "requiredAndroidSafetyNetEvaluationTypeName",
|
||||||
"descriptionResourceKey": "requiredAndroidSafetyNetEvaluationTypeDescription",
|
"descriptionResourceKey": "requiredAndroidSafetyNetEvaluationTypeDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"devicehealth_complianceaospdeviceowner": {
|
"devicehealth_complianceaospdeviceowner": {
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 36,
|
"category": 39,
|
||||||
"nameResourceKey": "complianceRootedAllowedName",
|
"nameResourceKey": "complianceRootedAllowedName",
|
||||||
"descriptionResourceKey": "complianceRootedAllowedDescription",
|
"descriptionResourceKey": "complianceRootedAllowedDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
"devicehealth_complianceios": [
|
"devicehealth_complianceios": [
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 36,
|
"category": 39,
|
||||||
"nameResourceKey": "complianceJailbreakAllowedName",
|
"nameResourceKey": "complianceJailbreakAllowedName",
|
||||||
"descriptionResourceKey": "complianceJailbreakAllowedDescription",
|
"descriptionResourceKey": "complianceJailbreakAllowedDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -19,7 +19,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 36,
|
"category": 39,
|
||||||
"nameResourceKey": "complianceDeviceThreatProtectionRequirementName",
|
"nameResourceKey": "complianceDeviceThreatProtectionRequirementName",
|
||||||
"descriptionResourceKey": "complianceDeviceThreatProtectionRequirementDescription",
|
"descriptionResourceKey": "complianceDeviceThreatProtectionRequirementDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"devicehealth_compliancemac": {
|
"devicehealth_compliancemac": {
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 36,
|
"category": 39,
|
||||||
"nameResourceKey": "complianceSystemIntegrityProtectionName",
|
"nameResourceKey": "complianceSystemIntegrityProtectionName",
|
||||||
"descriptionResourceKey": "complianceSystemIntegrityProtectionDescription",
|
"descriptionResourceKey": "complianceSystemIntegrityProtectionDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|||||||
@@ -3,12 +3,12 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 36,
|
"category": 39,
|
||||||
"nameResourceKey": "complianceWindowsDeviceHealthAttestationHeader",
|
"nameResourceKey": "complianceWindowsDeviceHealthAttestationHeader",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 36,
|
"category": 39,
|
||||||
"nameResourceKey": "bitLockerEnabledName",
|
"nameResourceKey": "bitLockerEnabledName",
|
||||||
"descriptionResourceKey": "bitLockerEnabledDescription",
|
"descriptionResourceKey": "bitLockerEnabledDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -25,7 +25,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 36,
|
"category": 39,
|
||||||
"nameResourceKey": "secureBootEnabledName",
|
"nameResourceKey": "secureBootEnabledName",
|
||||||
"descriptionResourceKey": "secureBootEnabledDescription",
|
"descriptionResourceKey": "secureBootEnabledDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -42,7 +42,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 36,
|
"category": 39,
|
||||||
"nameResourceKey": "codeIntegrityEnabledName",
|
"nameResourceKey": "codeIntegrityEnabledName",
|
||||||
"descriptionResourceKey": "codeIntegrityEnabledDescription",
|
"descriptionResourceKey": "codeIntegrityEnabledDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|||||||
@@ -4,13 +4,13 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": true,
|
"showAsSectionHeader": true,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 39,
|
"category": 42,
|
||||||
"nameResourceKey": "allAndroidCorpEnrollmentTypesHeaderName",
|
"nameResourceKey": "allAndroidCorpEnrollmentTypesHeaderName",
|
||||||
"descriptionResourceKey": "allAndroidCorpEnrollmentTypesHeaderDescription",
|
"descriptionResourceKey": "allAndroidCorpEnrollmentTypesHeaderDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 39,
|
"category": 42,
|
||||||
"nameResourceKey": "requiredPasswordTypeName",
|
"nameResourceKey": "requiredPasswordTypeName",
|
||||||
"descriptionResourceKey": "androidEnterpriseRequiredPasswordTypeDescription",
|
"descriptionResourceKey": "androidEnterpriseRequiredPasswordTypeDescription",
|
||||||
"emptyValueResourceKey": "passwordExpirationInDaysEmptyValueKey",
|
"emptyValueResourceKey": "passwordExpirationInDaysEmptyValueKey",
|
||||||
@@ -43,7 +43,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 39,
|
"category": 42,
|
||||||
"nameResourceKey": "complianceMinimumPasswordLengthName",
|
"nameResourceKey": "complianceMinimumPasswordLengthName",
|
||||||
"descriptionResourceKey": "passwordMinimumLengthDescription",
|
"descriptionResourceKey": "passwordMinimumLengthDescription",
|
||||||
"emptyValueResourceKey": "minimumPasswordLengthEmptyValueKeyFourToSixteen",
|
"emptyValueResourceKey": "minimumPasswordLengthEmptyValueKeyFourToSixteen",
|
||||||
@@ -67,7 +67,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 39,
|
"category": 42,
|
||||||
"nameResourceKey": "complianceMinimumPasswordLengthName",
|
"nameResourceKey": "complianceMinimumPasswordLengthName",
|
||||||
"descriptionResourceKey": "passwordMinimumLengthDescription",
|
"descriptionResourceKey": "passwordMinimumLengthDescription",
|
||||||
"emptyValueResourceKey": "minimumPasswordLengthEmptyValueKeyFourToSixteen",
|
"emptyValueResourceKey": "minimumPasswordLengthEmptyValueKeyFourToSixteen",
|
||||||
@@ -91,7 +91,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 39,
|
"category": 42,
|
||||||
"nameResourceKey": "complianceMinimumPasswordLengthName",
|
"nameResourceKey": "complianceMinimumPasswordLengthName",
|
||||||
"descriptionResourceKey": "passwordMinimumLengthDescription",
|
"descriptionResourceKey": "passwordMinimumLengthDescription",
|
||||||
"emptyValueResourceKey": "minimumPasswordLengthEmptyValueKeyFourToSixteen",
|
"emptyValueResourceKey": "minimumPasswordLengthEmptyValueKeyFourToSixteen",
|
||||||
@@ -115,7 +115,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 39,
|
"category": 42,
|
||||||
"nameResourceKey": "complianceMinimumPasswordLengthName",
|
"nameResourceKey": "complianceMinimumPasswordLengthName",
|
||||||
"descriptionResourceKey": "passwordMinimumLengthDescription",
|
"descriptionResourceKey": "passwordMinimumLengthDescription",
|
||||||
"emptyValueResourceKey": "minimumPasswordLengthEmptyValueKeyFourToSixteen",
|
"emptyValueResourceKey": "minimumPasswordLengthEmptyValueKeyFourToSixteen",
|
||||||
@@ -139,7 +139,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 39,
|
"category": 42,
|
||||||
"nameResourceKey": "complianceMinimumPasswordLengthName",
|
"nameResourceKey": "complianceMinimumPasswordLengthName",
|
||||||
"descriptionResourceKey": "passwordMinimumLengthDescription",
|
"descriptionResourceKey": "passwordMinimumLengthDescription",
|
||||||
"emptyValueResourceKey": "minimumPasswordLengthEmptyValueKeyFourToSixteen",
|
"emptyValueResourceKey": "minimumPasswordLengthEmptyValueKeyFourToSixteen",
|
||||||
@@ -156,7 +156,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 39,
|
"category": 42,
|
||||||
"nameResourceKey": "passwordMinimumLetterCharactersName",
|
"nameResourceKey": "passwordMinimumLetterCharactersName",
|
||||||
"descriptionResourceKey": "",
|
"descriptionResourceKey": "",
|
||||||
"emptyValueResourceKey": "passwordEmptyValueKeyZeroToSixteen",
|
"emptyValueResourceKey": "passwordEmptyValueKeyZeroToSixteen",
|
||||||
@@ -173,7 +173,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 39,
|
"category": 42,
|
||||||
"nameResourceKey": "passwordMinimumLowerCaseCharactersName",
|
"nameResourceKey": "passwordMinimumLowerCaseCharactersName",
|
||||||
"descriptionResourceKey": "",
|
"descriptionResourceKey": "",
|
||||||
"emptyValueResourceKey": "passwordEmptyValueKeyZeroToSixteen",
|
"emptyValueResourceKey": "passwordEmptyValueKeyZeroToSixteen",
|
||||||
@@ -190,7 +190,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 39,
|
"category": 42,
|
||||||
"nameResourceKey": "passwordMinimumUpperCaseCharactersName",
|
"nameResourceKey": "passwordMinimumUpperCaseCharactersName",
|
||||||
"descriptionResourceKey": "",
|
"descriptionResourceKey": "",
|
||||||
"emptyValueResourceKey": "passwordEmptyValueKeyZeroToSixteen",
|
"emptyValueResourceKey": "passwordEmptyValueKeyZeroToSixteen",
|
||||||
@@ -207,7 +207,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 39,
|
"category": 42,
|
||||||
"nameResourceKey": "passwordMinimumNonLetterCharactersName",
|
"nameResourceKey": "passwordMinimumNonLetterCharactersName",
|
||||||
"descriptionResourceKey": "",
|
"descriptionResourceKey": "",
|
||||||
"emptyValueResourceKey": "passwordEmptyValueKeyZeroToSixteen",
|
"emptyValueResourceKey": "passwordEmptyValueKeyZeroToSixteen",
|
||||||
@@ -224,7 +224,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 39,
|
"category": 42,
|
||||||
"nameResourceKey": "passwordMinimumNumericCharactersName",
|
"nameResourceKey": "passwordMinimumNumericCharactersName",
|
||||||
"descriptionResourceKey": "",
|
"descriptionResourceKey": "",
|
||||||
"emptyValueResourceKey": "passwordEmptyValueKeyZeroToSixteen",
|
"emptyValueResourceKey": "passwordEmptyValueKeyZeroToSixteen",
|
||||||
@@ -241,7 +241,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 39,
|
"category": 42,
|
||||||
"nameResourceKey": "passwordMinimumSymbolCharactersName",
|
"nameResourceKey": "passwordMinimumSymbolCharactersName",
|
||||||
"descriptionResourceKey": "passwordMinimumSymbolCharactersDescription",
|
"descriptionResourceKey": "passwordMinimumSymbolCharactersDescription",
|
||||||
"emptyValueResourceKey": "passwordEmptyValueKeyZeroToSixteen",
|
"emptyValueResourceKey": "passwordEmptyValueKeyZeroToSixteen",
|
||||||
@@ -265,7 +265,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 39,
|
"category": 42,
|
||||||
"nameResourceKey": "androidDeviceOwnerCustomPasswordName",
|
"nameResourceKey": "androidDeviceOwnerCustomPasswordName",
|
||||||
"descriptionResourceKey": "androidDeviceOwnerCustomPasswordDescription",
|
"descriptionResourceKey": "androidDeviceOwnerCustomPasswordDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -292,7 +292,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 39,
|
"category": 42,
|
||||||
"nameResourceKey": "passwordExpirationName",
|
"nameResourceKey": "passwordExpirationName",
|
||||||
"descriptionResourceKey": "passwordExpirationDescription",
|
"descriptionResourceKey": "passwordExpirationDescription",
|
||||||
"emptyValueResourceKey": "passwordExpirationInDaysEmptyValueOneYearKey",
|
"emptyValueResourceKey": "passwordExpirationInDaysEmptyValueOneYearKey",
|
||||||
@@ -309,7 +309,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 39,
|
"category": 42,
|
||||||
"nameResourceKey": "passwordPreviousPasswordBlockCountName",
|
"nameResourceKey": "passwordPreviousPasswordBlockCountName",
|
||||||
"descriptionResourceKey": "passwordPreviousPasswordBlockCountDescription",
|
"descriptionResourceKey": "passwordPreviousPasswordBlockCountDescription",
|
||||||
"emptyValueResourceKey": "numberOfPreviousPasswordsToBlockEmptyValueKey",
|
"emptyValueResourceKey": "numberOfPreviousPasswordsToBlockEmptyValueKey",
|
||||||
@@ -326,7 +326,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 39,
|
"category": 42,
|
||||||
"nameResourceKey": "passwordSignInFailureCountBeforeFactoryResetName",
|
"nameResourceKey": "passwordSignInFailureCountBeforeFactoryResetName",
|
||||||
"descriptionResourceKey": "passwordSignInFailureCountBeforeFactoryResetDescription",
|
"descriptionResourceKey": "passwordSignInFailureCountBeforeFactoryResetDescription",
|
||||||
"emptyValueResourceKey": "passwordSignInFailureCountBeforeFactoryResetEmptyValueKey",
|
"emptyValueResourceKey": "passwordSignInFailureCountBeforeFactoryResetEmptyValueKey",
|
||||||
@@ -343,7 +343,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 13,
|
"dataType": 13,
|
||||||
"category": 39,
|
"category": 42,
|
||||||
"nameResourceKey": "passwordBlockKeyguardFeaturesName",
|
"nameResourceKey": "passwordBlockKeyguardFeaturesName",
|
||||||
"descriptionResourceKey": "passwordBlockKeyguardFeaturesDescription",
|
"descriptionResourceKey": "passwordBlockKeyguardFeaturesDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -379,6 +379,26 @@
|
|||||||
"nameResourceKey": "fingerprintOptionAndroid",
|
"nameResourceKey": "fingerprintOptionAndroid",
|
||||||
"value": "fingerprint",
|
"value": "fingerprint",
|
||||||
"enabled": true
|
"enabled": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"nameResourceKey": "faceOption",
|
||||||
|
"value": "face",
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"nameResourceKey": "irisOption",
|
||||||
|
"value": "iris",
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"nameResourceKey": "biometricsOption",
|
||||||
|
"value": "biometrics",
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"nameResourceKey": "allFeaturesOption",
|
||||||
|
"value": "allFeatures",
|
||||||
|
"enabled": true
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"entityKey": "passwordBlockKeyguardFeaturesList",
|
"entityKey": "passwordBlockKeyguardFeaturesList",
|
||||||
@@ -388,7 +408,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 39,
|
"category": 42,
|
||||||
"nameResourceKey": "requiredPasswordUnlockName",
|
"nameResourceKey": "requiredPasswordUnlockName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -424,13 +444,13 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": true,
|
"showAsSectionHeader": true,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 39,
|
"category": 42,
|
||||||
"nameResourceKey": "fullyManagedAndDedicatedAndroidEnrollmentTypesHeaderName",
|
"nameResourceKey": "fullyManagedAndDedicatedAndroidEnrollmentTypesHeaderName",
|
||||||
"descriptionResourceKey": "fullyManagedAndDedicatedAndroidEnrollmentTypesHeaderDescription",
|
"descriptionResourceKey": "fullyManagedAndDedicatedAndroidEnrollmentTypesHeaderDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 39,
|
"category": 42,
|
||||||
"nameResourceKey": "keyguardDisabledName",
|
"nameResourceKey": "keyguardDisabledName",
|
||||||
"descriptionResourceKey": "keyguardDisabledDescriptionAndroid",
|
"descriptionResourceKey": "keyguardDisabledDescriptionAndroid",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
"devicepassword_aospdeviceownerdevice": [
|
"devicepassword_aospdeviceownerdevice": [
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 39,
|
"category": 42,
|
||||||
"nameResourceKey": "requiredPasswordTypeName",
|
"nameResourceKey": "requiredPasswordTypeName",
|
||||||
"descriptionResourceKey": "androidEnterpriseRequiredPasswordTypeDescription",
|
"descriptionResourceKey": "androidEnterpriseRequiredPasswordTypeDescription",
|
||||||
"emptyValueResourceKey": "passwordExpirationInDaysEmptyValueKey",
|
"emptyValueResourceKey": "passwordExpirationInDaysEmptyValueKey",
|
||||||
@@ -35,7 +35,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 39,
|
"category": 42,
|
||||||
"nameResourceKey": "complianceMinimumPasswordLengthName",
|
"nameResourceKey": "complianceMinimumPasswordLengthName",
|
||||||
"descriptionResourceKey": "passwordMinimumLengthDescription",
|
"descriptionResourceKey": "passwordMinimumLengthDescription",
|
||||||
"emptyValueResourceKey": "minimumPasswordLengthEmptyValueKeyFourToSixteen",
|
"emptyValueResourceKey": "minimumPasswordLengthEmptyValueKeyFourToSixteen",
|
||||||
@@ -59,7 +59,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 39,
|
"category": 42,
|
||||||
"nameResourceKey": "complianceMinimumPasswordLengthName",
|
"nameResourceKey": "complianceMinimumPasswordLengthName",
|
||||||
"descriptionResourceKey": "passwordMinimumLengthDescription",
|
"descriptionResourceKey": "passwordMinimumLengthDescription",
|
||||||
"emptyValueResourceKey": "minimumPasswordLengthEmptyValueKeyFourToSixteen",
|
"emptyValueResourceKey": "minimumPasswordLengthEmptyValueKeyFourToSixteen",
|
||||||
@@ -83,7 +83,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 39,
|
"category": 42,
|
||||||
"nameResourceKey": "complianceMinimumPasswordLengthName",
|
"nameResourceKey": "complianceMinimumPasswordLengthName",
|
||||||
"descriptionResourceKey": "passwordMinimumLengthDescription",
|
"descriptionResourceKey": "passwordMinimumLengthDescription",
|
||||||
"emptyValueResourceKey": "minimumPasswordLengthEmptyValueKeyFourToSixteen",
|
"emptyValueResourceKey": "minimumPasswordLengthEmptyValueKeyFourToSixteen",
|
||||||
@@ -107,7 +107,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 39,
|
"category": 42,
|
||||||
"nameResourceKey": "complianceMinimumPasswordLengthName",
|
"nameResourceKey": "complianceMinimumPasswordLengthName",
|
||||||
"descriptionResourceKey": "passwordMinimumLengthDescription",
|
"descriptionResourceKey": "passwordMinimumLengthDescription",
|
||||||
"emptyValueResourceKey": "minimumPasswordLengthEmptyValueKeyFourToSixteen",
|
"emptyValueResourceKey": "minimumPasswordLengthEmptyValueKeyFourToSixteen",
|
||||||
@@ -131,7 +131,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 39,
|
"category": 42,
|
||||||
"nameResourceKey": "complianceMinimumPasswordLengthName",
|
"nameResourceKey": "complianceMinimumPasswordLengthName",
|
||||||
"descriptionResourceKey": "passwordMinimumLengthDescription",
|
"descriptionResourceKey": "passwordMinimumLengthDescription",
|
||||||
"emptyValueResourceKey": "minimumPasswordLengthEmptyValueKeyFourToSixteen",
|
"emptyValueResourceKey": "minimumPasswordLengthEmptyValueKeyFourToSixteen",
|
||||||
@@ -159,7 +159,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 39,
|
"category": 42,
|
||||||
"nameResourceKey": "passwordSignInFailureCountBeforeFactoryResetName",
|
"nameResourceKey": "passwordSignInFailureCountBeforeFactoryResetName",
|
||||||
"descriptionResourceKey": "passwordSignInFailureCountBeforeFactoryResetDescription",
|
"descriptionResourceKey": "passwordSignInFailureCountBeforeFactoryResetDescription",
|
||||||
"emptyValueResourceKey": "passwordSignInFailureCountBeforeFactoryResetEmptyValueKey",
|
"emptyValueResourceKey": "passwordSignInFailureCountBeforeFactoryResetEmptyValueKey",
|
||||||
@@ -176,7 +176,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 39,
|
"category": 42,
|
||||||
"nameResourceKey": "minutesOfInactivityBeforeScreenTurnsOffName",
|
"nameResourceKey": "minutesOfInactivityBeforeScreenTurnsOffName",
|
||||||
"descriptionResourceKey": "minutesOfInactivityBeforeScreenTurnsOffDescription",
|
"descriptionResourceKey": "minutesOfInactivityBeforeScreenTurnsOffDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|||||||
@@ -3,12 +3,12 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 40,
|
"category": 43,
|
||||||
"nameResourceKey": "complianceOsVersionRestrictionHeader",
|
"nameResourceKey": "complianceOsVersionRestrictionHeader",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 40,
|
"category": 43,
|
||||||
"nameResourceKey": "complianceOsVersionRestrictionMinimumName",
|
"nameResourceKey": "complianceOsVersionRestrictionMinimumName",
|
||||||
"descriptionResourceKey": "complianceOsVersionRestrictionMinimumAndroidDescription",
|
"descriptionResourceKey": "complianceOsVersionRestrictionMinimumAndroidDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -24,7 +24,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 40,
|
"category": 43,
|
||||||
"nameResourceKey": "complianceOsVersionRestrictionMaximumName",
|
"nameResourceKey": "complianceOsVersionRestrictionMaximumName",
|
||||||
"descriptionResourceKey": "complianceOsVersionRestrictionMaximumAndroidDescription",
|
"descriptionResourceKey": "complianceOsVersionRestrictionMaximumAndroidDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|||||||
@@ -3,12 +3,12 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 40,
|
"category": 43,
|
||||||
"nameResourceKey": "complianceOsVersionRestrictionHeader",
|
"nameResourceKey": "complianceOsVersionRestrictionHeader",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 40,
|
"category": 43,
|
||||||
"nameResourceKey": "complianceOsVersionRestrictionMinimumName",
|
"nameResourceKey": "complianceOsVersionRestrictionMinimumName",
|
||||||
"descriptionResourceKey": "complianceOsVersionRestrictionMinimumAndroidDescription",
|
"descriptionResourceKey": "complianceOsVersionRestrictionMinimumAndroidDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -24,7 +24,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 40,
|
"category": 43,
|
||||||
"nameResourceKey": "complianceOsVersionRestrictionMaximumName",
|
"nameResourceKey": "complianceOsVersionRestrictionMaximumName",
|
||||||
"descriptionResourceKey": "complianceOsVersionRestrictionMaximumAndroidDescription",
|
"descriptionResourceKey": "complianceOsVersionRestrictionMaximumAndroidDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -40,7 +40,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 40,
|
"category": 43,
|
||||||
"nameResourceKey": "complianceMinimumSecurityPatchLevelName",
|
"nameResourceKey": "complianceMinimumSecurityPatchLevelName",
|
||||||
"descriptionResourceKey": "complianceMinimumSecurityPatchLevelDescription",
|
"descriptionResourceKey": "complianceMinimumSecurityPatchLevelDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|||||||
@@ -3,12 +3,12 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 40,
|
"category": 43,
|
||||||
"nameResourceKey": "complianceOsVersionRestrictionHeader",
|
"nameResourceKey": "complianceOsVersionRestrictionHeader",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 40,
|
"category": 43,
|
||||||
"nameResourceKey": "complianceOsVersionRestrictionMinimumName",
|
"nameResourceKey": "complianceOsVersionRestrictionMinimumName",
|
||||||
"descriptionResourceKey": "complianceOsVersionRestrictionMinimumAndroidDescription",
|
"descriptionResourceKey": "complianceOsVersionRestrictionMinimumAndroidDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -24,7 +24,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 40,
|
"category": 43,
|
||||||
"nameResourceKey": "complianceOsVersionRestrictionMaximumName",
|
"nameResourceKey": "complianceOsVersionRestrictionMaximumName",
|
||||||
"descriptionResourceKey": "complianceOsVersionRestrictionMaximumAndroidDescription",
|
"descriptionResourceKey": "complianceOsVersionRestrictionMaximumAndroidDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|||||||
@@ -3,12 +3,12 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 40,
|
"category": 43,
|
||||||
"nameResourceKey": "complianceOsVersionRestrictionHeader",
|
"nameResourceKey": "complianceOsVersionRestrictionHeader",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 40,
|
"category": 43,
|
||||||
"nameResourceKey": "complianceOsVersionRestrictionMinimumName",
|
"nameResourceKey": "complianceOsVersionRestrictionMinimumName",
|
||||||
"descriptionResourceKey": "complianceOsVersionRestrictionMinimumAndroidDescription",
|
"descriptionResourceKey": "complianceOsVersionRestrictionMinimumAndroidDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -24,7 +24,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 40,
|
"category": 43,
|
||||||
"nameResourceKey": "complianceOsVersionRestrictionMaximumName",
|
"nameResourceKey": "complianceOsVersionRestrictionMaximumName",
|
||||||
"descriptionResourceKey": "complianceOsVersionRestrictionMaximumAndroidDescription",
|
"descriptionResourceKey": "complianceOsVersionRestrictionMaximumAndroidDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -40,7 +40,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 40,
|
"category": 43,
|
||||||
"nameResourceKey": "complianceMinimumSecurityPatchLevelName",
|
"nameResourceKey": "complianceMinimumSecurityPatchLevelName",
|
||||||
"descriptionResourceKey": "complianceMinimumSecurityPatchLevelDescription",
|
"descriptionResourceKey": "complianceMinimumSecurityPatchLevelDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|||||||
@@ -3,12 +3,12 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 40,
|
"category": 43,
|
||||||
"nameResourceKey": "complianceOsVersionRestrictionHeader",
|
"nameResourceKey": "complianceOsVersionRestrictionHeader",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 40,
|
"category": 43,
|
||||||
"nameResourceKey": "complianceOsVersionRestrictionMinimumName",
|
"nameResourceKey": "complianceOsVersionRestrictionMinimumName",
|
||||||
"descriptionResourceKey": "complianceOsVersionRestrictionMinimumDescription",
|
"descriptionResourceKey": "complianceOsVersionRestrictionMinimumDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -24,7 +24,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 40,
|
"category": 43,
|
||||||
"nameResourceKey": "complianceOsVersionRestrictionMaximumName",
|
"nameResourceKey": "complianceOsVersionRestrictionMaximumName",
|
||||||
"descriptionResourceKey": "complianceOsVersionRestrictionMaximumDescription",
|
"descriptionResourceKey": "complianceOsVersionRestrictionMaximumDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -40,7 +40,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 40,
|
"category": 43,
|
||||||
"nameResourceKey": "complianceOsBuildVersionRestrictionMinimumName",
|
"nameResourceKey": "complianceOsBuildVersionRestrictionMinimumName",
|
||||||
"descriptionResourceKey": "complianceOsBuildVersionRestrictionMinimumDescription",
|
"descriptionResourceKey": "complianceOsBuildVersionRestrictionMinimumDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -56,7 +56,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 40,
|
"category": 43,
|
||||||
"nameResourceKey": "complianceOsBuildVersionRestrictionMaximumName",
|
"nameResourceKey": "complianceOsBuildVersionRestrictionMaximumName",
|
||||||
"descriptionResourceKey": "complianceOsBuildVersionRestrictionMaximumDescription",
|
"descriptionResourceKey": "complianceOsBuildVersionRestrictionMaximumDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|||||||
@@ -3,12 +3,12 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 40,
|
"category": 43,
|
||||||
"nameResourceKey": "complianceOsVersionRestrictionHeader",
|
"nameResourceKey": "complianceOsVersionRestrictionHeader",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 40,
|
"category": 43,
|
||||||
"nameResourceKey": "complianceOsVersionRestrictionMinimumName",
|
"nameResourceKey": "complianceOsVersionRestrictionMinimumName",
|
||||||
"descriptionResourceKey": "complianceOsVersionRestrictionMinimumDescription",
|
"descriptionResourceKey": "complianceOsVersionRestrictionMinimumDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -24,7 +24,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 40,
|
"category": 43,
|
||||||
"nameResourceKey": "complianceOsVersionRestrictionMaximumName",
|
"nameResourceKey": "complianceOsVersionRestrictionMaximumName",
|
||||||
"descriptionResourceKey": "complianceOsVersionRestrictionMaximumDescription",
|
"descriptionResourceKey": "complianceOsVersionRestrictionMaximumDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -40,7 +40,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 40,
|
"category": 43,
|
||||||
"nameResourceKey": "complianceOsBuildVersionRestrictionMinimumName",
|
"nameResourceKey": "complianceOsBuildVersionRestrictionMinimumName",
|
||||||
"descriptionResourceKey": "complianceOsBuildVersionRestrictionMinimumDescription",
|
"descriptionResourceKey": "complianceOsBuildVersionRestrictionMinimumDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -56,7 +56,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 40,
|
"category": 43,
|
||||||
"nameResourceKey": "complianceOsBuildVersionRestrictionMaximumName",
|
"nameResourceKey": "complianceOsBuildVersionRestrictionMaximumName",
|
||||||
"descriptionResourceKey": "complianceOsBuildVersionRestrictionMaximumDescription",
|
"descriptionResourceKey": "complianceOsBuildVersionRestrictionMaximumDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|||||||
@@ -3,13 +3,13 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 40,
|
"category": 43,
|
||||||
"nameResourceKey": "complianceOsVersionRestrictionHeader",
|
"nameResourceKey": "complianceOsVersionRestrictionHeader",
|
||||||
"descriptionResourceKey": "complianceWindowsOsVersionRestrictionHeaderDescription",
|
"descriptionResourceKey": "complianceWindowsOsVersionRestrictionHeaderDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 40,
|
"category": 43,
|
||||||
"nameResourceKey": "complianceOsVersionRestrictionMinimumName",
|
"nameResourceKey": "complianceOsVersionRestrictionMinimumName",
|
||||||
"descriptionResourceKey": "complianceWindowsOsVersionRestrictionMinimumDescription",
|
"descriptionResourceKey": "complianceWindowsOsVersionRestrictionMinimumDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -25,7 +25,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 40,
|
"category": 43,
|
||||||
"nameResourceKey": "complianceOsVersionRestrictionMaximumName",
|
"nameResourceKey": "complianceOsVersionRestrictionMaximumName",
|
||||||
"descriptionResourceKey": "complianceWindowsOsVersionRestrictionMaximumDescription",
|
"descriptionResourceKey": "complianceWindowsOsVersionRestrictionMaximumDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -41,7 +41,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 40,
|
"category": 43,
|
||||||
"nameResourceKey": "minimumUpdateAutoInstallClassificationName",
|
"nameResourceKey": "minimumUpdateAutoInstallClassificationName",
|
||||||
"descriptionResourceKey": "minimumUpdateAutoInstallClassificationDescription",
|
"descriptionResourceKey": "minimumUpdateAutoInstallClassificationDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -70,7 +70,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 40,
|
"category": 43,
|
||||||
"nameResourceKey": "complianceMobileOsVersionRestrictionMinimumName",
|
"nameResourceKey": "complianceMobileOsVersionRestrictionMinimumName",
|
||||||
"descriptionResourceKey": "complianceWindowsMobileOsVersionRestrictionMinimumDescription",
|
"descriptionResourceKey": "complianceWindowsMobileOsVersionRestrictionMinimumDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -86,7 +86,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 40,
|
"category": 43,
|
||||||
"nameResourceKey": "complianceMobileOsVersionRestrictionMaximumName",
|
"nameResourceKey": "complianceMobileOsVersionRestrictionMaximumName",
|
||||||
"descriptionResourceKey": "complianceWindowsMobileOsVersionRestrictionMaximumDescription",
|
"descriptionResourceKey": "complianceWindowsMobileOsVersionRestrictionMaximumDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -105,7 +105,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 40,
|
"category": 43,
|
||||||
"nameResourceKey": "ValidOperatingSystemBuildsDescriptionName",
|
"nameResourceKey": "ValidOperatingSystemBuildsDescriptionName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -123,7 +123,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 40,
|
"category": 43,
|
||||||
"nameResourceKey": "ValidOperatingSystemBuildsMinimumName",
|
"nameResourceKey": "ValidOperatingSystemBuildsMinimumName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -141,7 +141,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 40,
|
"category": 43,
|
||||||
"nameResourceKey": "ValidOperatingSystemBuildsMaximumName",
|
"nameResourceKey": "ValidOperatingSystemBuildsMaximumName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -158,7 +158,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 21,
|
"dataType": 21,
|
||||||
"category": 40,
|
"category": 43,
|
||||||
"nameResourceKey": "ValidOperatingSystemBuildsName",
|
"nameResourceKey": "ValidOperatingSystemBuildsName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|||||||
@@ -3,13 +3,13 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 40,
|
"category": 43,
|
||||||
"nameResourceKey": "complianceOsVersionRestrictionHeader",
|
"nameResourceKey": "complianceOsVersionRestrictionHeader",
|
||||||
"descriptionResourceKey": "complianceWindowsOsVersionRestrictionHeaderDescription",
|
"descriptionResourceKey": "complianceWindowsOsVersionRestrictionHeaderDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 40,
|
"category": 43,
|
||||||
"nameResourceKey": "complianceOsVersionRestrictionMinimumName",
|
"nameResourceKey": "complianceOsVersionRestrictionMinimumName",
|
||||||
"descriptionResourceKey": "complianceWindowsOsVersionRestrictionMinimumDescription",
|
"descriptionResourceKey": "complianceWindowsOsVersionRestrictionMinimumDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -25,7 +25,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 40,
|
"category": 43,
|
||||||
"nameResourceKey": "complianceOsVersionRestrictionMaximumName",
|
"nameResourceKey": "complianceOsVersionRestrictionMaximumName",
|
||||||
"descriptionResourceKey": "complianceWindowsOsVersionRestrictionMaximumDescription",
|
"descriptionResourceKey": "complianceWindowsOsVersionRestrictionMaximumDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -41,7 +41,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 40,
|
"category": 43,
|
||||||
"nameResourceKey": "minimumUpdateAutoInstallClassificationName",
|
"nameResourceKey": "minimumUpdateAutoInstallClassificationName",
|
||||||
"descriptionResourceKey": "minimumUpdateAutoInstallClassificationDescription",
|
"descriptionResourceKey": "minimumUpdateAutoInstallClassificationDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|||||||
@@ -3,13 +3,13 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 40,
|
"category": 43,
|
||||||
"nameResourceKey": "complianceOsVersionRestrictionHeader",
|
"nameResourceKey": "complianceOsVersionRestrictionHeader",
|
||||||
"descriptionResourceKey": "complianceWindowsOsVersionRestrictionHeaderDescription",
|
"descriptionResourceKey": "complianceWindowsOsVersionRestrictionHeaderDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 40,
|
"category": 43,
|
||||||
"nameResourceKey": "complianceMobileOsVersionRestrictionMinimumName",
|
"nameResourceKey": "complianceMobileOsVersionRestrictionMinimumName",
|
||||||
"descriptionResourceKey": "complianceWindowsMobileOsVersionRestrictionMinimumDescription",
|
"descriptionResourceKey": "complianceWindowsMobileOsVersionRestrictionMinimumDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -25,7 +25,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 40,
|
"category": 43,
|
||||||
"nameResourceKey": "complianceMobileOsVersionRestrictionMaximumName",
|
"nameResourceKey": "complianceMobileOsVersionRestrictionMaximumName",
|
||||||
"descriptionResourceKey": "complianceWindowsMobileOsVersionRestrictionMaximumDescription",
|
"descriptionResourceKey": "complianceWindowsMobileOsVersionRestrictionMaximumDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "workProfileHeaderDescription",
|
"nameResourceKey": "workProfileHeaderDescription",
|
||||||
"descriptionResourceKey": "",
|
"descriptionResourceKey": "",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -21,13 +21,13 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": true,
|
"showAsSectionHeader": true,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "allAndroidCorpEnrollmentTypesHeaderName",
|
"nameResourceKey": "allAndroidCorpEnrollmentTypesHeaderName",
|
||||||
"descriptionResourceKey": "allAndroidCorpEnrollmentTypesHeaderDescription",
|
"descriptionResourceKey": "allAndroidCorpEnrollmentTypesHeaderDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "screenCaptureDisabledNameWorkProfile",
|
"nameResourceKey": "screenCaptureDisabledNameWorkProfile",
|
||||||
"descriptionResourceKey": "screenCaptureDisabledDescription",
|
"descriptionResourceKey": "screenCaptureDisabledDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -44,7 +44,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "cameraDisabledNameWorkProfile",
|
"nameResourceKey": "cameraDisabledNameWorkProfile",
|
||||||
"descriptionResourceKey": "cameraDisabledDescription",
|
"descriptionResourceKey": "cameraDisabledDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -61,7 +61,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "defaultPermissionPolicyNameWorkProfile",
|
"nameResourceKey": "defaultPermissionPolicyNameWorkProfile",
|
||||||
"descriptionResourceKey": "defaultPermissionPolicyDescription",
|
"descriptionResourceKey": "defaultPermissionPolicyDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -98,7 +98,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "dateTimeConfigurationBlockedName",
|
"nameResourceKey": "dateTimeConfigurationBlockedName",
|
||||||
"descriptionResourceKey": "dateTimeConfigurationBlockedDescription",
|
"descriptionResourceKey": "dateTimeConfigurationBlockedDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -115,7 +115,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "dataRoamingBlockedName",
|
"nameResourceKey": "dataRoamingBlockedName",
|
||||||
"descriptionResourceKey": "dataRoamingBlockedDescription",
|
"descriptionResourceKey": "dataRoamingBlockedDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -132,7 +132,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "wifiConfigDisabledName",
|
"nameResourceKey": "wifiConfigDisabledName",
|
||||||
"descriptionResourceKey": "wifiConfigDisabledDescription",
|
"descriptionResourceKey": "wifiConfigDisabledDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -149,7 +149,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "bluetoothBlockConfigurationName",
|
"nameResourceKey": "bluetoothBlockConfigurationName",
|
||||||
"descriptionResourceKey": "bluetoothBlockConfigurationDescription",
|
"descriptionResourceKey": "bluetoothBlockConfigurationDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -166,7 +166,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "cellularBlockWiFiTetheringName",
|
"nameResourceKey": "cellularBlockWiFiTetheringName",
|
||||||
"descriptionResourceKey": "cellularBlockWiFiTetheringDescription",
|
"descriptionResourceKey": "cellularBlockWiFiTetheringDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -183,7 +183,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "storageBlockUsbFileTransferName",
|
"nameResourceKey": "storageBlockUsbFileTransferName",
|
||||||
"descriptionResourceKey": "storageBlockUsbFileTransferDescription",
|
"descriptionResourceKey": "storageBlockUsbFileTransferDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -200,7 +200,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "storageBlockExternalMediaName",
|
"nameResourceKey": "storageBlockExternalMediaName",
|
||||||
"descriptionResourceKey": "storageBlockExternalMediaDescription",
|
"descriptionResourceKey": "storageBlockExternalMediaDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -217,7 +217,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "nfcBlockOutgoingBeamNameWorkProfile",
|
"nameResourceKey": "nfcBlockOutgoingBeamNameWorkProfile",
|
||||||
"descriptionResourceKey": "nfcBlockOutgoingBeamDescription",
|
"descriptionResourceKey": "nfcBlockOutgoingBeamDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -234,7 +234,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "securityDeveloperSettingsEnabledName",
|
"nameResourceKey": "securityDeveloperSettingsEnabledName",
|
||||||
"descriptionResourceKey": "securityDeveloperSettingsEnabledDescription",
|
"descriptionResourceKey": "securityDeveloperSettingsEnabledDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -251,7 +251,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "unmuteMicrophoneDisabledName",
|
"nameResourceKey": "unmuteMicrophoneDisabledName",
|
||||||
"descriptionResourceKey": "unmuteMicrophoneDisabledDescription",
|
"descriptionResourceKey": "unmuteMicrophoneDisabledDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -268,7 +268,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "factoryResetProtectionEmailsName",
|
"nameResourceKey": "factoryResetProtectionEmailsName",
|
||||||
"descriptionResourceKey": "factoryResetProtectionEmailsDescription",
|
"descriptionResourceKey": "factoryResetProtectionEmailsDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -286,7 +286,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "googleAccountEmailAddressesName",
|
"nameResourceKey": "googleAccountEmailAddressesName",
|
||||||
"descriptionResourceKey": "googleAccountEmailAddressesDescription",
|
"descriptionResourceKey": "googleAccountEmailAddressesDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -313,7 +313,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "systemUpdateInstallName",
|
"nameResourceKey": "systemUpdateInstallName",
|
||||||
"descriptionResourceKey": "systemUpdateInstallDescription",
|
"descriptionResourceKey": "systemUpdateInstallDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -341,7 +341,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "systemUpdateOptionWindowStartTimeName",
|
"nameResourceKey": "systemUpdateOptionWindowStartTimeName",
|
||||||
"descriptionResourceKey": "systemUpdateOptionWindowStartTimeDescription",
|
"descriptionResourceKey": "systemUpdateOptionWindowStartTimeDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -597,7 +597,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "systemUpdateOptionWindowEndTimeName",
|
"nameResourceKey": "systemUpdateOptionWindowEndTimeName",
|
||||||
"descriptionResourceKey": "systemUpdateOptionWindowEndTimeDescription",
|
"descriptionResourceKey": "systemUpdateOptionWindowEndTimeDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -867,7 +867,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "systemUpdateFreezePeriodStartDateColumnName",
|
"nameResourceKey": "systemUpdateFreezePeriodStartDateColumnName",
|
||||||
"descriptionResourceKey": "systemUpdateFreezePeriodStartDateColumnDescription",
|
"descriptionResourceKey": "systemUpdateFreezePeriodStartDateColumnDescription",
|
||||||
"emptyValueResourceKey": "systemUpdateFreezePeriodStartDateEmptyValueKey",
|
"emptyValueResourceKey": "systemUpdateFreezePeriodStartDateEmptyValueKey",
|
||||||
@@ -886,7 +886,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "systemUpdateFreezePeriodEndDateColumnName",
|
"nameResourceKey": "systemUpdateFreezePeriodEndDateColumnName",
|
||||||
"descriptionResourceKey": "systemUpdateFreezePeriodEndDateColumnDescription",
|
"descriptionResourceKey": "systemUpdateFreezePeriodEndDateColumnDescription",
|
||||||
"emptyValueResourceKey": "systemUpdateFreezePeriodEndDateEmptyValueKey",
|
"emptyValueResourceKey": "systemUpdateFreezePeriodEndDateEmptyValueKey",
|
||||||
@@ -904,7 +904,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 21,
|
"dataType": 21,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "systemUpdateFreezePeriodsTableName",
|
"nameResourceKey": "systemUpdateFreezePeriodsTableName",
|
||||||
"descriptionResourceKey": "systemUpdateFreezePeriodsTableDescription",
|
"descriptionResourceKey": "systemUpdateFreezePeriodsTableDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -930,13 +930,13 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": true,
|
"showAsSectionHeader": true,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "fullyManagedAndDedicatedAndroidEnrollmentTypesHeaderName",
|
"nameResourceKey": "fullyManagedAndDedicatedAndroidEnrollmentTypesHeaderName",
|
||||||
"descriptionResourceKey": "fullyManagedAndDedicatedAndroidEnrollmentTypesHeaderDescription",
|
"descriptionResourceKey": "fullyManagedAndDedicatedAndroidEnrollmentTypesHeaderDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "adjustVolumeDisabledName",
|
"nameResourceKey": "adjustVolumeDisabledName",
|
||||||
"descriptionResourceKey": "adjustVolumeDisabledDescription",
|
"descriptionResourceKey": "adjustVolumeDisabledDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -953,7 +953,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "factoryResetDisabledName",
|
"nameResourceKey": "factoryResetDisabledName",
|
||||||
"descriptionResourceKey": "factoryResetDisabledDescription",
|
"descriptionResourceKey": "factoryResetDisabledDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -970,7 +970,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "statusBarDisabledName",
|
"nameResourceKey": "statusBarDisabledName",
|
||||||
"descriptionResourceKey": "statusBarDisabledDescription",
|
"descriptionResourceKey": "statusBarDisabledDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -987,7 +987,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "wifiConfigsLockdownEnabledName",
|
"nameResourceKey": "wifiConfigsLockdownEnabledName",
|
||||||
"descriptionResourceKey": "wifiConfigsLockdownEnabledDescription",
|
"descriptionResourceKey": "wifiConfigsLockdownEnabledDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1004,7 +1004,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "storageAllowUsbName",
|
"nameResourceKey": "storageAllowUsbName",
|
||||||
"descriptionResourceKey": "storageAllowUsbDescription",
|
"descriptionResourceKey": "storageAllowUsbDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1021,7 +1021,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "networkEscapeHatchName",
|
"nameResourceKey": "networkEscapeHatchName",
|
||||||
"descriptionResourceKey": "networkEscapeHatchDescription",
|
"descriptionResourceKey": "networkEscapeHatchDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1038,7 +1038,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "systemWindowsBlockedName",
|
"nameResourceKey": "systemWindowsBlockedName",
|
||||||
"descriptionResourceKey": "systemWindowsBlockedDescription",
|
"descriptionResourceKey": "systemWindowsBlockedDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1055,7 +1055,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "appsRecommendSkippingFirstUseHintsName",
|
"nameResourceKey": "appsRecommendSkippingFirstUseHintsName",
|
||||||
"descriptionResourceKey": "appsRecommendSkippingFirstUseHintsDescription",
|
"descriptionResourceKey": "appsRecommendSkippingFirstUseHintsDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1082,13 +1082,13 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": true,
|
"showAsSectionHeader": true,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "dedicatedAndroidEnrollmentTypesHeaderName",
|
"nameResourceKey": "dedicatedAndroidEnrollmentTypesHeaderName",
|
||||||
"descriptionResourceKey": "dedicatedAndroidEnrollmentTypesHeaderDescription",
|
"descriptionResourceKey": "dedicatedAndroidEnrollmentTypesHeaderDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "androidEnterprisePowerButtonActionsBlockedName",
|
"nameResourceKey": "androidEnterprisePowerButtonActionsBlockedName",
|
||||||
"descriptionResourceKey": "androidEnterprisePowerButtonActionsBlockedDescription",
|
"descriptionResourceKey": "androidEnterprisePowerButtonActionsBlockedDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1105,7 +1105,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "androidEnterpriseSystemErrorWarningsEnabledName",
|
"nameResourceKey": "androidEnterpriseSystemErrorWarningsEnabledName",
|
||||||
"descriptionResourceKey": "androidEnterpriseSystemErrorWarningsEnabledDescription",
|
"descriptionResourceKey": "androidEnterpriseSystemErrorWarningsEnabledDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1122,7 +1122,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "androidEnterpriseSystemNavigationName",
|
"nameResourceKey": "androidEnterpriseSystemNavigationName",
|
||||||
"descriptionResourceKey": "androidEnterpriseSystemNavigationDescription",
|
"descriptionResourceKey": "androidEnterpriseSystemNavigationDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1154,7 +1154,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "androidEnterpriseStatusBarName",
|
"nameResourceKey": "androidEnterpriseStatusBarName",
|
||||||
"descriptionResourceKey": "androidEnterpriseStatusBarDescription",
|
"descriptionResourceKey": "androidEnterpriseStatusBarDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1186,7 +1186,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "androidEnterpriseDeviceSettingsBlockedName",
|
"nameResourceKey": "androidEnterpriseDeviceSettingsBlockedName",
|
||||||
"descriptionResourceKey": "androidEnterpriseDeviceSettingsBlockedDescription",
|
"descriptionResourceKey": "androidEnterpriseDeviceSettingsBlockedDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1213,13 +1213,13 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": true,
|
"showAsSectionHeader": true,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "workProfileAndroidEnrollmentTypesHeaderName",
|
"nameResourceKey": "workProfileAndroidEnrollmentTypesHeaderName",
|
||||||
"descriptionResourceKey": "workProfileAndroidEnrollmentTypesHeaderDescription",
|
"descriptionResourceKey": "workProfileAndroidEnrollmentTypesHeaderDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "workProfileBlockContactSharingViaBluetoothName",
|
"nameResourceKey": "workProfileBlockContactSharingViaBluetoothName",
|
||||||
"descriptionResourceKey": "workProfileBlockContactSharingViaBluetoothDescription",
|
"descriptionResourceKey": "workProfileBlockContactSharingViaBluetoothDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1236,7 +1236,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 19,
|
"dataType": 19,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "showWorkContactsInPersonalProfileName",
|
"nameResourceKey": "showWorkContactsInPersonalProfileName",
|
||||||
"descriptionResourceKey": "showWorkContactsInPersonalProfileDescription",
|
"descriptionResourceKey": "showWorkContactsInPersonalProfileDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1263,7 +1263,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "copyPasteBetweenWorkAndPersonalProfilesName",
|
"nameResourceKey": "copyPasteBetweenWorkAndPersonalProfilesName",
|
||||||
"descriptionResourceKey": "copyPasteBetweenWorkAndPersonalProfilesDescription",
|
"descriptionResourceKey": "copyPasteBetweenWorkAndPersonalProfilesDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1280,7 +1280,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "dataSharingBetweenWorkAndPersonalProfilesName",
|
"nameResourceKey": "dataSharingBetweenWorkAndPersonalProfilesName",
|
||||||
"descriptionResourceKey": "dataSharingBetweenWorkAndPersonalProfilesDescription",
|
"descriptionResourceKey": "dataSharingBetweenWorkAndPersonalProfilesDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"devicerestrictions_androiddeviceownerwifi": {
|
"devicerestrictions_androiddeviceownerwifi": {
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "wifiTypeName",
|
"nameResourceKey": "wifiTypeName",
|
||||||
"descriptionResourceKey": "wiFiTypeDescription",
|
"descriptionResourceKey": "wiFiTypeDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -18,7 +18,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "wiFiPolicyNetworkName",
|
"nameResourceKey": "wiFiPolicyNetworkName",
|
||||||
"descriptionResourceKey": "wiFiPolicyNetworkName",
|
"descriptionResourceKey": "wiFiPolicyNetworkName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -35,7 +35,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "wiFiPolicySSIDName",
|
"nameResourceKey": "wiFiPolicySSIDName",
|
||||||
"descriptionResourceKey": "wiFiPolicySSIDDescription",
|
"descriptionResourceKey": "wiFiPolicySSIDDescription",
|
||||||
"emptyValueResourceKey": "wiFiSSIDExample",
|
"emptyValueResourceKey": "wiFiSSIDExample",
|
||||||
@@ -52,7 +52,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 19,
|
"dataType": 19,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "wiFiPolicyConnectAutomaticallyName",
|
"nameResourceKey": "wiFiPolicyConnectAutomaticallyName",
|
||||||
"descriptionResourceKey": "wiFiPolicyConnectAutomaticallyDescription",
|
"descriptionResourceKey": "wiFiPolicyConnectAutomaticallyDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -78,7 +78,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 19,
|
"dataType": 19,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "wiFiPolicyConnectWhenNotBroadcastingName",
|
"nameResourceKey": "wiFiPolicyConnectWhenNotBroadcastingName",
|
||||||
"descriptionResourceKey": "wiFiPolicyConnectWhenNotBroadcastingDescription",
|
"descriptionResourceKey": "wiFiPolicyConnectWhenNotBroadcastingDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -104,7 +104,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "WifiTypeName",
|
"nameResourceKey": "WifiTypeName",
|
||||||
"descriptionResourceKey": "WiFiTypeDescription",
|
"descriptionResourceKey": "WiFiTypeDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -126,7 +126,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "preSharedKeyName",
|
"nameResourceKey": "preSharedKeyName",
|
||||||
"descriptionResourceKey": "preSharedKeyDescription",
|
"descriptionResourceKey": "preSharedKeyDescription",
|
||||||
"emptyValueResourceKey": "wifiPasswordExample",
|
"emptyValueResourceKey": "wifiPasswordExample",
|
||||||
@@ -150,7 +150,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "preSharedKeyName",
|
"nameResourceKey": "preSharedKeyName",
|
||||||
"descriptionResourceKey": "preSharedKeyDescription",
|
"descriptionResourceKey": "preSharedKeyDescription",
|
||||||
"emptyValueResourceKey": "wifiPasswordExample",
|
"emptyValueResourceKey": "wifiPasswordExample",
|
||||||
@@ -183,7 +183,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "wiFiPolicySSIDName",
|
"nameResourceKey": "wiFiPolicySSIDName",
|
||||||
"descriptionResourceKey": "wiFiPolicySSIDDescription",
|
"descriptionResourceKey": "wiFiPolicySSIDDescription",
|
||||||
"emptyValueResourceKey": "wiFiSSIDExample",
|
"emptyValueResourceKey": "wiFiSSIDExample",
|
||||||
@@ -200,7 +200,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 19,
|
"dataType": 19,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "wiFiPolicyConnectAutomaticallyName",
|
"nameResourceKey": "wiFiPolicyConnectAutomaticallyName",
|
||||||
"descriptionResourceKey": "wiFiPolicyConnectAutomaticallyDescription",
|
"descriptionResourceKey": "wiFiPolicyConnectAutomaticallyDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -226,7 +226,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 19,
|
"dataType": 19,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "wiFiPolicyConnectWhenNotBroadcastingName",
|
"nameResourceKey": "wiFiPolicyConnectWhenNotBroadcastingName",
|
||||||
"descriptionResourceKey": "wiFiPolicyConnectWhenNotBroadcastingDescription",
|
"descriptionResourceKey": "wiFiPolicyConnectWhenNotBroadcastingDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -252,7 +252,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "eAPTypeName",
|
"nameResourceKey": "eAPTypeName",
|
||||||
"descriptionResourceKey": "eAPTypeDescription",
|
"descriptionResourceKey": "eAPTypeDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -271,7 +271,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "trust",
|
"nameResourceKey": "trust",
|
||||||
"descriptionResourceKey": "trustDescription",
|
"descriptionResourceKey": "trustDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -289,7 +289,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "empty",
|
"nameResourceKey": "empty",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"emptyValueResourceKey": "trustedServerCertificateNameExample",
|
"emptyValueResourceKey": "trustedServerCertificateNameExample",
|
||||||
@@ -307,7 +307,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 21,
|
"dataType": 21,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "androidTrustedServerCertificateNamesName",
|
"nameResourceKey": "androidTrustedServerCertificateNamesName",
|
||||||
"descriptionResourceKey": "androidTrustedServerCertificateNamesDescription",
|
"descriptionResourceKey": "androidTrustedServerCertificateNamesDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -325,7 +325,7 @@
|
|||||||
"complexOptions": [
|
"complexOptions": [
|
||||||
{
|
{
|
||||||
"dataType": 4,
|
"dataType": 4,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "selectCertificateProfile",
|
"nameResourceKey": "selectCertificateProfile",
|
||||||
"descriptionResourceKey": "selectRootCertificateForServerValidationName",
|
"descriptionResourceKey": "selectRootCertificateForServerValidationName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -342,7 +342,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 4,
|
"dataType": 4,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "selectCertificateProfile",
|
"nameResourceKey": "selectCertificateProfile",
|
||||||
"descriptionResourceKey": "selectRootCertificateForServerValidationName",
|
"descriptionResourceKey": "selectRootCertificateForServerValidationName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -359,7 +359,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 5,
|
"dataType": 5,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "selectRootCertificateForServerValidationName",
|
"nameResourceKey": "selectRootCertificateForServerValidationName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"emptyValueResourceKey": "selectCertificate",
|
"emptyValueResourceKey": "selectCertificate",
|
||||||
@@ -377,7 +377,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "authentication",
|
"nameResourceKey": "authentication",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -391,7 +391,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "authenticationMethodName",
|
"nameResourceKey": "authenticationMethodName",
|
||||||
"descriptionResourceKey": "authenticationMethodName",
|
"descriptionResourceKey": "authenticationMethodName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -408,11 +408,11 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 9,
|
"dataType": 9,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 10,
|
"dataType": 10,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "derivedCredentialsSearchingForTenantLevel",
|
"nameResourceKey": "derivedCredentialsSearchingForTenantLevel",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -426,7 +426,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 10,
|
"dataType": 10,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "derivedCredentialsTenantLevelNotConfigured",
|
"nameResourceKey": "derivedCredentialsTenantLevelNotConfigured",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -458,7 +458,7 @@
|
|||||||
"complexOptions": [
|
"complexOptions": [
|
||||||
{
|
{
|
||||||
"dataType": 4,
|
"dataType": 4,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "certificatesOption",
|
"nameResourceKey": "certificatesOption",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -474,7 +474,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 4,
|
"dataType": 4,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "certificatesOption",
|
"nameResourceKey": "certificatesOption",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -490,7 +490,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 5,
|
"dataType": 5,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "certificatesOption",
|
"nameResourceKey": "certificatesOption",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"emptyValueResourceKey": "selectCertificate",
|
"emptyValueResourceKey": "selectCertificate",
|
||||||
@@ -506,7 +506,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "enableIdentityPrivacyName",
|
"nameResourceKey": "enableIdentityPrivacyName",
|
||||||
"descriptionResourceKey": "enableIdentityPrivacyDescription",
|
"descriptionResourceKey": "enableIdentityPrivacyDescription",
|
||||||
"emptyValueResourceKey": "identityPrivacyExample",
|
"emptyValueResourceKey": "identityPrivacyExample",
|
||||||
@@ -541,7 +541,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "trust",
|
"nameResourceKey": "trust",
|
||||||
"descriptionResourceKey": "trustDescription",
|
"descriptionResourceKey": "trustDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -559,7 +559,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "empty",
|
"nameResourceKey": "empty",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"emptyValueResourceKey": "trustedServerCertificateNameExample",
|
"emptyValueResourceKey": "trustedServerCertificateNameExample",
|
||||||
@@ -577,7 +577,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 21,
|
"dataType": 21,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "androidTrustedServerCertificateNamesName",
|
"nameResourceKey": "androidTrustedServerCertificateNamesName",
|
||||||
"descriptionResourceKey": "androidTrustedServerCertificateNamesDescription",
|
"descriptionResourceKey": "androidTrustedServerCertificateNamesDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -595,7 +595,7 @@
|
|||||||
"complexOptions": [
|
"complexOptions": [
|
||||||
{
|
{
|
||||||
"dataType": 4,
|
"dataType": 4,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "selectCertificateProfile",
|
"nameResourceKey": "selectCertificateProfile",
|
||||||
"descriptionResourceKey": "selectRootCertificateForServerValidationName",
|
"descriptionResourceKey": "selectRootCertificateForServerValidationName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -612,7 +612,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 4,
|
"dataType": 4,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "selectCertificateProfile",
|
"nameResourceKey": "selectCertificateProfile",
|
||||||
"descriptionResourceKey": "selectRootCertificateForServerValidationName",
|
"descriptionResourceKey": "selectRootCertificateForServerValidationName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -629,7 +629,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 5,
|
"dataType": 5,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "selectRootCertificateForServerValidationName",
|
"nameResourceKey": "selectRootCertificateForServerValidationName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"emptyValueResourceKey": "selectCertificate",
|
"emptyValueResourceKey": "selectCertificate",
|
||||||
@@ -647,7 +647,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "authentication",
|
"nameResourceKey": "authentication",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -661,7 +661,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "authenticationMethodName",
|
"nameResourceKey": "authenticationMethodName",
|
||||||
"descriptionResourceKey": "authenticationMethodTTLSDescription",
|
"descriptionResourceKey": "authenticationMethodTTLSDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -678,11 +678,11 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 9,
|
"dataType": 9,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 10,
|
"dataType": 10,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "derivedCredentialsSearchingForTenantLevel",
|
"nameResourceKey": "derivedCredentialsSearchingForTenantLevel",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -696,7 +696,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 10,
|
"dataType": 10,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "derivedCredentialsTenantLevelNotConfigured",
|
"nameResourceKey": "derivedCredentialsTenantLevelNotConfigured",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -726,7 +726,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "nonEapMethodName",
|
"nameResourceKey": "nonEapMethodName",
|
||||||
"descriptionResourceKey": "nonEapMethodDescription",
|
"descriptionResourceKey": "nonEapMethodDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -760,7 +760,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "enableIdentityPrivacyName",
|
"nameResourceKey": "enableIdentityPrivacyName",
|
||||||
"descriptionResourceKey": "enableIdentityPrivacyDescription",
|
"descriptionResourceKey": "enableIdentityPrivacyDescription",
|
||||||
"emptyValueResourceKey": "identityPrivacyExample",
|
"emptyValueResourceKey": "identityPrivacyExample",
|
||||||
@@ -786,7 +786,7 @@
|
|||||||
"complexOptions": [
|
"complexOptions": [
|
||||||
{
|
{
|
||||||
"dataType": 4,
|
"dataType": 4,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "certificatesOption",
|
"nameResourceKey": "certificatesOption",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -802,7 +802,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 4,
|
"dataType": 4,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "certificatesOption",
|
"nameResourceKey": "certificatesOption",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -818,7 +818,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 5,
|
"dataType": 5,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "certificatesOption",
|
"nameResourceKey": "certificatesOption",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"emptyValueResourceKey": "selectCertificate",
|
"emptyValueResourceKey": "selectCertificate",
|
||||||
@@ -834,7 +834,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "enableIdentityPrivacyName",
|
"nameResourceKey": "enableIdentityPrivacyName",
|
||||||
"descriptionResourceKey": "enableIdentityPrivacyDescription",
|
"descriptionResourceKey": "enableIdentityPrivacyDescription",
|
||||||
"emptyValueResourceKey": "identityPrivacyExample",
|
"emptyValueResourceKey": "identityPrivacyExample",
|
||||||
@@ -869,7 +869,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "trust",
|
"nameResourceKey": "trust",
|
||||||
"descriptionResourceKey": "trustDescription",
|
"descriptionResourceKey": "trustDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -887,7 +887,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "empty",
|
"nameResourceKey": "empty",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"emptyValueResourceKey": "trustedServerCertificateNameExample",
|
"emptyValueResourceKey": "trustedServerCertificateNameExample",
|
||||||
@@ -905,7 +905,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 21,
|
"dataType": 21,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "androidTrustedServerCertificateNamesName",
|
"nameResourceKey": "androidTrustedServerCertificateNamesName",
|
||||||
"descriptionResourceKey": "androidTrustedServerCertificateNamesDescription",
|
"descriptionResourceKey": "androidTrustedServerCertificateNamesDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -923,7 +923,7 @@
|
|||||||
"complexOptions": [
|
"complexOptions": [
|
||||||
{
|
{
|
||||||
"dataType": 4,
|
"dataType": 4,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "selectCertificateProfile",
|
"nameResourceKey": "selectCertificateProfile",
|
||||||
"descriptionResourceKey": "selectRootCertificateForServerValidationName",
|
"descriptionResourceKey": "selectRootCertificateForServerValidationName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -940,7 +940,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 4,
|
"dataType": 4,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "selectCertificateProfile",
|
"nameResourceKey": "selectCertificateProfile",
|
||||||
"descriptionResourceKey": "selectRootCertificateForServerValidationName",
|
"descriptionResourceKey": "selectRootCertificateForServerValidationName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -957,7 +957,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 5,
|
"dataType": 5,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "selectRootCertificateForServerValidationName",
|
"nameResourceKey": "selectRootCertificateForServerValidationName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"emptyValueResourceKey": "selectCertificate",
|
"emptyValueResourceKey": "selectCertificate",
|
||||||
@@ -975,7 +975,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "authentication",
|
"nameResourceKey": "authentication",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -989,7 +989,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "authenticationMethodName",
|
"nameResourceKey": "authenticationMethodName",
|
||||||
"descriptionResourceKey": "authenticationMethodName",
|
"descriptionResourceKey": "authenticationMethodName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1006,11 +1006,11 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 9,
|
"dataType": 9,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 10,
|
"dataType": 10,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "derivedCredentialsSearchingForTenantLevel",
|
"nameResourceKey": "derivedCredentialsSearchingForTenantLevel",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -1024,7 +1024,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 10,
|
"dataType": 10,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "derivedCredentialsTenantLevelNotConfigured",
|
"nameResourceKey": "derivedCredentialsTenantLevelNotConfigured",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -1054,7 +1054,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "nonEAPMethod",
|
"nameResourceKey": "nonEAPMethod",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1081,7 +1081,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "enableIdentityPrivacyName",
|
"nameResourceKey": "enableIdentityPrivacyName",
|
||||||
"descriptionResourceKey": "enableIdentityPrivacyDescription",
|
"descriptionResourceKey": "enableIdentityPrivacyDescription",
|
||||||
"emptyValueResourceKey": "identityPrivacyExample",
|
"emptyValueResourceKey": "identityPrivacyExample",
|
||||||
@@ -1107,7 +1107,7 @@
|
|||||||
"complexOptions": [
|
"complexOptions": [
|
||||||
{
|
{
|
||||||
"dataType": 4,
|
"dataType": 4,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "certificatesOption",
|
"nameResourceKey": "certificatesOption",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1123,7 +1123,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 4,
|
"dataType": 4,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "certificatesOption",
|
"nameResourceKey": "certificatesOption",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -1139,7 +1139,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 5,
|
"dataType": 5,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "certificatesOption",
|
"nameResourceKey": "certificatesOption",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"emptyValueResourceKey": "selectCertificate",
|
"emptyValueResourceKey": "selectCertificate",
|
||||||
@@ -1155,7 +1155,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "enableIdentityPrivacyName",
|
"nameResourceKey": "enableIdentityPrivacyName",
|
||||||
"descriptionResourceKey": "enableIdentityPrivacyDescription",
|
"descriptionResourceKey": "enableIdentityPrivacyDescription",
|
||||||
"emptyValueResourceKey": "identityPrivacyExample",
|
"emptyValueResourceKey": "identityPrivacyExample",
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
"devicerestrictions_androidgeneral": [
|
"devicerestrictions_androidgeneral": [
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "blockCameraName",
|
"nameResourceKey": "blockCameraName",
|
||||||
"descriptionResourceKey": "blockCameraDescription",
|
"descriptionResourceKey": "blockCameraDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -19,7 +19,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "knoxBlockCopyAndPasteName",
|
"nameResourceKey": "knoxBlockCopyAndPasteName",
|
||||||
"descriptionResourceKey": "knoxBlockCopyAndPasteDescription",
|
"descriptionResourceKey": "knoxBlockCopyAndPasteDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -36,7 +36,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "blockClipboardName",
|
"nameResourceKey": "blockClipboardName",
|
||||||
"descriptionResourceKey": "blockClipboardAndroidDescription",
|
"descriptionResourceKey": "blockClipboardAndroidDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -53,7 +53,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "knoxBlockDiagnosticDataSubmissionName",
|
"nameResourceKey": "knoxBlockDiagnosticDataSubmissionName",
|
||||||
"descriptionResourceKey": "knoxBlockDiagnosticDataSubmissionDescription",
|
"descriptionResourceKey": "knoxBlockDiagnosticDataSubmissionDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -70,7 +70,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "blockFactoryResetName",
|
"nameResourceKey": "blockFactoryResetName",
|
||||||
"descriptionResourceKey": "blockFactoryResetDescription",
|
"descriptionResourceKey": "blockFactoryResetDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -87,7 +87,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "knoxBlockGeolocationName",
|
"nameResourceKey": "knoxBlockGeolocationName",
|
||||||
"descriptionResourceKey": "knoxBlockGeolocationAndroidDescription",
|
"descriptionResourceKey": "knoxBlockGeolocationAndroidDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -104,7 +104,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "blockPowerOffName",
|
"nameResourceKey": "blockPowerOffName",
|
||||||
"descriptionResourceKey": "blockPowerOffDescription",
|
"descriptionResourceKey": "blockPowerOffDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -121,7 +121,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "knoxBlockScreenshotName",
|
"nameResourceKey": "knoxBlockScreenshotName",
|
||||||
"descriptionResourceKey": "knoxBlockScreenshotDescription",
|
"descriptionResourceKey": "knoxBlockScreenshotDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -138,7 +138,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "blockVoiceAssistantName",
|
"nameResourceKey": "blockVoiceAssistantName",
|
||||||
"descriptionResourceKey": "blockVoiceAssistantAndroidDescription",
|
"descriptionResourceKey": "blockVoiceAssistantAndroidDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -155,7 +155,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "blockYouTubeName",
|
"nameResourceKey": "blockYouTubeName",
|
||||||
"descriptionResourceKey": "blockYouTubeAndroidDescription",
|
"descriptionResourceKey": "blockYouTubeAndroidDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -172,7 +172,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "allowDeviceSharingName",
|
"nameResourceKey": "allowDeviceSharingName",
|
||||||
"descriptionResourceKey": "allowDeviceSharingDescription",
|
"descriptionResourceKey": "allowDeviceSharingDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -189,7 +189,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "dateAndTimeBlockChangesName",
|
"nameResourceKey": "dateAndTimeBlockChangesName",
|
||||||
"descriptionResourceKey": "dateAndTimeBlockChangesDescription",
|
"descriptionResourceKey": "dateAndTimeBlockChangesDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
"devicerestrictions_aospdeviceownerdevice": [
|
"devicerestrictions_aospdeviceownerdevice": [
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "blockAndroidCameraName",
|
"nameResourceKey": "blockAndroidCameraName",
|
||||||
"descriptionResourceKey": "blockAndroidCameraDescription",
|
"descriptionResourceKey": "blockAndroidCameraDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -19,7 +19,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "blockAndroidScreenCaptureName",
|
"nameResourceKey": "blockAndroidScreenCaptureName",
|
||||||
"descriptionResourceKey": "blockAndroidScreenCaptureDescription",
|
"descriptionResourceKey": "blockAndroidScreenCaptureDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -36,7 +36,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "blockAndroidFactoryResetName",
|
"nameResourceKey": "blockAndroidFactoryResetName",
|
||||||
"descriptionResourceKey": "blockAndroidFactoryResetDescription",
|
"descriptionResourceKey": "blockAndroidFactoryResetDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -53,7 +53,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "blockStorageExternalMediaName",
|
"nameResourceKey": "blockStorageExternalMediaName",
|
||||||
"descriptionResourceKey": "blockStorageExternalMediaDescription",
|
"descriptionResourceKey": "blockStorageExternalMediaDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -70,7 +70,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "blockStorageUsbFileTransferName",
|
"nameResourceKey": "blockStorageUsbFileTransferName",
|
||||||
"descriptionResourceKey": "blockStorageUsbFileTransferDescription",
|
"descriptionResourceKey": "blockStorageUsbFileTransferDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -87,7 +87,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "blockWiFiEditConfigurationsName",
|
"nameResourceKey": "blockWiFiEditConfigurationsName",
|
||||||
"descriptionResourceKey": "blockWiFiEditConfigurationsDescription",
|
"descriptionResourceKey": "blockWiFiEditConfigurationsDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -104,7 +104,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "blockAndroidBluetoothName",
|
"nameResourceKey": "blockAndroidBluetoothName",
|
||||||
"descriptionResourceKey": "blockAndroidBluetoothDescription",
|
"descriptionResourceKey": "blockAndroidBluetoothDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -121,7 +121,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "blockBluetoothConfigurationName",
|
"nameResourceKey": "blockBluetoothConfigurationName",
|
||||||
"descriptionResourceKey": "blockBluetoothConfigurationDescription",
|
"descriptionResourceKey": "blockBluetoothConfigurationDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -138,7 +138,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "allowSecurityDebuggingFeaturesName",
|
"nameResourceKey": "allowSecurityDebuggingFeaturesName",
|
||||||
"descriptionResourceKey": "allowSecurityDebuggingFeaturesDescription",
|
"descriptionResourceKey": "allowSecurityDebuggingFeaturesDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -155,7 +155,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "blockAppsInstallFromUnknownSourcesName",
|
"nameResourceKey": "blockAppsInstallFromUnknownSourcesName",
|
||||||
"descriptionResourceKey": "blockAppsInstallFromUnknownSourcesDescription",
|
"descriptionResourceKey": "blockAppsInstallFromUnknownSourcesDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|||||||
@@ -4,13 +4,13 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": true,
|
"showAsSectionHeader": true,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "allEnrollmentTypesHeaderName",
|
"nameResourceKey": "allEnrollmentTypesHeaderName",
|
||||||
"descriptionResourceKey": "allEnrollmentTypesHeaderDescription",
|
"descriptionResourceKey": "allEnrollmentTypesHeaderDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "iOSBlockDiagnosticDataSubmissionName",
|
"nameResourceKey": "iOSBlockDiagnosticDataSubmissionName",
|
||||||
"descriptionResourceKey": "blockDiagnosticDataSubmissionDescription",
|
"descriptionResourceKey": "blockDiagnosticDataSubmissionDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -27,7 +27,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "iOSBlockScreenshotName",
|
"nameResourceKey": "iOSBlockScreenshotName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -53,13 +53,13 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": true,
|
"showAsSectionHeader": true,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "deviceEnrollmentAndAutomatedDeviceEnrollmentHeaderName",
|
"nameResourceKey": "deviceEnrollmentAndAutomatedDeviceEnrollmentHeaderName",
|
||||||
"descriptionResourceKey": "deviceEnrollmentAndAutomatedDeviceEnrollmentHeaderDescription",
|
"descriptionResourceKey": "deviceEnrollmentAndAutomatedDeviceEnrollmentHeaderDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "blockUntrustedTLSCertificatesName",
|
"nameResourceKey": "blockUntrustedTLSCertificatesName",
|
||||||
"descriptionResourceKey": "blockUntrustedTLSCertificatesDescription",
|
"descriptionResourceKey": "blockUntrustedTLSCertificatesDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -76,7 +76,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "allowOTAPKIUpdatesName",
|
"nameResourceKey": "allowOTAPKIUpdatesName",
|
||||||
"descriptionResourceKey": "allowOTAPKIUpdatesDescription",
|
"descriptionResourceKey": "allowOTAPKIUpdatesDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -93,7 +93,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "forceLimitAdTrackingName",
|
"nameResourceKey": "forceLimitAdTrackingName",
|
||||||
"descriptionResourceKey": "forceLimitAdTrackingDescription",
|
"descriptionResourceKey": "forceLimitAdTrackingDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -110,7 +110,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "blockEnterpriseAppTrustName",
|
"nameResourceKey": "blockEnterpriseAppTrustName",
|
||||||
"descriptionResourceKey": "blockEnterpriseAppTrustDescription",
|
"descriptionResourceKey": "blockEnterpriseAppTrustDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -127,7 +127,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "applePersonalizedAdsBlockedName",
|
"nameResourceKey": "applePersonalizedAdsBlockedName",
|
||||||
"descriptionResourceKey": "applePersonalizedAdsBlockedDescription",
|
"descriptionResourceKey": "applePersonalizedAdsBlockedDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -154,13 +154,13 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": true,
|
"showAsSectionHeader": true,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "automatedDeviceEnrollmentHeaderName",
|
"nameResourceKey": "automatedDeviceEnrollmentHeaderName",
|
||||||
"descriptionResourceKey": "automatedDeviceEnrollmentHeaderDescription",
|
"descriptionResourceKey": "automatedDeviceEnrollmentHeaderDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "blockDiagnosticDataSubmissionModificationName",
|
"nameResourceKey": "blockDiagnosticDataSubmissionModificationName",
|
||||||
"descriptionResourceKey": "blockDiagnosticDataSubmissionModificationDescription",
|
"descriptionResourceKey": "blockDiagnosticDataSubmissionModificationDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -177,7 +177,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "blockClassroomAppRemoteScreenObservationName",
|
"nameResourceKey": "blockClassroomAppRemoteScreenObservationName",
|
||||||
"descriptionResourceKey": "blockClassroomAppRemoteScreenObservationDescription",
|
"descriptionResourceKey": "blockClassroomAppRemoteScreenObservationDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -194,7 +194,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "classroomAppForceUnpromptedScreenObservationName",
|
"nameResourceKey": "classroomAppForceUnpromptedScreenObservationName",
|
||||||
"descriptionResourceKey": "classroomAppForceUnpromptedScreenObservationDescription",
|
"descriptionResourceKey": "classroomAppForceUnpromptedScreenObservationDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -211,7 +211,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "blockAccountModificationName",
|
"nameResourceKey": "blockAccountModificationName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -227,7 +227,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "blockDeviceEnablingRestrictionsName",
|
"nameResourceKey": "blockDeviceEnablingRestrictionsName",
|
||||||
"descriptionResourceKey": "blockDeviceEnablingRestrictionsDescription",
|
"descriptionResourceKey": "blockDeviceEnablingRestrictionsDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -244,7 +244,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "blockDeviceEraseContentAndSettingsIosName",
|
"nameResourceKey": "blockDeviceEraseContentAndSettingsIosName",
|
||||||
"descriptionResourceKey": "blockDeviceEraseContentAndSettingsIosDescription",
|
"descriptionResourceKey": "blockDeviceEraseContentAndSettingsIosDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -261,7 +261,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "blockDeviceNameModificationName",
|
"nameResourceKey": "blockDeviceNameModificationName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -277,7 +277,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "blockNotificationsModificationName",
|
"nameResourceKey": "blockNotificationsModificationName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -293,7 +293,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "blockWallpaperModificationName",
|
"nameResourceKey": "blockWallpaperModificationName",
|
||||||
"descriptionResourceKey": "blockWallpaperModificationDescription",
|
"descriptionResourceKey": "blockWallpaperModificationDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -310,7 +310,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "blockConfigurationProfileChangesName",
|
"nameResourceKey": "blockConfigurationProfileChangesName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -326,7 +326,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "allowActivationLockWhenSupervisedName",
|
"nameResourceKey": "allowActivationLockWhenSupervisedName",
|
||||||
"descriptionResourceKey": "allowActivationLockWhenSupervisedDescription",
|
"descriptionResourceKey": "allowActivationLockWhenSupervisedDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -343,7 +343,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "blockAppRemovalName",
|
"nameResourceKey": "blockAppRemovalName",
|
||||||
"descriptionResourceKey": "blockAppRemovalDescription",
|
"descriptionResourceKey": "blockAppRemovalDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -360,7 +360,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "blockAppClipsName",
|
"nameResourceKey": "blockAppClipsName",
|
||||||
"descriptionResourceKey": "blockAppClipsDescription",
|
"descriptionResourceKey": "blockAppClipsDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -377,7 +377,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "blockUsbRestrictedModeName",
|
"nameResourceKey": "blockUsbRestrictedModeName",
|
||||||
"descriptionResourceKey": "blockUsbRestrictedModeDescription",
|
"descriptionResourceKey": "blockUsbRestrictedModeDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -394,7 +394,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "forceDateAndTimeSetAutomaticallyName",
|
"nameResourceKey": "forceDateAndTimeSetAutomaticallyName",
|
||||||
"descriptionResourceKey": "forceDateAndTimeSetAutomaticallyDescription",
|
"descriptionResourceKey": "forceDateAndTimeSetAutomaticallyDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -411,7 +411,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "requireClassroomRequestPermissionToLeaveClassesName",
|
"nameResourceKey": "requireClassroomRequestPermissionToLeaveClassesName",
|
||||||
"descriptionResourceKey": "requireClassroomRequestPermissionToLeaveClassesDescription",
|
"descriptionResourceKey": "requireClassroomRequestPermissionToLeaveClassesDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -428,7 +428,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "forceClassroomUnpromptedAppAndDeviceLockName",
|
"nameResourceKey": "forceClassroomUnpromptedAppAndDeviceLockName",
|
||||||
"descriptionResourceKey": "forceClassroomUnpromptedAppAndDeviceLockDescription",
|
"descriptionResourceKey": "forceClassroomUnpromptedAppAndDeviceLockDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -445,7 +445,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "forceClassroomAutomaticallyJoinClassesName",
|
"nameResourceKey": "forceClassroomAutomaticallyJoinClassesName",
|
||||||
"descriptionResourceKey": "forceClassroomAutomaticallyJoinClassesDescription",
|
"descriptionResourceKey": "forceClassroomAutomaticallyJoinClassesDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -462,7 +462,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "blockVPNCreationName",
|
"nameResourceKey": "blockVPNCreationName",
|
||||||
"descriptionResourceKey": "blockVPNCreationDescription",
|
"descriptionResourceKey": "blockVPNCreationDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -479,7 +479,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "blockESIMModificationName",
|
"nameResourceKey": "blockESIMModificationName",
|
||||||
"descriptionResourceKey": "blockESIMModificationDescription",
|
"descriptionResourceKey": "blockESIMModificationDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -496,13 +496,13 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "forceDelayedSoftwareUpdatesName",
|
"nameResourceKey": "forceDelayedSoftwareUpdatesName",
|
||||||
"descriptionResourceKey": "forceDelayedSoftwareUpdatesDescription",
|
"descriptionResourceKey": "forceDelayedSoftwareUpdatesDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "enforcedSoftwareUpdateDelayName",
|
"nameResourceKey": "enforcedSoftwareUpdateDelayName",
|
||||||
"descriptionResourceKey": "enforcedSoftwareUpdateDelayDescription",
|
"descriptionResourceKey": "enforcedSoftwareUpdateDelayDescription",
|
||||||
"emptyValueResourceKey": "EnforcedSoftwareUpdateDelayNamePlaceholder",
|
"emptyValueResourceKey": "EnforcedSoftwareUpdateDelayNamePlaceholder",
|
||||||
|
|||||||
@@ -4,13 +4,13 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": true,
|
"showAsSectionHeader": true,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "allEnrollmentTypesHeaderNameMac",
|
"nameResourceKey": "allEnrollmentTypesHeaderNameMac",
|
||||||
"descriptionResourceKey": "allEnrollmentTypesHeaderDescriptionMac",
|
"descriptionResourceKey": "allEnrollmentTypesHeaderDescriptionMac",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "blockDefinitionLookupNameMacOS",
|
"nameResourceKey": "blockDefinitionLookupNameMacOS",
|
||||||
"descriptionResourceKey": "blockDefinitionLookupDescriptionMacOS",
|
"descriptionResourceKey": "blockDefinitionLookupDescriptionMacOS",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -27,7 +27,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "keyboardBlockDictationNameMacOS",
|
"nameResourceKey": "keyboardBlockDictationNameMacOS",
|
||||||
"descriptionResourceKey": "keyboardBlockDictationDescriptionMacOS",
|
"descriptionResourceKey": "keyboardBlockDictationDescriptionMacOS",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -44,7 +44,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "blockContentCachingName",
|
"nameResourceKey": "blockContentCachingName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -60,7 +60,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "macBlockScreenshotName",
|
"nameResourceKey": "macBlockScreenshotName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -86,13 +86,13 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": true,
|
"showAsSectionHeader": true,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "userApprovedAndAutomatedDeviceEnrollmentHeaderNameMac",
|
"nameResourceKey": "userApprovedAndAutomatedDeviceEnrollmentHeaderNameMac",
|
||||||
"descriptionResourceKey": "userApprovedAndAutomatedDeviceEnrollmentHeaderDescriptionMac",
|
"descriptionResourceKey": "userApprovedAndAutomatedDeviceEnrollmentHeaderDescriptionMac",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "updateDelayPolicyName",
|
"nameResourceKey": "updateDelayPolicyName",
|
||||||
"descriptionResourceKey": "updateDelayPolicyDescription",
|
"descriptionResourceKey": "updateDelayPolicyDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -110,7 +110,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "enforcedSoftwareUpdateDelayName",
|
"nameResourceKey": "enforcedSoftwareUpdateDelayName",
|
||||||
"descriptionResourceKey": "enforcedSoftwareUpdateDelayDescription",
|
"descriptionResourceKey": "enforcedSoftwareUpdateDelayDescription",
|
||||||
"emptyValueResourceKey": "enforcedSoftwareUpdateDelayEmptyValue",
|
"emptyValueResourceKey": "enforcedSoftwareUpdateDelayEmptyValue",
|
||||||
@@ -127,7 +127,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "softwareUpdateMajorOSDeferredInstallDelayName",
|
"nameResourceKey": "softwareUpdateMajorOSDeferredInstallDelayName",
|
||||||
"descriptionResourceKey": "softwareUpdateMajorOSDeferredInstallDelayDescription",
|
"descriptionResourceKey": "softwareUpdateMajorOSDeferredInstallDelayDescription",
|
||||||
"emptyValueResourceKey": "enforcedSoftwareUpdateDelayEmptyValue",
|
"emptyValueResourceKey": "enforcedSoftwareUpdateDelayEmptyValue",
|
||||||
@@ -151,7 +151,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "enforcedSoftwareUpdateDelayName",
|
"nameResourceKey": "enforcedSoftwareUpdateDelayName",
|
||||||
"descriptionResourceKey": "enforcedSoftwareUpdateDelayDescription",
|
"descriptionResourceKey": "enforcedSoftwareUpdateDelayDescription",
|
||||||
"emptyValueResourceKey": "enforcedSoftwareUpdateDelayEmptyValue",
|
"emptyValueResourceKey": "enforcedSoftwareUpdateDelayEmptyValue",
|
||||||
@@ -168,7 +168,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "softwareUpdateMinorOSDeferredInstallDelayName",
|
"nameResourceKey": "softwareUpdateMinorOSDeferredInstallDelayName",
|
||||||
"descriptionResourceKey": "softwareUpdateMinorOSDeferredInstallDelayDescription",
|
"descriptionResourceKey": "softwareUpdateMinorOSDeferredInstallDelayDescription",
|
||||||
"emptyValueResourceKey": "enforcedSoftwareUpdateDelayEmptyValue",
|
"emptyValueResourceKey": "enforcedSoftwareUpdateDelayEmptyValue",
|
||||||
@@ -192,7 +192,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "enforcedSoftwareUpdateDelayName",
|
"nameResourceKey": "enforcedSoftwareUpdateDelayName",
|
||||||
"descriptionResourceKey": "enforcedSoftwareUpdateDelayDescription",
|
"descriptionResourceKey": "enforcedSoftwareUpdateDelayDescription",
|
||||||
"emptyValueResourceKey": "enforcedSoftwareUpdateDelayEmptyValue",
|
"emptyValueResourceKey": "enforcedSoftwareUpdateDelayEmptyValue",
|
||||||
@@ -209,7 +209,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "softwareUpdateNonOSDeferredInstallDelayName",
|
"nameResourceKey": "softwareUpdateNonOSDeferredInstallDelayName",
|
||||||
"descriptionResourceKey": "softwareUpdateNonOSDeferredInstallDelayDescription",
|
"descriptionResourceKey": "softwareUpdateNonOSDeferredInstallDelayDescription",
|
||||||
"emptyValueResourceKey": "enforcedSoftwareUpdateDelayEmptyValue",
|
"emptyValueResourceKey": "enforcedSoftwareUpdateDelayEmptyValue",
|
||||||
@@ -233,7 +233,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "enforcedSoftwareUpdateDelayName",
|
"nameResourceKey": "enforcedSoftwareUpdateDelayName",
|
||||||
"descriptionResourceKey": "enforcedSoftwareUpdateDelayDescription",
|
"descriptionResourceKey": "enforcedSoftwareUpdateDelayDescription",
|
||||||
"emptyValueResourceKey": "enforcedSoftwareUpdateDelayEmptyValue",
|
"emptyValueResourceKey": "enforcedSoftwareUpdateDelayEmptyValue",
|
||||||
@@ -250,7 +250,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "softwareUpdateMajorOSDeferredInstallDelayName",
|
"nameResourceKey": "softwareUpdateMajorOSDeferredInstallDelayName",
|
||||||
"descriptionResourceKey": "softwareUpdateMajorOSDeferredInstallDelayDescription",
|
"descriptionResourceKey": "softwareUpdateMajorOSDeferredInstallDelayDescription",
|
||||||
"emptyValueResourceKey": "enforcedSoftwareUpdateDelayEmptyValue",
|
"emptyValueResourceKey": "enforcedSoftwareUpdateDelayEmptyValue",
|
||||||
@@ -267,7 +267,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "softwareUpdateMinorOSDeferredInstallDelayName",
|
"nameResourceKey": "softwareUpdateMinorOSDeferredInstallDelayName",
|
||||||
"descriptionResourceKey": "softwareUpdateMinorOSDeferredInstallDelayDescription",
|
"descriptionResourceKey": "softwareUpdateMinorOSDeferredInstallDelayDescription",
|
||||||
"emptyValueResourceKey": "enforcedSoftwareUpdateDelayEmptyValue",
|
"emptyValueResourceKey": "enforcedSoftwareUpdateDelayEmptyValue",
|
||||||
@@ -291,7 +291,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "enforcedSoftwareUpdateDelayName",
|
"nameResourceKey": "enforcedSoftwareUpdateDelayName",
|
||||||
"descriptionResourceKey": "enforcedSoftwareUpdateDelayDescription",
|
"descriptionResourceKey": "enforcedSoftwareUpdateDelayDescription",
|
||||||
"emptyValueResourceKey": "enforcedSoftwareUpdateDelayEmptyValue",
|
"emptyValueResourceKey": "enforcedSoftwareUpdateDelayEmptyValue",
|
||||||
@@ -308,7 +308,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "softwareUpdateMajorOSDeferredInstallDelayName",
|
"nameResourceKey": "softwareUpdateMajorOSDeferredInstallDelayName",
|
||||||
"descriptionResourceKey": "softwareUpdateMajorOSDeferredInstallDelayDescription",
|
"descriptionResourceKey": "softwareUpdateMajorOSDeferredInstallDelayDescription",
|
||||||
"emptyValueResourceKey": "enforcedSoftwareUpdateDelayEmptyValue",
|
"emptyValueResourceKey": "enforcedSoftwareUpdateDelayEmptyValue",
|
||||||
@@ -325,7 +325,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "softwareUpdateNonOSDeferredInstallDelayName",
|
"nameResourceKey": "softwareUpdateNonOSDeferredInstallDelayName",
|
||||||
"descriptionResourceKey": "softwareUpdateNonOSDeferredInstallDelayDescription",
|
"descriptionResourceKey": "softwareUpdateNonOSDeferredInstallDelayDescription",
|
||||||
"emptyValueResourceKey": "enforcedSoftwareUpdateDelayEmptyValue",
|
"emptyValueResourceKey": "enforcedSoftwareUpdateDelayEmptyValue",
|
||||||
@@ -349,7 +349,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "enforcedSoftwareUpdateDelayName",
|
"nameResourceKey": "enforcedSoftwareUpdateDelayName",
|
||||||
"descriptionResourceKey": "enforcedSoftwareUpdateDelayDescription",
|
"descriptionResourceKey": "enforcedSoftwareUpdateDelayDescription",
|
||||||
"emptyValueResourceKey": "enforcedSoftwareUpdateDelayEmptyValue",
|
"emptyValueResourceKey": "enforcedSoftwareUpdateDelayEmptyValue",
|
||||||
@@ -366,7 +366,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "softwareUpdateMinorOSDeferredInstallDelayName",
|
"nameResourceKey": "softwareUpdateMinorOSDeferredInstallDelayName",
|
||||||
"descriptionResourceKey": "softwareUpdateMinorOSDeferredInstallDelayDescription",
|
"descriptionResourceKey": "softwareUpdateMinorOSDeferredInstallDelayDescription",
|
||||||
"emptyValueResourceKey": "enforcedSoftwareUpdateDelayEmptyValue",
|
"emptyValueResourceKey": "enforcedSoftwareUpdateDelayEmptyValue",
|
||||||
@@ -383,7 +383,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "softwareUpdateNonOSDeferredInstallDelayName",
|
"nameResourceKey": "softwareUpdateNonOSDeferredInstallDelayName",
|
||||||
"descriptionResourceKey": "softwareUpdateNonOSDeferredInstallDelayDescription",
|
"descriptionResourceKey": "softwareUpdateNonOSDeferredInstallDelayDescription",
|
||||||
"emptyValueResourceKey": "enforcedSoftwareUpdateDelayEmptyValue",
|
"emptyValueResourceKey": "enforcedSoftwareUpdateDelayEmptyValue",
|
||||||
@@ -407,7 +407,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "enforcedSoftwareUpdateDelayName",
|
"nameResourceKey": "enforcedSoftwareUpdateDelayName",
|
||||||
"descriptionResourceKey": "enforcedSoftwareUpdateDelayDescription",
|
"descriptionResourceKey": "enforcedSoftwareUpdateDelayDescription",
|
||||||
"emptyValueResourceKey": "enforcedSoftwareUpdateDelayEmptyValue",
|
"emptyValueResourceKey": "enforcedSoftwareUpdateDelayEmptyValue",
|
||||||
@@ -424,7 +424,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "softwareUpdateMajorOSDeferredInstallDelayName",
|
"nameResourceKey": "softwareUpdateMajorOSDeferredInstallDelayName",
|
||||||
"descriptionResourceKey": "softwareUpdateMajorOSDeferredInstallDelayDescription",
|
"descriptionResourceKey": "softwareUpdateMajorOSDeferredInstallDelayDescription",
|
||||||
"emptyValueResourceKey": "enforcedSoftwareUpdateDelayEmptyValue",
|
"emptyValueResourceKey": "enforcedSoftwareUpdateDelayEmptyValue",
|
||||||
@@ -441,7 +441,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "softwareUpdateMinorOSDeferredInstallDelayName",
|
"nameResourceKey": "softwareUpdateMinorOSDeferredInstallDelayName",
|
||||||
"descriptionResourceKey": "softwareUpdateMinorOSDeferredInstallDelayDescription",
|
"descriptionResourceKey": "softwareUpdateMinorOSDeferredInstallDelayDescription",
|
||||||
"emptyValueResourceKey": "enforcedSoftwareUpdateDelayEmptyValue",
|
"emptyValueResourceKey": "enforcedSoftwareUpdateDelayEmptyValue",
|
||||||
@@ -458,7 +458,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 14,
|
"dataType": 14,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "softwareUpdateNonOSDeferredInstallDelayName",
|
"nameResourceKey": "softwareUpdateNonOSDeferredInstallDelayName",
|
||||||
"descriptionResourceKey": "softwareUpdateNonOSDeferredInstallDelayDescription",
|
"descriptionResourceKey": "softwareUpdateNonOSDeferredInstallDelayDescription",
|
||||||
"emptyValueResourceKey": "enforcedSoftwareUpdateDelayEmptyValue",
|
"emptyValueResourceKey": "enforcedSoftwareUpdateDelayEmptyValue",
|
||||||
@@ -495,13 +495,13 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": true,
|
"showAsSectionHeader": true,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "automatedDeviceEnrollmentHeaderNameMac",
|
"nameResourceKey": "automatedDeviceEnrollmentHeaderNameMac",
|
||||||
"descriptionResourceKey": "automatedDeviceEnrollmentHeaderDescriptionMac",
|
"descriptionResourceKey": "automatedDeviceEnrollmentHeaderDescriptionMac",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "macBlockClassroomAppRemoteScreenObservationName",
|
"nameResourceKey": "macBlockClassroomAppRemoteScreenObservationName",
|
||||||
"descriptionResourceKey": "macBlockClassroomAppRemoteScreenObservationDescription",
|
"descriptionResourceKey": "macBlockClassroomAppRemoteScreenObservationDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -518,7 +518,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "macClassroomAppForceUnpromptedScreenObservationName",
|
"nameResourceKey": "macClassroomAppForceUnpromptedScreenObservationName",
|
||||||
"descriptionResourceKey": "macClassroomAppForceUnpromptedScreenObservationDescription",
|
"descriptionResourceKey": "macClassroomAppForceUnpromptedScreenObservationDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -535,7 +535,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "macRequireClassroomRequestPermissionToLeaveClassesName",
|
"nameResourceKey": "macRequireClassroomRequestPermissionToLeaveClassesName",
|
||||||
"descriptionResourceKey": "macRequireClassroomRequestPermissionToLeaveClassesDescription",
|
"descriptionResourceKey": "macRequireClassroomRequestPermissionToLeaveClassesDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -552,7 +552,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "macForceClassroomUnpromptedAppAndDeviceLockName",
|
"nameResourceKey": "macForceClassroomUnpromptedAppAndDeviceLockName",
|
||||||
"descriptionResourceKey": "macForceClassroomUnpromptedAppAndDeviceLockDescription",
|
"descriptionResourceKey": "macForceClassroomUnpromptedAppAndDeviceLockDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -569,7 +569,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "macForceClassroomAutomaticallyJoinClassesName",
|
"nameResourceKey": "macForceClassroomAutomaticallyJoinClassesName",
|
||||||
"descriptionResourceKey": "macForceClassroomAutomaticallyJoinClassesDescription",
|
"descriptionResourceKey": "macForceClassroomAutomaticallyJoinClassesDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -586,7 +586,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "wallpaperModificationBlockedMacName",
|
"nameResourceKey": "wallpaperModificationBlockedMacName",
|
||||||
"descriptionResourceKey": "wallpaperModificationBlockedMacDescription",
|
"descriptionResourceKey": "wallpaperModificationBlockedMacDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -603,7 +603,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "blockDeviceEraseContentAndSettingsMacOsName",
|
"nameResourceKey": "blockDeviceEraseContentAndSettingsMacOsName",
|
||||||
"descriptionResourceKey": "blockDeviceEraseContentAndSettingsMacOsDescription",
|
"descriptionResourceKey": "blockDeviceEraseContentAndSettingsMacOsDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
"devicerestrictions_windows10general": [
|
"devicerestrictions_windows10general": [
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "winMobileBlockScreenshotName",
|
"nameResourceKey": "winMobileBlockScreenshotName",
|
||||||
"descriptionResourceKey": "blockScreenshotDescription",
|
"descriptionResourceKey": "blockScreenshotDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -19,7 +19,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "winMobileAllowCopyAndPasteName",
|
"nameResourceKey": "winMobileAllowCopyAndPasteName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -36,7 +36,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "blockManualUnenrollmentName",
|
"nameResourceKey": "blockManualUnenrollmentName",
|
||||||
"descriptionResourceKey": "blockManualUnenrollmentDescription",
|
"descriptionResourceKey": "blockManualUnenrollmentDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -53,7 +53,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "blockManualRootCertificateInstallationName",
|
"nameResourceKey": "blockManualRootCertificateInstallationName",
|
||||||
"descriptionResourceKey": "blockManualRootCertificateInstallationDescription",
|
"descriptionResourceKey": "blockManualRootCertificateInstallationDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -70,7 +70,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "blockCameraName",
|
"nameResourceKey": "blockCameraName",
|
||||||
"descriptionResourceKey": "blockCameraDescription",
|
"descriptionResourceKey": "blockCameraDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -87,7 +87,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "blockOneDriveFileSyncName",
|
"nameResourceKey": "blockOneDriveFileSyncName",
|
||||||
"descriptionResourceKey": "blockOneDriveFileSyncDescription",
|
"descriptionResourceKey": "blockOneDriveFileSyncDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -104,7 +104,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "blockRemovableStorageName",
|
"nameResourceKey": "blockRemovableStorageName",
|
||||||
"descriptionResourceKey": "blockRemovableStorageDescription",
|
"descriptionResourceKey": "blockRemovableStorageDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -121,7 +121,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "blockGeolocationName",
|
"nameResourceKey": "blockGeolocationName",
|
||||||
"descriptionResourceKey": "blockGeolocationDescription",
|
"descriptionResourceKey": "blockGeolocationDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -138,7 +138,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "blockInternetSharingName",
|
"nameResourceKey": "blockInternetSharingName",
|
||||||
"descriptionResourceKey": "blockInternetSharingDescription",
|
"descriptionResourceKey": "blockInternetSharingDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -155,7 +155,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "blockPhoneResetName",
|
"nameResourceKey": "blockPhoneResetName",
|
||||||
"descriptionResourceKey": "blockPhoneResetDescription",
|
"descriptionResourceKey": "blockPhoneResetDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -172,7 +172,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "blockUSBConnectionName",
|
"nameResourceKey": "blockUSBConnectionName",
|
||||||
"descriptionResourceKey": "blockUSBConnectionDescription",
|
"descriptionResourceKey": "blockUSBConnectionDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -189,7 +189,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "blockAntiTheftModeName",
|
"nameResourceKey": "blockAntiTheftModeName",
|
||||||
"descriptionResourceKey": "blockAntiTheftModeDescription",
|
"descriptionResourceKey": "blockAntiTheftModeDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -206,7 +206,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "winMobileCortanaName",
|
"nameResourceKey": "winMobileCortanaName",
|
||||||
"descriptionResourceKey": "empty",
|
"descriptionResourceKey": "empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -223,7 +223,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "winMobileAllowVoiceRecordingName",
|
"nameResourceKey": "winMobileAllowVoiceRecordingName",
|
||||||
"descriptionResourceKey": "WinMobileAllowVoiceRecordingDescription",
|
"descriptionResourceKey": "WinMobileAllowVoiceRecordingDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -240,7 +240,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "settingsBlockEditDeviceName",
|
"nameResourceKey": "settingsBlockEditDeviceName",
|
||||||
"descriptionResourceKey": "settingsBlockEditDeviceNameDesc",
|
"descriptionResourceKey": "settingsBlockEditDeviceNameDesc",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -257,7 +257,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "settingsBlockAddProvisioningPackageName",
|
"nameResourceKey": "settingsBlockAddProvisioningPackageName",
|
||||||
"descriptionResourceKey": "settingsBlockAddProvisioningPackageDesc",
|
"descriptionResourceKey": "settingsBlockAddProvisioningPackageDesc",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -274,7 +274,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "settingsBlockRemoveProvisioningPackageName",
|
"nameResourceKey": "settingsBlockRemoveProvisioningPackageName",
|
||||||
"descriptionResourceKey": "settingsBlockRemoveProvisioningPackageDesc",
|
"descriptionResourceKey": "settingsBlockRemoveProvisioningPackageDesc",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -291,7 +291,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "blockDeviceDiscoveryName",
|
"nameResourceKey": "blockDeviceDiscoveryName",
|
||||||
"descriptionResourceKey": "blockDeviceDiscoveryDescription",
|
"descriptionResourceKey": "blockDeviceDiscoveryDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -308,7 +308,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "blockTaskSwitcherName",
|
"nameResourceKey": "blockTaskSwitcherName",
|
||||||
"descriptionResourceKey": "blockTaskSwitcherDescription",
|
"descriptionResourceKey": "blockTaskSwitcherDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -325,7 +325,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "blockSIMCardErrorDialogName",
|
"nameResourceKey": "blockSIMCardErrorDialogName",
|
||||||
"descriptionResourceKey": "blockSIMCardErrorDialogDescription",
|
"descriptionResourceKey": "blockSIMCardErrorDialogDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -342,7 +342,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "inkWorkspaceAccessName",
|
"nameResourceKey": "inkWorkspaceAccessName",
|
||||||
"descriptionResourceKey": "inkWorkspaceAccessDescription",
|
"descriptionResourceKey": "inkWorkspaceAccessDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -374,7 +374,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "allowAutomaticRedeploymentName",
|
"nameResourceKey": "allowAutomaticRedeploymentName",
|
||||||
"descriptionResourceKey": "allowAutomaticRedeploymentDescription",
|
"descriptionResourceKey": "allowAutomaticRedeploymentDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -391,7 +391,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "lockdownTenantRequireNetworkDuringOutOfBoxExperienceName",
|
"nameResourceKey": "lockdownTenantRequireNetworkDuringOutOfBoxExperienceName",
|
||||||
"descriptionResourceKey": "lockdownTenantRequireNetworkDuringOutOfBoxExperienceDescription",
|
"descriptionResourceKey": "lockdownTenantRequireNetworkDuringOutOfBoxExperienceDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -408,7 +408,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "dataProtectionBlockDirectMemoryAccessName",
|
"nameResourceKey": "dataProtectionBlockDirectMemoryAccessName",
|
||||||
"descriptionResourceKey": "dataProtectionBlockDirectMemoryAccessDescription",
|
"descriptionResourceKey": "dataProtectionBlockDirectMemoryAccessDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -437,7 +437,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "taskManagerBlockEndTaskName",
|
"nameResourceKey": "taskManagerBlockEndTaskName",
|
||||||
"descriptionResourceKey": "taskManagerBlockEndTaskDescription",
|
"descriptionResourceKey": "taskManagerBlockEndTaskDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
"devicerestrictions_windows8general": [
|
"devicerestrictions_windows8general": [
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "blockDiagnosticDataSubmissionName",
|
"nameResourceKey": "blockDiagnosticDataSubmissionName",
|
||||||
"descriptionResourceKey": "blockDiagnosticDataSubmissionDescription",
|
"descriptionResourceKey": "blockDiagnosticDataSubmissionDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -19,7 +19,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "firewallRequiredName",
|
"nameResourceKey": "firewallRequiredName",
|
||||||
"descriptionResourceKey": "firewallRequiredDescription",
|
"descriptionResourceKey": "firewallRequiredDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -35,7 +35,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 16,
|
"dataType": 16,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "userAccountControlName",
|
"nameResourceKey": "userAccountControlName",
|
||||||
"descriptionResourceKey": "userAccountControlDescription",
|
"descriptionResourceKey": "userAccountControlDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
"devicerestrictions_windowsphonegeneral": [
|
"devicerestrictions_windowsphonegeneral": [
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "blockCameraName",
|
"nameResourceKey": "blockCameraName",
|
||||||
"descriptionResourceKey": "blockCameraDescription",
|
"descriptionResourceKey": "blockCameraDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -19,7 +19,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "blockCopyAndPasteName",
|
"nameResourceKey": "blockCopyAndPasteName",
|
||||||
"descriptionResourceKey": "blockCopyAndPasteDescription",
|
"descriptionResourceKey": "blockCopyAndPasteDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -36,7 +36,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "blockRemovableStorageName",
|
"nameResourceKey": "blockRemovableStorageName",
|
||||||
"descriptionResourceKey": "blockRemovableStorageDescription",
|
"descriptionResourceKey": "blockRemovableStorageDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -53,7 +53,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "blockGeolocationName",
|
"nameResourceKey": "blockGeolocationName",
|
||||||
"descriptionResourceKey": "blockGeolocationDescription",
|
"descriptionResourceKey": "blockGeolocationDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -70,7 +70,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "blockMicrosoftAccountName",
|
"nameResourceKey": "blockMicrosoftAccountName",
|
||||||
"descriptionResourceKey": "blockMicrosoftAccountDescription",
|
"descriptionResourceKey": "blockMicrosoftAccountDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -87,7 +87,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "blockScreenshotName",
|
"nameResourceKey": "blockScreenshotName",
|
||||||
"descriptionResourceKey": "blockScreenshotDescription",
|
"descriptionResourceKey": "blockScreenshotDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -104,7 +104,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "blockDiagnosticDataSubmissionName",
|
"nameResourceKey": "blockDiagnosticDataSubmissionName",
|
||||||
"descriptionResourceKey": "blockDiagnosticDataSubmissionDescription",
|
"descriptionResourceKey": "blockDiagnosticDataSubmissionDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -121,7 +121,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 41,
|
"category": 44,
|
||||||
"nameResourceKey": "blockCustomEmailName",
|
"nameResourceKey": "blockCustomEmailName",
|
||||||
"descriptionResourceKey": "blockCustomEmailDescription",
|
"descriptionResourceKey": "blockCustomEmailDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|||||||
@@ -3,13 +3,13 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": true,
|
"showAsSectionHeader": true,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 42,
|
"category": 45,
|
||||||
"nameResourceKey": "allAndroidCorpEnrollmentTypesHeaderName",
|
"nameResourceKey": "allAndroidCorpEnrollmentTypesHeaderName",
|
||||||
"descriptionResourceKey": "allAndroidCorpEnrollmentTypesHeaderDescription",
|
"descriptionResourceKey": "allAndroidCorpEnrollmentTypesHeaderDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 42,
|
"category": 45,
|
||||||
"nameResourceKey": "securityRequireVerifyAppsName",
|
"nameResourceKey": "securityRequireVerifyAppsName",
|
||||||
"descriptionResourceKey": "securityRequireVerifyAppsDescription",
|
"descriptionResourceKey": "securityRequireVerifyAppsDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
"devicesecurity_androidforworkgeneral": [
|
"devicesecurity_androidforworkgeneral": [
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 42,
|
"category": 45,
|
||||||
"nameResourceKey": "requireAppVerifyName",
|
"nameResourceKey": "requireAppVerifyName",
|
||||||
"descriptionResourceKey": "requireAppVerifyDescription",
|
"descriptionResourceKey": "requireAppVerifyDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -19,7 +19,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 42,
|
"category": 45,
|
||||||
"nameResourceKey": "requireAppVerifyName",
|
"nameResourceKey": "requireAppVerifyName",
|
||||||
"descriptionResourceKey": "requireAppVerifyDescription",
|
"descriptionResourceKey": "requireAppVerifyDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -36,7 +36,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 42,
|
"category": 45,
|
||||||
"nameResourceKey": "workProfileBlockPersonalAppInstallsFromUnknownSourcesName",
|
"nameResourceKey": "workProfileBlockPersonalAppInstallsFromUnknownSourcesName",
|
||||||
"descriptionResourceKey": "workProfileBlockPersonalAppInstallsFromUnknownSourcesDescription",
|
"descriptionResourceKey": "workProfileBlockPersonalAppInstallsFromUnknownSourcesDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -53,7 +53,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 0,
|
"dataType": 0,
|
||||||
"category": 42,
|
"category": 45,
|
||||||
"nameResourceKey": "workProfileAllowAppInstallsFromUnknownSourcesInWorkProfileName",
|
"nameResourceKey": "workProfileAllowAppInstallsFromUnknownSourcesInWorkProfileName",
|
||||||
"descriptionResourceKey": "workProfileAllowAppInstallsFromUnknownSourcesInWorkProfileDescription",
|
"descriptionResourceKey": "workProfileAllowAppInstallsFromUnknownSourcesInWorkProfileDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|||||||
@@ -0,0 +1,100 @@
|
|||||||
|
{
|
||||||
|
"dfcisecuritysettings_windows10devicefirmwareconfigurationinterface": [
|
||||||
|
{
|
||||||
|
"dataType": 16,
|
||||||
|
"category": 47,
|
||||||
|
"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": 108,
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"dataType": 16,
|
||||||
|
"category": 47,
|
||||||
|
"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": 108,
|
||||||
|
"enabled": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"dataType": 16,
|
||||||
|
"category": 47,
|
||||||
|
"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": 108,
|
||||||
|
"enabled": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -5,7 +5,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 44,
|
"category": 48,
|
||||||
"nameResourceKey": "inclusionAppListColumn",
|
"nameResourceKey": "inclusionAppListColumn",
|
||||||
"emptyValueResourceKey": "appColumnExamples",
|
"emptyValueResourceKey": "appColumnExamples",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -22,7 +22,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 21,
|
"dataType": 21,
|
||||||
"category": 44,
|
"category": 48,
|
||||||
"nameResourceKey": "DisplayAppListWithGdiDPIScalingTurnedOnName",
|
"nameResourceKey": "DisplayAppListWithGdiDPIScalingTurnedOnName",
|
||||||
"descriptionResourceKey": "DisplayAppListWithGdiDPIScalingTurnedOnDescription",
|
"descriptionResourceKey": "DisplayAppListWithGdiDPIScalingTurnedOnDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -41,7 +41,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 44,
|
"category": 48,
|
||||||
"nameResourceKey": "exclusionAppListColumn",
|
"nameResourceKey": "exclusionAppListColumn",
|
||||||
"emptyValueResourceKey": "appColumnExamples",
|
"emptyValueResourceKey": "appColumnExamples",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -58,7 +58,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 21,
|
"dataType": 21,
|
||||||
"category": 44,
|
"category": 48,
|
||||||
"nameResourceKey": "DisplayAppListWithGdiDPIScalingTurnedOffName",
|
"nameResourceKey": "DisplayAppListWithGdiDPIScalingTurnedOffName",
|
||||||
"descriptionResourceKey": "DisplayAppListWithGdiDPIScalingTurnedOffDescription",
|
"descriptionResourceKey": "DisplayAppListWithGdiDPIScalingTurnedOffDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
"domainjoin_windowsdomainjoin": [
|
"domainjoin_windowsdomainjoin": [
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 133,
|
"category": 142,
|
||||||
"nameResourceKey": "computerNameStaticPrefixName",
|
"nameResourceKey": "computerNameStaticPrefixName",
|
||||||
"descriptionResourceKey": "computerNameStaticPrefixDescription",
|
"descriptionResourceKey": "computerNameStaticPrefixDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -18,7 +18,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 133,
|
"category": 142,
|
||||||
"nameResourceKey": "activeDirectoryDomainNameName",
|
"nameResourceKey": "activeDirectoryDomainNameName",
|
||||||
"descriptionResourceKey": "activeDirectoryDomainNameDescription",
|
"descriptionResourceKey": "activeDirectoryDomainNameDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -34,7 +34,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 133,
|
"category": 142,
|
||||||
"nameResourceKey": "organizationalUnitName",
|
"nameResourceKey": "organizationalUnitName",
|
||||||
"descriptionResourceKey": "organizationalUnitDescription",
|
"descriptionResourceKey": "organizationalUnitDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": true,
|
"showAsSectionHeader": true,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 45,
|
"category": 49,
|
||||||
"nameResourceKey": "deviceEnrollmentAndAutomatedDeviceEnrollmentHeaderName",
|
"nameResourceKey": "deviceEnrollmentAndAutomatedDeviceEnrollmentHeaderName",
|
||||||
"descriptionResourceKey": "deviceEnrollmentAndAutomatedDeviceEnrollmentHeaderDescription",
|
"descriptionResourceKey": "deviceEnrollmentAndAutomatedDeviceEnrollmentHeaderDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 45,
|
"category": 49,
|
||||||
"nameResourceKey": "domainsEmailDomainsBladeDescription",
|
"nameResourceKey": "domainsEmailDomainsBladeDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -31,7 +31,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 45,
|
"category": 49,
|
||||||
"nameResourceKey": "domainsEmailDomainsTableName",
|
"nameResourceKey": "domainsEmailDomainsTableName",
|
||||||
"emptyValueResourceKey": "domainsUrlExample",
|
"emptyValueResourceKey": "domainsUrlExample",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -48,7 +48,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 21,
|
"dataType": 21,
|
||||||
"category": 45,
|
"category": 49,
|
||||||
"nameResourceKey": "Empty",
|
"nameResourceKey": "Empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -63,7 +63,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 5,
|
"dataType": 5,
|
||||||
"category": 45,
|
"category": 49,
|
||||||
"nameResourceKey": "domainsEmailDomainsBladeName",
|
"nameResourceKey": "domainsEmailDomainsBladeName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -81,7 +81,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 45,
|
"category": 49,
|
||||||
"nameResourceKey": "domainsWebDomainsBladeDescription",
|
"nameResourceKey": "domainsWebDomainsBladeDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -98,7 +98,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 45,
|
"category": 49,
|
||||||
"nameResourceKey": "domainsWebDomainsTableName",
|
"nameResourceKey": "domainsWebDomainsTableName",
|
||||||
"emptyValueResourceKey": "domainsUrlExample",
|
"emptyValueResourceKey": "domainsUrlExample",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -115,7 +115,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 21,
|
"dataType": 21,
|
||||||
"category": 45,
|
"category": 49,
|
||||||
"nameResourceKey": "Empty",
|
"nameResourceKey": "Empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -130,7 +130,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 5,
|
"dataType": 5,
|
||||||
"category": 45,
|
"category": 49,
|
||||||
"nameResourceKey": "domainsWebDomainsBladeName",
|
"nameResourceKey": "domainsWebDomainsBladeName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -154,7 +154,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": true,
|
"showAsSectionHeader": true,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 45,
|
"category": 49,
|
||||||
"nameResourceKey": "automatedDeviceEnrollmentHeaderName",
|
"nameResourceKey": "automatedDeviceEnrollmentHeaderName",
|
||||||
"descriptionResourceKey": "automatedDeviceEnrollmentHeaderDescription",
|
"descriptionResourceKey": "automatedDeviceEnrollmentHeaderDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -164,7 +164,7 @@
|
|||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 45,
|
"category": 49,
|
||||||
"nameResourceKey": "domainsSafariPasswordAutoFillDomainsBladeDescription",
|
"nameResourceKey": "domainsSafariPasswordAutoFillDomainsBladeDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -181,7 +181,7 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"dataType": 20,
|
"dataType": 20,
|
||||||
"category": 45,
|
"category": 49,
|
||||||
"nameResourceKey": "domainsSafariPasswordAutoFillDomainsTableName",
|
"nameResourceKey": "domainsSafariPasswordAutoFillDomainsTableName",
|
||||||
"emptyValueResourceKey": "domainsUrlExample",
|
"emptyValueResourceKey": "domainsUrlExample",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
@@ -198,7 +198,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 21,
|
"dataType": 21,
|
||||||
"category": 45,
|
"category": 49,
|
||||||
"nameResourceKey": "Empty",
|
"nameResourceKey": "Empty",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
@@ -213,7 +213,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 5,
|
"dataType": 5,
|
||||||
"category": 45,
|
"category": 49,
|
||||||
"nameResourceKey": "domainsSafariPasswordAutoFillDomainsBladeName",
|
"nameResourceKey": "domainsSafariPasswordAutoFillDomainsBladeName",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user