diff --git a/CloudAPIPowerShellManagement.psd1 b/CloudAPIPowerShellManagement.psd1 index b074b7b..e558113 100644 Binary files a/CloudAPIPowerShellManagement.psd1 and b/CloudAPIPowerShellManagement.psd1 differ diff --git a/CloudAPIPowerShellManagement.psm1 b/CloudAPIPowerShellManagement.psm1 index d02d602..65f89dc 100644 --- a/CloudAPIPowerShellManagement.psm1 +++ b/CloudAPIPowerShellManagement.psm1 @@ -73,7 +73,19 @@ function Initialize-CloudAPIManagement [switch] $JSonSettings, [string] - $JSonFile + $JSonFile, + [switch] + $Silent, + [string] + $SilentBatchFile, + [string] + $tenantId, + [string] + $appId, + [string] + $secret, + [string] + $certificate ) $global:wpfNS = "xmlns='http://schemas.microsoft.com/winfx/2006/xaml/presentation' xmlns:x='http://schemas.microsoft.com/winfx/2006/xaml'" @@ -81,21 +93,43 @@ function Initialize-CloudAPIManagement [void] [System.Reflection.Assembly]::LoadWithPartialName("System.Windows.Forms") Add-Type -AssemblyName PresentationFramework - try - { - [xml]$xaml = Get-Content ([IO.Path]::GetDirectoryName($PSCommandPath) + "\Xaml\SplashScreen.xaml") - $global:SplashScreen = ([Windows.Markup.XamlReader]::Load((New-Object System.Xml.XmlNodeReader $xaml))) - $global:txtSplashTitle = $global:SplashScreen.FindName("txtSplashTitle") - $global:txtSplashText = $global:SplashScreen.FindName("txtSplashText") + $global:hideUI = ($Silent -eq $true) + $global:SilentBatchFile = $SilentBatchFile - $global:txtSplashTitle.Text = ("Initializing Cloud API PowerShell Management") + if($global:hideUI -ne $true) + { + # Run with UI + try + { + [xml]$xaml = Get-Content ([IO.Path]::GetDirectoryName($PSCommandPath) + "\Xaml\SplashScreen.xaml") + $global:SplashScreen = ([Windows.Markup.XamlReader]::Load((New-Object System.Xml.XmlNodeReader $xaml))) + $global:txtSplashTitle = $global:SplashScreen.FindName("txtSplashTitle") + $global:txtSplashText = $global:SplashScreen.FindName("txtSplashText") - $global:SplashScreen.Show() | Out-Null - [System.Windows.Forms.Application]::DoEvents() + $global:txtSplashTitle.Text = ("Initializing Cloud API PowerShell Management") + + $global:SplashScreen.Show() | Out-Null + [System.Windows.Forms.Application]::DoEvents() + } + catch + { + + } } - catch + else { - + # Run silent + + if(-not $tenantId) + { + # Core module not loaded yet so can't use log function + Write-Error "Tenant Id is missing. Use -TenantId on the command line to run silent batch jobs" + return + } + $global:TenantId = $tenantId + $global:AzureAppId = $appId + $global:ClientSecret = $secret + $global:ClientCert = $certificate } if($ShowConsoleWindow -ne $true) @@ -113,11 +147,17 @@ function Initialize-CloudAPIManagement $global:UseJSonSettings = $false } - $global:txtSplashText.Text = "Unblock files" + if($global:hideUI -ne $true) + { + $global:txtSplashText.Text = "Unblock files" + } [System.Windows.Forms.Application]::DoEvents() Unblock-AllFiles $PSScriptRoot - $global:txtSplashText.Text = "Load core module" + if($global:hideUI -ne $true) + { + $global:txtSplashText.Text = "Load core module" + } [System.Windows.Forms.Application]::DoEvents() Import-Module ($PSScriptRoot + "\Core.psm1") -Force -Global diff --git a/Core.psm1 b/Core.psm1 index 79d15db..9108cea 100644 --- a/Core.psm1 +++ b/Core.psm1 @@ -11,7 +11,7 @@ This module handles the WPF UI function Get-ModuleVersion { - '3.3.2' + '3.4.0' } function Start-CoreApp @@ -66,41 +66,77 @@ function Start-CoreApp $global:FirstTimeRunning = ((Get-Setting "" "FirstTimeRunning" "true") -eq "true") $global:MainAppStarted = $false - $global:txtSplashText.Text = "Initialize views" + Set-SplashWindowText "Initialize views" [System.Windows.Forms.Application]::DoEvents() Invoke-ModuleFunction "Invoke-InitializeModule" - #Add menu group and items - $script:LogViewObject = (New-Object PSObject -Property @{ - Title = "Log" - Description = "View log items" - ID = "CoreLog" - HideMenu = $true - Activating = { Show-LogView } - Permissions = @() - ViewPanel = $null - }) - - Add-ViewObject $script:LogViewObject - - #This will load the main window - $global:txtSplashText.Text = "Load main window" - [System.Windows.Forms.Application]::DoEvents() - Get-MainWindow - - if($global:window) + if($global:hideUI -ne $true) { - $global:txtSplashText.Text = "Open default view" + #Add menu group and items + $script:LogViewObject = (New-Object PSObject -Property @{ + Title = "Log" + Description = "View log items" + ID = "CoreLog" + HideMenu = $true + Activating = { Show-LogView } + Permissions = @() + ViewPanel = $null + }) + + Add-ViewObject $script:LogViewObject + + #This will load the main window + $global:txtSplashText.Text = "Load main window" [System.Windows.Forms.Application]::DoEvents() + Get-MainWindow - Show-View $View + if($global:window) + { + $global:txtSplashText.Text = "Open default view" + [System.Windows.Forms.Application]::DoEvents() + Show-View $View + + Invoke-ModuleFunction "Invoke-ShowMainWindow" + + $global:txtSplashText.Text = "Open main window" + [System.Windows.Forms.Application]::DoEvents() + $global:window.ShowDialog() | Out-Null + } + } + else + { + if(-not $global:SilentBatchFile) + { + Write-Log "SilentBatchFile must be specified" 3 + return + } + $silentFI = [IO.FileInfo]$global:SilentBatchFile + + if($silentFI.Exists -eq $false) + { + Write-Log "SilentBatchFile $($global:SilentBatchFile) not found" 3 + return + } Invoke-ModuleFunction "Invoke-ShowMainWindow" - $global:txtSplashText.Text = "Open main window" - [System.Windows.Forms.Application]::DoEvents() - $global:window.ShowDialog() | Out-Null + Invoke-ModuleFunction "Invoke-InitSilentBatchJob" + + Start-RunSilentBatchJob + } +} + +function Start-RunSilentBatchJob +{ + try + { + $settingObj = (ConvertFrom-Json (Get-Content -Path $global:SilentBatchFile -Raw -ErrorAction Stop)) + Invoke-ModuleFunction "Invoke-SilentBatchJob" $settingObj + } + catch + { + Write-LogError "Failed to trigger silent batch job." $_.Exception } } @@ -110,8 +146,8 @@ function Import-AllModules { $fileName = [IO.Path]::GetFileName($file) if($skipModules -contains $fileName) { Write-Warning "Module $fileName excluded"; continue; } - - $global:txtSplashText.Text = "Import module $fileName" + + Set-SplashWindowText "Import module $fileName" [System.Windows.Forms.Application]::DoEvents() $module = Import-Module $file -PassThru -Force -Global -ErrorAction SilentlyContinue @@ -127,6 +163,15 @@ function Import-AllModules } } +function Set-SplashWindowText +{ + param($text) + + if($global:hideUI -eq $true) { return } + + $global:txtSplashText.Text = $text +} + #region Log functions function Write-Log { @@ -242,6 +287,12 @@ function Write-LogError function Write-Status { param($Text, [switch]$SkipLog, [switch]$Block, [switch]$Force) + + if($global:hideUI -eq $true) + { + if($SkipLog -ne $true) { Write-Log $text } + return + } if(-not $text) { $global:BlockStatusUpdates = $false } elseif($global:BlockStatusUpdates -eq $true -and $Force -ne $true) { return } @@ -415,6 +466,64 @@ function Invoke-RegisterName #endregion +#region Silent Functions +function Set-BatchProperties +{ + param($settingsObj, $form) + + if(-not $settingsObj -or -not $form) + { + return + } + + foreach($prop in $settingsObj) #($settingsObj | GM | Where MemberType -eq NoteProperty)) + { + if($prop.Type -eq "Custom") { continue } + + $obj = $form.FindName($prop.Name) + if(-not $obj) + { + Write-Log "No setting for $($prop.Name) found" 2 + continue + } + + if(-not $prop.Value) + { + continue + } + + try + { + if($obj -is [System.Windows.Controls.CheckBox]) + { + $obj.IsChecked = $prop.Value -eq $true + } + elseif($obj -is [System.Windows.Controls.TextBox]) + { + $obj.Text = $prop.Value + } + elseif($obj -is [System.Windows.Controls.ComboBox]) + { + $obj.SelectedValue = $prop.Value + } + else + { + try + { + Write-Log "Unsupported object type for silent batch job: $($obj.GetType().FullName)" 3 + } + catch + {} + } + } + catch + { + Write-LogError "Failed to set batch job property for $($prop.Name)" $_.Exception + } + } +} +#endregion + #region Dialogs function Show-AboutDialog @@ -671,7 +780,7 @@ function Set-ObjectGrid if($obj) { - $global:grdObject.Children.Add($obj) + $global:grdObject.Children.Add($obj) | Out-Null $global:grdObject.Visibility = "Visible" } else @@ -920,6 +1029,8 @@ function Save-Setting { param($SubPath = "", $Key = "", $Value, $Type = "String") + if($global:hideUI -eq $true) { return } + if($global:JsonSettingsObj -and $global:JSonSettingFile) { if($SubPath) @@ -997,6 +1108,58 @@ function Save-Setting } } +function Remove-Setting +{ + param($SubPath = "", $Key = "") + + if($global:JsonSettingsObj) + { + if($SubPath) + { + $arrParts = $SubPath.TrimEnd(@('/','\')).Split(@('/','\')) + } + else + { + $arrParts = @() + } + + $parentSetting = $global:JsonSettingsObj + + foreach($part in $arrParts) + { + if(($parentSetting.PSObject.Properties | Where Name -eq $part)) + { + $parentSetting = $parentSetting.$part + } + else + { + return + } + } + + if(($parentSetting.PSObject.Properties | Where Name -eq $Key)) + { + $parentSetting.PSObject.Properties.Remove($Key) + } + } + else + { + $regPath = Get-RegPath $subPath + try + { + $temp = Get-Item -LiteralPath $regPath -ErrorAction SilentlyContinue + if(($temp.Property -contains $Key)) + { + Remove-ItemProperty -Path $regPath -Name $Key -Force -ErrorAction Stop + } + } + catch + { + Write-LogError "Failed to remove reg value: $($Key) in key $($regPath)" $_.Exception + } + } +} + function Get-Setting { param($SubPath = "", $Key = "", $defautValue) @@ -2031,10 +2194,15 @@ function Get-MainWindow #region Module functions function Invoke-ModuleFunction { - param($function) + param($function, $arguments = $null) Write-Log "Trigger function $function" + $params = @{} + if($arguments) + { + $params.Add("ArgumentList",$arguments) + } foreach($module in $global:loadedModules) { # Get command with ExportedFunctions instead of Get-Command @@ -2042,7 +2210,7 @@ function Invoke-ModuleFunction if($cmd) { Write-Log "Trigger $function in $($module.Name)" - Invoke-Command -ScriptBlock $cmd.ScriptBlock + Invoke-Command -ScriptBlock $cmd.ScriptBlock @params } else { diff --git a/Documentation.md b/Documentation.md index 44c6933..d1fdaa9 100644 --- a/Documentation.md +++ b/Documentation.md @@ -2,7 +2,7 @@ The script can document most of the profiles and policies in Intune. The output can either be CSV or Word. Documenting to Word can either be to an existing Word template or empty document. There are many options for the documentation e.g. Language, Header styles, Table styles, managing not configured items etc. -The idea behind the documentation method in the script is to output the information as close to the Endpoint Manager portal as possible. Some of the objects has a different property name or value in the Summary text vs Edit mode in the portal. The documentation will then use the Edit mode information when possible. Some policies and profiles might have a slightly different order that the portal. +The idea behind the documentation method in the script is to output the information as close to the Endpoint Manager portal as possible. Some of the objects has a different property name or value in the Summary text vs Edit mode in the portal. The documentation will then use the Edit mode information when possible. Some policies and profiles might have a slightly different order that the portal. The objects can be documented in three ways: @@ -18,11 +18,11 @@ The objects can be documented in three ways: Document all supported objects. Initiated in the Bulk menu -Documentation is a very complex process. There are multiple types of objects, different languages, different types of properties etc. The best output is often based on a personal opinion. Some parts can be configured but not everything can be personalized. The output of most properties is simple, there is a name and a value. This is not the case for some properties e.g. a firewall rule. The firewall rule is itself a table with lots of possible values. The documentation will add the multi-property values with a property separator, comma is the default setting. There are also properties that contains multiple values. These will be added with an object separator, new line as default. The separators can be changed e.g. it might be better to use | as a object separator when documenting to a CSV. +Documentation is a very complex process. There are multiple types of objects, different languages, different types of properties etc. The best output is often based on a personal opinion. Some parts can be configured but not everything can be personalized. The output of most properties is simple, there is a name and a value. This is not the case for some properties e.g. a firewall rule. The firewall rule is itself a table with lots of possible values. The documentation will add the multi-property values with a property separator, comma is the default setting. There are also properties that contains multiple values. These will be added with an object separator, new line as default. The separators can be changed e.g. it might be better to use | as a object separator when documenting to a CSV. **Note:** The word document might need some manual post updates. Tables are auto generated but they might have to be tweaked for personal preferences. -Please read the [Deep Dive](#deep-dive) section below for a detailed description of the documentation process. +Please read the [Deep Dive](#deep-dive) section below for a detailed description of the documentation process. **Language Support** @@ -66,13 +66,13 @@ The documentation is based on a two step process This will collection all the information about the object and add it to a PowerShell object in the code -* Send the information to the selected output type +* Send the information to the selected output provider This will send all the information gathered about the object to the selected output provider These steps are then repeated for each object that is being documented. -An output provider then has an initial (PreProcess) and finish (PostProcess) step e.g. the Word provider will create a word document in the initial task, document all properties and then update content tables, word properties and save the document in the finish task. +An output provider then has an initial (PreProcess) and finish (PostProcess) step e.g. the Word provider will create a word document in the initial task, document all properties and then update content tables, word properties and save the document in the finish task. **Object Types** @@ -97,7 +97,7 @@ Json files for translating property objects to documentation is located in the D The generated files sometimes requires additional manually created properties. These could be properties in the UI that has a Yes/No, Enabled/Not Configured etc. trigger associated with a specific value. These properties must be manually added to the object before the documentation. The `DocumentationCustom.psm1` file takes care of this. This file is also used for overriding the documentation of specific values and other custom required processing. -The json files contains a definition of each property to document. This includes information like type e.g. Boolean (Yes/No, Allow/Block, Enabled/Disabled etc.), Options, DataTable etc. The script will use these files to translate each property into a PSCustomObject that is then used by the output provider. The functionality of these files has been extended to enhance the documentation options for the manually created files. Data types of 100 or above is custom functionality. All data types below 100 is based on the same functionality as in the Intune portal. The data type engine in the script is created based on best effort of the generated json files. +The json files contains a definition of each property to document. This includes information like type e.g. Boolean (Yes/No, Allow/Block, Enabled/Disabled etc.), Options, DataTable etc. The script will use these files to translate each property into a PSCustomObject that is then used by the output provider. The functionality of these files has been extended to enhance the documentation options for the manually created files. Data types of 100 or above is custom functionality. All data types below 100 is based on the same functionality as in the Intune portal. The data type engine in the script is created based on best effort of the generated json files. The `DocumentationCustom.psm1` file also takes care of custom documentation for some object types e.g. Conditional Access. App Configuration policies etc. These objects are documented via a PowerShell function in the script. @@ -132,7 +132,7 @@ The priority order for object documentation is: **Documentation Provider** -The documentation provider takes care of collecting all the information about the object. The `DocumentationCustom.psm1`file is an example of this. This file has examples of custom translation of properties for json files and examples of custom translation of objects via a PowerShell functions. +The documentation provider takes care of collecting all the information about the object. The `DocumentationCustom.psm1` file is an example of this. This file has examples of custom translation of properties for json files and examples of custom translation of objects via a PowerShell functions. Documentation providers has a Priority property. This defines in what order the providers will be triggered. The provider with the lowest priority number will be executed first. The included custom documentation provider has a priority number of 1000. The information gathering of the provider can be overridden by creating a custom documentation provider with a lower priority number. @@ -140,7 +140,7 @@ Documentation providers has a Priority property. This defines in what order the Once the script has finished gathering all the data of an object, it sends it to the Documentation Output provider. This will then document it to the specific output type of the provider. Word and CSV are included. There is also a "None" provider included. This will only add the gathered information in the UI. This is used for quick information or when building the translation files. This is also used by the comparison functionality. -The`DocumentationWord.psm1` and `DocumentationWordOptions.xaml` files are example on how to create an output provider. The xaml file contains the configuration options in the UI. The psm1 file registers the provider and builds the Word document based on the gathered information. +The `DocumentationWord.psm1` and `DocumentationWordOptions.xaml` files are example on how to create an output provider. The xaml file contains the configuration options in the UI. The psm1 file registers the provider and builds the Word document based on the gathered information. **Translation Files** diff --git a/Documentation/ObjectInfo/#microsoft.graph.windowsFeatureUpdateProfile.json b/Documentation/ObjectInfo/#microsoft.graph.windowsFeatureUpdateProfile.json index 7185afa..74fa283 100644 --- a/Documentation/ObjectInfo/#microsoft.graph.windowsFeatureUpdateProfile.json +++ b/Documentation/ObjectInfo/#microsoft.graph.windowsFeatureUpdateProfile.json @@ -14,5 +14,66 @@ "dataType": 20, "booleanActions": 0, "category": "WindowsFeatureUpdateProfile.Details.deploymentSettingsTitle" - } + }, + { + "nameResourceKey": "WindowsFeatureUpdateProfile.Details.RolloutOptions.label", + "descriptionResourceKey": "", + "entityKey": "featureUpdateRolloutOption", + "dataType": 16, + "booleanActions": 0, + "category": "WindowsFeatureUpdateProfile.Details.deploymentSettingsTitle", + "options": [ + { + "nameResourceKey": "WindowsUpdateRolloutOptions.immediateStart", + "descriptionResourceKey": "", + "value": "immediateStart" + }, + { + "nameResourceKey": "WindowsUpdateRolloutOptions.gradualRollout", + "descriptionResourceKey": "", + "value": "gradualRollout", + "ChildSettings": [ + { + "nameResourceKey": "WindowsFeatureUpdateProfile.Details.GradualRolloutStartDate.label", + "descriptionResourceKey": "", + "dataType": 20, + "category": "WindowsFeatureUpdateProfile.Details.deploymentSettingsTitle", + "entityKey": "featureUpdateRolloutStartDate", + "booleanActions": 0 + }, + { + "nameResourceKey": "WindowsFeatureUpdateProfile.Details.GradualRolloutEndDate.label", + "descriptionResourceKey": "", + "dataType": 20, + "category": "WindowsFeatureUpdateProfile.Details.deploymentSettingsTitle", + "entityKey": "featureUpdateRolloutEndDate", + "booleanActions": 0 + }, + { + "nameResourceKey": "WindowsFeatureUpdateProfile.Details.GradualRolloutInterval.label", + "descriptionResourceKey": "", + "dataType": 20, + "category": "WindowsFeatureUpdateProfile.Details.deploymentSettingsTitle", + "entityKey": "featureUpdateRolloutInterval", + "booleanActions": 0 + } + ] + }, + { + "nameResourceKey": "WindowsUpdateRolloutOptions.startDateOnly", + "descriptionResourceKey": "", + "value": "startDateOnly", + "ChildSettings": [ + { + "nameResourceKey": "WindowsFeatureUpdateProfile.Details.GradualRolloutStartDate.label", + "descriptionResourceKey": "", + "dataType": 20, + "category": "WindowsFeatureUpdateProfile.Details.deploymentSettingsTitle", + "entityKey": "featureUpdateRolloutStartDate", + "booleanActions": 0 + } + ] + } + ] + } ] \ No newline at end of file diff --git a/Documentation/ObjectInfo/androiddeviceownerapplications_androiddeviceownergeneral.json b/Documentation/ObjectInfo/androiddeviceownerapplications_androiddeviceownergeneral.json index 13b28ad..388a040 100644 --- a/Documentation/ObjectInfo/androiddeviceownerapplications_androiddeviceownergeneral.json +++ b/Documentation/ObjectInfo/androiddeviceownerapplications_androiddeviceownergeneral.json @@ -90,7 +90,20 @@ "nameResourceKey": "publicPlayStoreEnabledName", "descriptionResourceKey": "publicPlayStoreEnabledDescription", "childSettings": [ + { + "dataType": 10, + "category": 2, + "nameResourceKey": "publicPlayStoreEnabledWarning", + "childSettings": [ + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 2, + "enabled": true + } ], "options": [ diff --git a/Documentation/ObjectInfo/applicationsandgames_iosgeneral.json b/Documentation/ObjectInfo/applicationsandgames_iosgeneral.json index 726d02a..5b118c8 100644 --- a/Documentation/ObjectInfo/applicationsandgames_iosgeneral.json +++ b/Documentation/ObjectInfo/applicationsandgames_iosgeneral.json @@ -72,6 +72,23 @@ "defaultValue": false, "policyType": 46, "enabled": true + }, + { + "dataType": 0, + "category": 7, + "nameResourceKey": "managedPasteboardRequiredName", + "descriptionResourceKey": "managedPasteboardRequiredDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "managedPasteboardRequired", + "booleanActions": 9, + "defaultValue": false, + "policyType": 46, + "enabled": true } ], "options": [ @@ -1883,23 +1900,6 @@ "defaultValue": false, "policyType": 46, "enabled": true - }, - { - "dataType": 0, - "category": 7, - "nameResourceKey": "managedPasteboardRequiredName", - "descriptionResourceKey": "managedPasteboardRequiredDescription", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "managedPasteboardRequired", - "booleanActions": 9, - "defaultValue": false, - "policyType": 46, - "enabled": true } ], "options": [ diff --git a/Documentation/ObjectInfo/cloudandstorage_iosgeneral.json b/Documentation/ObjectInfo/cloudandstorage_iosgeneral.json index 70c7f7a..18f8ce9 100644 --- a/Documentation/ObjectInfo/cloudandstorage_iosgeneral.json +++ b/Documentation/ObjectInfo/cloudandstorage_iosgeneral.json @@ -224,6 +224,23 @@ "defaultValue": false, "policyType": 46, "enabled": true + }, + { + "dataType": 0, + "category": 18, + "nameResourceKey": "blockIosICloudPrivateRelayName", + "descriptionResourceKey": "blockIosICloudPrivateRelayDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "iCloudPrivateRelayBlocked", + "booleanActions": 9, + "defaultValue": false, + "policyType": 46, + "enabled": true } ], "options": [ diff --git a/Documentation/ObjectInfo/cloudandstorage_macgeneral.json b/Documentation/ObjectInfo/cloudandstorage_macgeneral.json index 828b3c7..4ffcfca 100644 --- a/Documentation/ObjectInfo/cloudandstorage_macgeneral.json +++ b/Documentation/ObjectInfo/cloudandstorage_macgeneral.json @@ -1,188 +1,240 @@ { - "cloudandstorage_macgeneral": { - "isSettingDescription": false, - "showAsSectionHeader": true, - "dataType": 8, - "category": 18, - "nameResourceKey": "allEnrollmentTypesHeaderNameMac", - "descriptionResourceKey": "allEnrollmentTypesHeaderDescriptionMac", - "childSettings": [ - { - "dataType": 0, - "category": 18, - "nameResourceKey": "blockKeychainCloudSyncName", - "descriptionResourceKey": "blockKeychainCloudSyncDescription", - "childSettings": [ + "cloudandstorage_macgeneral": [ + { + "isSettingDescription": false, + "showAsSectionHeader": true, + "dataType": 8, + "category": 18, + "nameResourceKey": "allEnrollmentTypesHeaderNameMac", + "descriptionResourceKey": "allEnrollmentTypesHeaderDescriptionMac", + "childSettings": [ + { + "dataType": 0, + "category": 18, + "nameResourceKey": "blockKeychainCloudSyncName", + "descriptionResourceKey": "blockKeychainCloudSyncDescription", + "childSettings": [ - ], - "options": [ + ], + "options": [ - ], - "entityKey": "keychainBlockCloudSync", - "booleanActions": 9, - "defaultValue": false, - "policyType": 61, - "enabled": true - }, - { - "dataType": 0, - "category": 18, - "nameResourceKey": "blockICloudDocumentSyncName", - "descriptionResourceKey": "blockICloudDocumentSyncDescription", - "childSettings": [ + ], + "entityKey": "keychainBlockCloudSync", + "booleanActions": 9, + "defaultValue": false, + "policyType": 61, + "enabled": true + }, + { + "dataType": 0, + "category": 18, + "nameResourceKey": "blockICloudDesktopAndDocumentsName", + "descriptionResourceKey": "blockICloudDesktopAndDocumentsDescription", + "childSettings": [ - ], - "options": [ + ], + "options": [ - ], - "entityKey": "iCloudBlockDocumentSync", - "booleanActions": 9, - "defaultValue": false, - "policyType": 61, - "enabled": true - }, - { - "dataType": 0, - "category": 18, - "nameResourceKey": "blockICloudMailName", - "descriptionResourceKey": "blockICloudMailDescription", - "childSettings": [ + ], + "entityKey": "iCloudDesktopAndDocumentsBlocked", + "booleanActions": 9, + "defaultValue": false, + "policyType": 61, + "enabled": true + }, + { + "dataType": 0, + "category": 18, + "nameResourceKey": "blockICloudDocumentSyncName", + "descriptionResourceKey": "blockICloudDocumentSyncDescription", + "childSettings": [ - ], - "options": [ + ], + "options": [ - ], - "entityKey": "iCloudBlockMail", - "booleanActions": 9, - "defaultValue": false, - "policyType": 61, - "enabled": true - }, - { - "dataType": 0, - "category": 18, - "nameResourceKey": "blockICloudAddressBookName", - "descriptionResourceKey": "blockICloudAddressBookDescription", - "childSettings": [ + ], + "entityKey": "iCloudBlockDocumentSync", + "booleanActions": 9, + "defaultValue": false, + "policyType": 61, + "enabled": true + }, + { + "dataType": 0, + "category": 18, + "nameResourceKey": "blockICloudMailName", + "descriptionResourceKey": "blockICloudMailDescription", + "childSettings": [ - ], - "options": [ + ], + "options": [ - ], - "entityKey": "iCloudBlockAddressBook", - "booleanActions": 9, - "defaultValue": false, - "policyType": 61, - "enabled": true - }, - { - "dataType": 0, - "category": 18, - "nameResourceKey": "blockICloudCalendarName", - "descriptionResourceKey": "blockICloudCalendarDescription", - "childSettings": [ + ], + "entityKey": "iCloudBlockMail", + "booleanActions": 9, + "defaultValue": false, + "policyType": 61, + "enabled": true + }, + { + "dataType": 0, + "category": 18, + "nameResourceKey": "blockICloudAddressBookName", + "descriptionResourceKey": "blockICloudAddressBookDescription", + "childSettings": [ - ], - "options": [ + ], + "options": [ - ], - "entityKey": "iCloudBlockCalendar", - "booleanActions": 9, - "defaultValue": false, - "policyType": 61, - "enabled": true - }, - { - "dataType": 0, - "category": 18, - "nameResourceKey": "blockICloudRemindersName", - "descriptionResourceKey": "blockICloudRemindersDescription", - "childSettings": [ + ], + "entityKey": "iCloudBlockAddressBook", + "booleanActions": 9, + "defaultValue": false, + "policyType": 61, + "enabled": true + }, + { + "dataType": 0, + "category": 18, + "nameResourceKey": "blockICloudCalendarName", + "descriptionResourceKey": "blockICloudCalendarDescription", + "childSettings": [ - ], - "options": [ + ], + "options": [ - ], - "entityKey": "iCloudBlockReminders", - "booleanActions": 9, - "defaultValue": false, - "policyType": 61, - "enabled": true - }, - { - "dataType": 0, - "category": 18, - "nameResourceKey": "blockICloudBookmarksName", - "descriptionResourceKey": "blockICloudBookmarksDescription", - "childSettings": [ + ], + "entityKey": "iCloudBlockCalendar", + "booleanActions": 9, + "defaultValue": false, + "policyType": 61, + "enabled": true + }, + { + "dataType": 0, + "category": 18, + "nameResourceKey": "blockICloudRemindersName", + "descriptionResourceKey": "blockICloudRemindersDescription", + "childSettings": [ - ], - "options": [ + ], + "options": [ - ], - "entityKey": "iCloudBlockBookmarks", - "booleanActions": 9, - "defaultValue": false, - "policyType": 61, - "enabled": true - }, - { - "dataType": 0, - "category": 18, - "nameResourceKey": "blockICloudNotesName", - "descriptionResourceKey": "blockICloudNotesDescription", - "childSettings": [ + ], + "entityKey": "iCloudBlockReminders", + "booleanActions": 9, + "defaultValue": false, + "policyType": 61, + "enabled": true + }, + { + "dataType": 0, + "category": 18, + "nameResourceKey": "blockICloudBookmarksName", + "descriptionResourceKey": "blockICloudBookmarksDescription", + "childSettings": [ - ], - "options": [ + ], + "options": [ - ], - "entityKey": "iCloudBlockNotes", - "booleanActions": 9, - "defaultValue": false, - "policyType": 61, - "enabled": true - }, - { - "dataType": 0, - "category": 18, - "nameResourceKey": "MacBlockICloudPhotoLibraryName", - "descriptionResourceKey": "blockICloudPhotoLibraryDescription", - "childSettings": [ + ], + "entityKey": "iCloudBlockBookmarks", + "booleanActions": 9, + "defaultValue": false, + "policyType": 61, + "enabled": true + }, + { + "dataType": 0, + "category": 18, + "nameResourceKey": "blockICloudNotesName", + "descriptionResourceKey": "blockICloudNotesDescription", + "childSettings": [ - ], - "options": [ + ], + "options": [ - ], - "entityKey": "iCloudBlockPhotoLibrary", - "booleanActions": 9, - "defaultValue": false, - "policyType": 61, - "enabled": true - }, - { - "dataType": 0, - "category": 18, - "nameResourceKey": "blockMacActivityContinuationName", - "descriptionResourceKey": "blockMacActivityContinuationDescription", - "childSettings": [ + ], + "entityKey": "iCloudBlockNotes", + "booleanActions": 9, + "defaultValue": false, + "policyType": 61, + "enabled": true + }, + { + "dataType": 0, + "category": 18, + "nameResourceKey": "MacBlockICloudPhotoLibraryName", + "descriptionResourceKey": "blockICloudPhotoLibraryDescription", + "childSettings": [ - ], - "options": [ + ], + "options": [ - ], - "entityKey": "iCloudBlockActivityContinuation", - "booleanActions": 9, - "defaultValue": false, - "policyType": 61, - "enabled": true - } - ], - "options": [ + ], + "entityKey": "iCloudBlockPhotoLibrary", + "booleanActions": 9, + "defaultValue": false, + "policyType": 61, + "enabled": true + }, + { + "dataType": 0, + "category": 18, + "nameResourceKey": "blockMacActivityContinuationName", + "descriptionResourceKey": "blockMacActivityContinuationDescription", + "childSettings": [ - ], - "booleanActions": 0, - "policyType": 61, - "enabled": true - } + ], + "options": [ + + ], + "entityKey": "iCloudBlockActivityContinuation", + "booleanActions": 9, + "defaultValue": false, + "policyType": 61, + "enabled": true + } + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 61, + "enabled": true + }, + { + "isSettingDescription": false, + "showAsSectionHeader": true, + "dataType": 8, + "category": 18, + "nameResourceKey": "userApprovedAndAutomatedDeviceEnrollmentHeaderNameMac", + "descriptionResourceKey": "userApprovedAndAutomatedDeviceEnrollmentHeaderDescriptionMac", + "childSettings": [ + { + "dataType": 0, + "category": 18, + "nameResourceKey": "blockMacICloudPrivateRelayName", + "descriptionResourceKey": "blockMacICloudPrivateRelayDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "iCloudPrivateRelayBlocked", + "booleanActions": 9, + "defaultValue": false, + "policyType": 61, + "enabled": true + } + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 61, + "enabled": true + } + ] } diff --git a/Documentation/ObjectInfo/contentcaching_macdevicefeatures.json b/Documentation/ObjectInfo/contentcaching_macdevicefeatures.json index 73dd24e..f858139 100644 --- a/Documentation/ObjectInfo/contentcaching_macdevicefeatures.json +++ b/Documentation/ObjectInfo/contentcaching_macdevicefeatures.json @@ -45,7 +45,7 @@ "enabled": true }, { - "dataType": 14, + "dataType": 15, "category": 22, "nameResourceKey": "contentCachingMaxSizeBytesName", "descriptionResourceKey": "contentCachingMaxSizeBytesDescription", diff --git a/Documentation/ObjectInfo/defenderlocalsecurityoptions_windows10endpointprotection.json b/Documentation/ObjectInfo/defenderlocalsecurityoptions_windows10endpointprotection.json index 90a5644..757dfa0 100644 --- a/Documentation/ObjectInfo/defenderlocalsecurityoptions_windows10endpointprotection.json +++ b/Documentation/ObjectInfo/defenderlocalsecurityoptions_windows10endpointprotection.json @@ -383,13 +383,13 @@ ], "options": [ { - "nameResourceKey": "localSecurityOptionsSmartCardRemovalBehaviorLockWorkstation", - "value": "lockWorkstation", + "nameResourceKey": "localSecurityOptionsSmartCardRemovalBehaviorNoAction", + "value": "noAction", "enabled": true }, { - "nameResourceKey": "localSecurityOptionsSmartCardRemovalBehaviorNoAction", - "value": "noAction", + "nameResourceKey": "localSecurityOptionsSmartCardRemovalBehaviorLockWorkstation", + "value": "lockWorkstation", "enabled": true }, { @@ -405,8 +405,8 @@ ], "entityKey": "localSecurityOptionsSmartCardRemovalBehavior", "booleanActions": 0, - "defaultValue": "lockWorkstation", - "unconfiguredValue": "lockWorkstation", + "defaultValue": "noAction", + "unconfiguredValue": "noAction", "policyType": 77, "enabled": true }, diff --git a/Documentation/ObjectInfo/devicefirmwareconfigurationinterface_windows10devicefirmwareconfigurationinterface.json b/Documentation/ObjectInfo/devicefirmwareconfigurationinterface_windows10devicefirmwareconfigurationinterface.json index dbe6d2d..ea9e941 100644 --- a/Documentation/ObjectInfo/devicefirmwareconfigurationinterface_windows10devicefirmwareconfigurationinterface.json +++ b/Documentation/ObjectInfo/devicefirmwareconfigurationinterface_windows10devicefirmwareconfigurationinterface.json @@ -219,6 +219,102 @@ "policyType": 108, "enabled": true }, + { + "dataType": 16, + "category": 136, + "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": "frontCameras", + "booleanActions": 0, + "defaultValue": "notConfigured", + "unconfiguredValue": "notConfigured", + "policyType": 108, + "enabled": false + }, + { + "dataType": 16, + "category": 136, + "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": "rearCameras", + "booleanActions": 0, + "defaultValue": "notConfigured", + "unconfiguredValue": "notConfigured", + "policyType": 108, + "enabled": false + }, + { + "dataType": 16, + "category": 136, + "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": "infraredCameras", + "booleanActions": 0, + "defaultValue": "notConfigured", + "unconfiguredValue": "notConfigured", + "policyType": 108, + "enabled": false + }, { "dataType": 16, "category": 136, @@ -251,6 +347,38 @@ "policyType": 108, "enabled": true }, + { + "dataType": 16, + "category": 136, + "nameResourceKey": "microphonesName", + "descriptionResourceKey": "microphonesDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "value": "notConfigured", + "enabled": true + }, + { + "nameResourceKey": "enabledOption", + "value": "enabled", + "enabled": true + }, + { + "nameResourceKey": "disabledOption", + "value": "disabled", + "enabled": true + } + ], + "entityKey": "microphones", + "booleanActions": 0, + "defaultValue": "notConfigured", + "unconfiguredValue": "notConfigured", + "policyType": 108, + "enabled": false + }, { "dataType": 16, "category": 136, @@ -299,6 +427,134 @@ "policyType": 108, "enabled": true }, + { + "dataType": 16, + "category": 136, + "nameResourceKey": "bluetoothName", + "descriptionResourceKey": "bluetoothDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "value": "notConfigured", + "enabled": true + }, + { + "nameResourceKey": "enabledOption", + "value": "enabled", + "enabled": true + }, + { + "nameResourceKey": "disabledOption", + "value": "disabled", + "enabled": true + } + ], + "entityKey": "bluetooth", + "booleanActions": 0, + "defaultValue": "notConfigured", + "unconfiguredValue": "notConfigured", + "policyType": 108, + "enabled": false + }, + { + "dataType": 16, + "category": 136, + "nameResourceKey": "wwanName", + "descriptionResourceKey": "wwanDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "value": "notConfigured", + "enabled": true + }, + { + "nameResourceKey": "enabledOption", + "value": "enabled", + "enabled": true + }, + { + "nameResourceKey": "disabledOption", + "value": "disabled", + "enabled": true + } + ], + "entityKey": "wwan", + "booleanActions": 0, + "defaultValue": "notConfigured", + "unconfiguredValue": "notConfigured", + "policyType": 108, + "enabled": false + }, + { + "dataType": 16, + "category": 136, + "nameResourceKey": "nfcName", + "descriptionResourceKey": "nfcDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "value": "notConfigured", + "enabled": true + }, + { + "nameResourceKey": "enabledOption", + "value": "enabled", + "enabled": true + }, + { + "nameResourceKey": "disabledOption", + "value": "disabled", + "enabled": true + } + ], + "entityKey": "nfc", + "booleanActions": 0, + "defaultValue": "notConfigured", + "unconfiguredValue": "notConfigured", + "policyType": 108, + "enabled": false + }, + { + "dataType": 16, + "category": 136, + "nameResourceKey": "wifiName", + "descriptionResourceKey": "wifiDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "value": "notConfigured", + "enabled": true + }, + { + "nameResourceKey": "enabledOption", + "value": "enabled", + "enabled": true + }, + { + "nameResourceKey": "disabledOption", + "value": "disabled", + "enabled": true + } + ], + "entityKey": "wifi", + "booleanActions": 0, + "defaultValue": "notConfigured", + "unconfiguredValue": "notConfigured", + "policyType": 108, + "enabled": false + }, { "isSettingDescription": false, "showAsSectionHeader": false, @@ -378,6 +634,182 @@ "unconfiguredValue": "notConfigured", "policyType": 108, "enabled": true + }, + { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 136, + "nameResourceKey": "portName", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 108, + "enabled": false + }, + { + "dataType": 16, + "category": 136, + "nameResourceKey": "usbTypeAPortName", + "descriptionResourceKey": "usbTypeAPortDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "value": "notConfigured", + "enabled": true + }, + { + "nameResourceKey": "enabledOption", + "value": "enabled", + "enabled": true + }, + { + "nameResourceKey": "disabledOption", + "value": "disabled", + "enabled": true + } + ], + "entityKey": "usbTypeAPort", + "booleanActions": 0, + "defaultValue": "notConfigured", + "unconfiguredValue": "notConfigured", + "policyType": 108, + "enabled": false + }, + { + "dataType": 16, + "category": 136, + "nameResourceKey": "usbTypeCPortName", + "descriptionResourceKey": "usbTypeCPortDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "value": "notConfigured", + "enabled": true + }, + { + "nameResourceKey": "enabledOption", + "value": "enabled", + "enabled": true + }, + { + "nameResourceKey": "disabledOption", + "value": "disabled", + "enabled": true + } + ], + "entityKey": "usbTypeCPort", + "booleanActions": 0, + "defaultValue": "notConfigured", + "unconfiguredValue": "notConfigured", + "policyType": 108, + "enabled": false + }, + { + "dataType": 16, + "category": 136, + "nameResourceKey": "sdCardName", + "descriptionResourceKey": "sdCardDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "value": "notConfigured", + "enabled": true + }, + { + "nameResourceKey": "enabledOption", + "value": "enabled", + "enabled": true + }, + { + "nameResourceKey": "disabledOption", + "value": "disabled", + "enabled": true + } + ], + "entityKey": "sdCard", + "booleanActions": 0, + "defaultValue": "notConfigured", + "unconfiguredValue": "notConfigured", + "policyType": 108, + "enabled": false + }, + { + "dataType": 16, + "category": 136, + "nameResourceKey": "wakeOnLANName", + "descriptionResourceKey": "wakeOnLANDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "value": "notConfigured", + "enabled": true + }, + { + "nameResourceKey": "enabledOption", + "value": "enabled", + "enabled": true + }, + { + "nameResourceKey": "disabledOption", + "value": "disabled", + "enabled": true + } + ], + "entityKey": "wakeOnLAN", + "booleanActions": 0, + "defaultValue": "notConfigured", + "unconfiguredValue": "notConfigured", + "policyType": 108, + "enabled": false + }, + { + "dataType": 16, + "category": 136, + "nameResourceKey": "wakeOnPowerName", + "descriptionResourceKey": "wakeOnPowerDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "value": "notConfigured", + "enabled": true + }, + { + "nameResourceKey": "enabledOption", + "value": "enabled", + "enabled": true + }, + { + "nameResourceKey": "disabledOption", + "value": "disabled", + "enabled": true + } + ], + "entityKey": "wakeOnPower", + "booleanActions": 0, + "defaultValue": "notConfigured", + "unconfiguredValue": "notConfigured", + "policyType": 108, + "enabled": false } ] } diff --git a/Documentation/ObjectInfo/devicerestrictions_androiddeviceownergeneral.json b/Documentation/ObjectInfo/devicerestrictions_androiddeviceownergeneral.json index 1759d3b..3f008af 100644 --- a/Documentation/ObjectInfo/devicerestrictions_androiddeviceownergeneral.json +++ b/Documentation/ObjectInfo/devicerestrictions_androiddeviceownergeneral.json @@ -113,23 +113,6 @@ "policyType": 2, "enabled": true }, - { - "dataType": 0, - "category": 41, - "nameResourceKey": "safeBootDisabledName", - "descriptionResourceKey": "safeBootDisabledDescription", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "safeBootBlocked", - "booleanActions": 3, - "defaultValue": false, - "policyType": 2, - "enabled": true - }, { "dataType": 0, "category": 41, @@ -249,23 +232,6 @@ "policyType": 2, "enabled": true }, - { - "dataType": 0, - "category": 41, - "nameResourceKey": "debuggingFeaturesAllowedName", - "descriptionResourceKey": "debuggingFeaturesAllowedDescription", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "securityAllowDebuggingFeatures", - "booleanActions": 0, - "defaultValue": false, - "policyType": 2, - "enabled": true - }, { "dataType": 0, "category": 41, @@ -895,6 +861,62 @@ "unconfiguredValue": "deviceDefault", "policyType": 2, "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 41, + "nameResourceKey": "systemUpdateFreezePeriodStartDateColumnName", + "descriptionResourceKey": "systemUpdateFreezePeriodStartDateColumnDescription", + "emptyValueResourceKey": "systemUpdateFreezePeriodStartDateEmptyValueKey", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "startDate", + "booleanActions": 0, + "policyType": 2, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 41, + "nameResourceKey": "systemUpdateFreezePeriodEndDateColumnName", + "descriptionResourceKey": "systemUpdateFreezePeriodEndDateColumnDescription", + "emptyValueResourceKey": "systemUpdateFreezePeriodEndDateEmptyValueKey", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "endDate", + "booleanActions": 0, + "policyType": 2, + "enabled": true + } + } + ], + "dataType": 21, + "category": 41, + "nameResourceKey": "systemUpdateFreezePeriodsTableName", + "descriptionResourceKey": "systemUpdateFreezePeriodsTableDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "systemUpdateFreezePeriodsList", + "booleanActions": 0, + "policyType": 2, + "enabled": true } ], "options": [ @@ -1211,6 +1233,87 @@ "defaultValue": false, "policyType": 2, "enabled": true + }, + { + "dataType": 19, + "category": 41, + "nameResourceKey": "showWorkContactsInPersonalProfileName", + "descriptionResourceKey": "showWorkContactsInPersonalProfileDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "blockOption", + "value": false, + "enabled": true + }, + { + "nameResourceKey": "notConfigured", + "value": true, + "enabled": true + } + ], + "entityKey": "crossProfilePoliciesShowWorkContactsInPersonalProfile", + "booleanActions": 0, + "defaultValue": true, + "unconfiguredValue": true, + "policyType": 2, + "enabled": true + }, + { + "dataType": 0, + "category": 41, + "nameResourceKey": "copyPasteBetweenWorkAndPersonalProfilesName", + "descriptionResourceKey": "copyPasteBetweenWorkAndPersonalProfilesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "crossProfilePoliciesAllowCopyPaste", + "booleanActions": 0, + "defaultValue": false, + "policyType": 2, + "enabled": true + }, + { + "dataType": 16, + "category": 41, + "nameResourceKey": "dataSharingBetweenWorkAndPersonalProfilesName", + "descriptionResourceKey": "dataSharingBetweenWorkAndPersonalProfilesDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "DeviceDefaultDataSharingBetweenWorkAndPersonalProfilesOption", + "value": "notConfigured", + "enabled": true + }, + { + "nameResourceKey": "BlockAllDataSharingBetweenWorkAndPersonalProfilesOption", + "value": "crossProfileDataSharingBlocked", + "enabled": true + }, + { + "nameResourceKey": "BlockWorkToPersonalDataSharingBetweenWorkAndPersonalProfilesOption", + "value": "dataSharingFromWorkToPersonalBlocked", + "enabled": true + }, + { + "nameResourceKey": "NoRestrictionsDataSharingBetweenWorkAndPersonalProfilesOption", + "value": "crossProfileDataSharingAllowed", + "enabled": true + } + ], + "entityKey": "crossProfilePoliciesAllowDataSharing", + "booleanActions": 0, + "defaultValue": "notConfigured", + "unconfiguredValue": "notConfigured", + "policyType": 2, + "enabled": true } ], "options": [ diff --git a/Documentation/ObjectInfo/devicerestrictions_androiddeviceownerwifi.json b/Documentation/ObjectInfo/devicerestrictions_androiddeviceownerwifi.json index 0d36bf7..201a6ba 100644 --- a/Documentation/ObjectInfo/devicerestrictions_androiddeviceownerwifi.json +++ b/Documentation/ObjectInfo/devicerestrictions_androiddeviceownerwifi.json @@ -258,6 +258,43 @@ "policyType": 9, "enabled": true }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 41, + "nameResourceKey": "empty", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "trustedServerCertificateNameExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trustedServerCertificateNamesName", + "booleanActions": 0, + "policyType": 9, + "enabled": true + } + } + ], + "dataType": 21, + "category": 41, + "nameResourceKey": "androidTrustedServerCertificateNamesName", + "descriptionResourceKey": "androidTrustedServerCertificateNamesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trustedServerCertificateNames", + "booleanActions": 0, + "policyType": 9, + "enabled": true + }, { "complexOptions": [ { @@ -491,6 +528,43 @@ "policyType": 9, "enabled": true }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 41, + "nameResourceKey": "empty", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "trustedServerCertificateNameExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trustedServerCertificateNamesName", + "booleanActions": 0, + "policyType": 9, + "enabled": true + } + } + ], + "dataType": 21, + "category": 41, + "nameResourceKey": "androidTrustedServerCertificateNamesName", + "descriptionResourceKey": "androidTrustedServerCertificateNamesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trustedServerCertificateNames", + "booleanActions": 0, + "policyType": 9, + "enabled": true + }, { "complexOptions": [ { @@ -782,6 +856,43 @@ "policyType": 9, "enabled": true }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 41, + "nameResourceKey": "empty", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "trustedServerCertificateNameExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trustedServerCertificateNamesName", + "booleanActions": 0, + "policyType": 9, + "enabled": true + } + } + ], + "dataType": 21, + "category": 41, + "nameResourceKey": "androidTrustedServerCertificateNamesName", + "descriptionResourceKey": "androidTrustedServerCertificateNamesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trustedServerCertificateNames", + "booleanActions": 0, + "policyType": 9, + "enabled": true + }, { "complexOptions": [ { diff --git a/Documentation/ObjectInfo/devicerestrictions_aospdeviceownerdevice.json b/Documentation/ObjectInfo/devicerestrictions_aospdeviceownerdevice.json index 02e9676..50dc530 100644 --- a/Documentation/ObjectInfo/devicerestrictions_aospdeviceownerdevice.json +++ b/Documentation/ObjectInfo/devicerestrictions_aospdeviceownerdevice.json @@ -85,23 +85,6 @@ "policyType": 28, "enabled": true }, - { - "dataType": 0, - "category": 41, - "nameResourceKey": "blockBackupServiceName", - "descriptionResourceKey": "blockBackupServiceDescription", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "backupBlocked", - "booleanActions": 9, - "defaultValue": false, - "policyType": 28, - "enabled": false - }, { "dataType": 0, "category": 41, @@ -153,23 +136,6 @@ "policyType": 28, "enabled": true }, - { - "dataType": 0, - "category": 41, - "nameResourceKey": "blockCellularWiFiTetheringName", - "descriptionResourceKey": "blockCellularWiFiTetheringDescription", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "cellularBlockWiFiTethering", - "booleanActions": 9, - "defaultValue": false, - "policyType": 28, - "enabled": false - }, { "dataType": 0, "category": 41, @@ -186,6 +152,23 @@ "defaultValue": false, "policyType": 28, "enabled": true + }, + { + "dataType": 0, + "category": 41, + "nameResourceKey": "blockAppsInstallFromUnknownSourcesName", + "descriptionResourceKey": "blockAppsInstallFromUnknownSourcesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "appsBlockInstallFromUnknownSources", + "booleanActions": 9, + "defaultValue": false, + "policyType": 28, + "enabled": true } ] } diff --git a/Documentation/ObjectInfo/devicerestrictions_iosgeneral.json b/Documentation/ObjectInfo/devicerestrictions_iosgeneral.json index 42ab910..361b272 100644 --- a/Documentation/ObjectInfo/devicerestrictions_iosgeneral.json +++ b/Documentation/ObjectInfo/devicerestrictions_iosgeneral.json @@ -505,6 +505,7 @@ "category": 41, "nameResourceKey": "enforcedSoftwareUpdateDelayName", "descriptionResourceKey": "enforcedSoftwareUpdateDelayDescription", + "emptyValueResourceKey": "EnforcedSoftwareUpdateDelayNamePlaceholder", "childSettings": [ ], @@ -513,7 +514,6 @@ ], "entityKey": "softwareUpdatesEnforcedDelayInDays", "booleanActions": 0, - "defaultValue": 30, "policyType": 46, "enabled": true } diff --git a/Documentation/ObjectInfo/devicerestrictions_macgeneral.json b/Documentation/ObjectInfo/devicerestrictions_macgeneral.json index 6f32f6a..084e787 100644 --- a/Documentation/ObjectInfo/devicerestrictions_macgeneral.json +++ b/Documentation/ObjectInfo/devicerestrictions_macgeneral.json @@ -113,6 +113,7 @@ "category": 41, "nameResourceKey": "enforcedSoftwareUpdateDelayName", "descriptionResourceKey": "enforcedSoftwareUpdateDelayDescription", + "emptyValueResourceKey": "enforcedSoftwareUpdateDelayEmptyValue", "childSettings": [ ], @@ -121,7 +122,6 @@ ], "entityKey": "softwareUpdatesEnforcedDelayInDays", "booleanActions": 0, - "defaultValue": 30, "policyType": 61, "enabled": true }, @@ -130,6 +130,7 @@ "category": 41, "nameResourceKey": "softwareUpdateMajorOSDeferredInstallDelayName", "descriptionResourceKey": "softwareUpdateMajorOSDeferredInstallDelayDescription", + "emptyValueResourceKey": "enforcedSoftwareUpdateDelayEmptyValue", "childSettings": [ ], @@ -138,7 +139,6 @@ ], "entityKey": "softwareUpdateMajorOSDeferredInstallDelayInDays", "booleanActions": 0, - "defaultValue": 30, "policyType": 61, "enabled": true } @@ -154,6 +154,7 @@ "category": 41, "nameResourceKey": "enforcedSoftwareUpdateDelayName", "descriptionResourceKey": "enforcedSoftwareUpdateDelayDescription", + "emptyValueResourceKey": "enforcedSoftwareUpdateDelayEmptyValue", "childSettings": [ ], @@ -162,7 +163,6 @@ ], "entityKey": "softwareUpdatesEnforcedDelayInDays", "booleanActions": 0, - "defaultValue": 30, "policyType": 61, "enabled": true }, @@ -171,6 +171,7 @@ "category": 41, "nameResourceKey": "softwareUpdateMinorOSDeferredInstallDelayName", "descriptionResourceKey": "softwareUpdateMinorOSDeferredInstallDelayDescription", + "emptyValueResourceKey": "enforcedSoftwareUpdateDelayEmptyValue", "childSettings": [ ], @@ -179,7 +180,6 @@ ], "entityKey": "softwareUpdateMinorOSDeferredInstallDelayInDays", "booleanActions": 0, - "defaultValue": 30, "policyType": 61, "enabled": true } @@ -195,6 +195,7 @@ "category": 41, "nameResourceKey": "enforcedSoftwareUpdateDelayName", "descriptionResourceKey": "enforcedSoftwareUpdateDelayDescription", + "emptyValueResourceKey": "enforcedSoftwareUpdateDelayEmptyValue", "childSettings": [ ], @@ -203,7 +204,6 @@ ], "entityKey": "softwareUpdatesEnforcedDelayInDays", "booleanActions": 0, - "defaultValue": 30, "policyType": 61, "enabled": true }, @@ -212,6 +212,7 @@ "category": 41, "nameResourceKey": "softwareUpdateNonOSDeferredInstallDelayName", "descriptionResourceKey": "softwareUpdateNonOSDeferredInstallDelayDescription", + "emptyValueResourceKey": "enforcedSoftwareUpdateDelayEmptyValue", "childSettings": [ ], @@ -220,7 +221,6 @@ ], "entityKey": "softwareUpdateNonOSDeferredInstallDelayInDays", "booleanActions": 0, - "defaultValue": 30, "policyType": 61, "enabled": true } @@ -229,13 +229,14 @@ }, { "nameResourceKey": "delayMajorAndMinorOSUpdateVisibilityOption", - "value": "delayMajorOsUpdateVisibility,delayOSUpdateVisibility", + "value": "delayOSUpdateVisibility,delayMajorOsUpdateVisibility", "children": [ { "dataType": 14, "category": 41, "nameResourceKey": "enforcedSoftwareUpdateDelayName", "descriptionResourceKey": "enforcedSoftwareUpdateDelayDescription", + "emptyValueResourceKey": "enforcedSoftwareUpdateDelayEmptyValue", "childSettings": [ ], @@ -244,7 +245,6 @@ ], "entityKey": "softwareUpdatesEnforcedDelayInDays", "booleanActions": 0, - "defaultValue": 30, "policyType": 61, "enabled": true }, @@ -253,6 +253,7 @@ "category": 41, "nameResourceKey": "softwareUpdateMajorOSDeferredInstallDelayName", "descriptionResourceKey": "softwareUpdateMajorOSDeferredInstallDelayDescription", + "emptyValueResourceKey": "enforcedSoftwareUpdateDelayEmptyValue", "childSettings": [ ], @@ -261,7 +262,6 @@ ], "entityKey": "softwareUpdateMajorOSDeferredInstallDelayInDays", "booleanActions": 0, - "defaultValue": 30, "policyType": 61, "enabled": true }, @@ -270,6 +270,7 @@ "category": 41, "nameResourceKey": "softwareUpdateMinorOSDeferredInstallDelayName", "descriptionResourceKey": "softwareUpdateMinorOSDeferredInstallDelayDescription", + "emptyValueResourceKey": "enforcedSoftwareUpdateDelayEmptyValue", "childSettings": [ ], @@ -278,7 +279,6 @@ ], "entityKey": "softwareUpdateMinorOSDeferredInstallDelayInDays", "booleanActions": 0, - "defaultValue": 30, "policyType": 61, "enabled": true } @@ -287,13 +287,14 @@ }, { "nameResourceKey": "delayMajorAndNonOsUpdateVisibilityOption", - "value": "delayMajorOsUpdateVisibility,delayAppUpdateVisibility", + "value": "delayAppUpdateVisibility,delayMajorOsUpdateVisibility", "children": [ { "dataType": 14, "category": 41, "nameResourceKey": "enforcedSoftwareUpdateDelayName", "descriptionResourceKey": "enforcedSoftwareUpdateDelayDescription", + "emptyValueResourceKey": "enforcedSoftwareUpdateDelayEmptyValue", "childSettings": [ ], @@ -302,7 +303,6 @@ ], "entityKey": "softwareUpdatesEnforcedDelayInDays", "booleanActions": 0, - "defaultValue": 30, "policyType": 61, "enabled": true }, @@ -311,6 +311,7 @@ "category": 41, "nameResourceKey": "softwareUpdateMajorOSDeferredInstallDelayName", "descriptionResourceKey": "softwareUpdateMajorOSDeferredInstallDelayDescription", + "emptyValueResourceKey": "enforcedSoftwareUpdateDelayEmptyValue", "childSettings": [ ], @@ -319,7 +320,6 @@ ], "entityKey": "softwareUpdateMajorOSDeferredInstallDelayInDays", "booleanActions": 0, - "defaultValue": 30, "policyType": 61, "enabled": true }, @@ -328,6 +328,7 @@ "category": 41, "nameResourceKey": "softwareUpdateNonOSDeferredInstallDelayName", "descriptionResourceKey": "softwareUpdateNonOSDeferredInstallDelayDescription", + "emptyValueResourceKey": "enforcedSoftwareUpdateDelayEmptyValue", "childSettings": [ ], @@ -336,7 +337,6 @@ ], "entityKey": "softwareUpdateNonOSDeferredInstallDelayInDays", "booleanActions": 0, - "defaultValue": 30, "policyType": 61, "enabled": true } @@ -352,6 +352,7 @@ "category": 41, "nameResourceKey": "enforcedSoftwareUpdateDelayName", "descriptionResourceKey": "enforcedSoftwareUpdateDelayDescription", + "emptyValueResourceKey": "enforcedSoftwareUpdateDelayEmptyValue", "childSettings": [ ], @@ -360,7 +361,6 @@ ], "entityKey": "softwareUpdatesEnforcedDelayInDays", "booleanActions": 0, - "defaultValue": 30, "policyType": 61, "enabled": true }, @@ -369,6 +369,7 @@ "category": 41, "nameResourceKey": "softwareUpdateMinorOSDeferredInstallDelayName", "descriptionResourceKey": "softwareUpdateMinorOSDeferredInstallDelayDescription", + "emptyValueResourceKey": "enforcedSoftwareUpdateDelayEmptyValue", "childSettings": [ ], @@ -377,7 +378,6 @@ ], "entityKey": "softwareUpdateMinorOSDeferredInstallDelayInDays", "booleanActions": 0, - "defaultValue": 30, "policyType": 61, "enabled": true }, @@ -386,6 +386,7 @@ "category": 41, "nameResourceKey": "softwareUpdateNonOSDeferredInstallDelayName", "descriptionResourceKey": "softwareUpdateNonOSDeferredInstallDelayDescription", + "emptyValueResourceKey": "enforcedSoftwareUpdateDelayEmptyValue", "childSettings": [ ], @@ -394,7 +395,6 @@ ], "entityKey": "softwareUpdateNonOSDeferredInstallDelayInDays", "booleanActions": 0, - "defaultValue": 30, "policyType": 61, "enabled": true } @@ -403,13 +403,14 @@ }, { "nameResourceKey": "delayAllUpdateVisibilityOption", - "value": "delayMajorOsUpdateVisibility,delayOSUpdateVisibility,delayAppUpdateVisibility", + "value": "delayOSUpdateVisibility,delayAppUpdateVisibility,delayMajorOsUpdateVisibility", "children": [ { "dataType": 14, "category": 41, "nameResourceKey": "enforcedSoftwareUpdateDelayName", "descriptionResourceKey": "enforcedSoftwareUpdateDelayDescription", + "emptyValueResourceKey": "enforcedSoftwareUpdateDelayEmptyValue", "childSettings": [ ], @@ -418,7 +419,6 @@ ], "entityKey": "softwareUpdatesEnforcedDelayInDays", "booleanActions": 0, - "defaultValue": 30, "policyType": 61, "enabled": true }, @@ -427,6 +427,7 @@ "category": 41, "nameResourceKey": "softwareUpdateMajorOSDeferredInstallDelayName", "descriptionResourceKey": "softwareUpdateMajorOSDeferredInstallDelayDescription", + "emptyValueResourceKey": "enforcedSoftwareUpdateDelayEmptyValue", "childSettings": [ ], @@ -435,7 +436,6 @@ ], "entityKey": "softwareUpdateMajorOSDeferredInstallDelayInDays", "booleanActions": 0, - "defaultValue": 30, "policyType": 61, "enabled": true }, @@ -444,6 +444,7 @@ "category": 41, "nameResourceKey": "softwareUpdateMinorOSDeferredInstallDelayName", "descriptionResourceKey": "softwareUpdateMinorOSDeferredInstallDelayDescription", + "emptyValueResourceKey": "enforcedSoftwareUpdateDelayEmptyValue", "childSettings": [ ], @@ -452,7 +453,6 @@ ], "entityKey": "softwareUpdateMinorOSDeferredInstallDelayInDays", "booleanActions": 0, - "defaultValue": 30, "policyType": 61, "enabled": true }, @@ -461,6 +461,7 @@ "category": 41, "nameResourceKey": "softwareUpdateNonOSDeferredInstallDelayName", "descriptionResourceKey": "softwareUpdateNonOSDeferredInstallDelayDescription", + "emptyValueResourceKey": "enforcedSoftwareUpdateDelayEmptyValue", "childSettings": [ ], @@ -469,7 +470,6 @@ ], "entityKey": "softwareUpdateNonOSDeferredInstallDelayInDays", "booleanActions": 0, - "defaultValue": 30, "policyType": 61, "enabled": true } diff --git a/Documentation/ObjectInfo/extensiblesinglesignon_iosdevicefeatures.json b/Documentation/ObjectInfo/extensiblesinglesignon_iosdevicefeatures.json index 2f87a93..69b7a77 100644 --- a/Documentation/ObjectInfo/extensiblesinglesignon_iosdevicefeatures.json +++ b/Documentation/ObjectInfo/extensiblesinglesignon_iosdevicefeatures.json @@ -672,6 +672,23 @@ "policyType": 42, "enabled": true }, + { + "dataType": 0, + "category": 56, + "nameResourceKey": "singleSignOnExtensionManagedAppsInBundleIdACLIncludedName", + "descriptionResourceKey": "singleSignOnExtensionManagedAppsInBundleIdACLIncludedDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "managedAppsInBundleIdACLIncluded", + "booleanActions": 9, + "defaultValue": false, + "policyType": 42, + "enabled": true + }, { "dataType": 20, "category": 56, @@ -722,6 +739,22 @@ "policyType": 42, "enabled": true }, + { + "dataType": 20, + "category": 56, + "nameResourceKey": "singleSignOnExtensionSignInHelpTextName", + "descriptionResourceKey": "singleSignOnExtensionSignInHelpTextDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "signInHelpText", + "booleanActions": 0, + "policyType": 42, + "enabled": true + }, { "columns": [ { diff --git a/Documentation/ObjectInfo/extensiblesinglesignon_macdevicefeatures.json b/Documentation/ObjectInfo/extensiblesinglesignon_macdevicefeatures.json index 17ff126..ce53787 100644 --- a/Documentation/ObjectInfo/extensiblesinglesignon_macdevicefeatures.json +++ b/Documentation/ObjectInfo/extensiblesinglesignon_macdevicefeatures.json @@ -640,6 +640,23 @@ "policyType": 58, "enabled": true }, + { + "dataType": 0, + "category": 56, + "nameResourceKey": "singleSignOnExtensionManagedAppsInBundleIdACLIncludedName", + "descriptionResourceKey": "singleSignOnExtensionManagedAppsInBundleIdACLIncludedDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "managedAppsInBundleIdACLIncluded", + "booleanActions": 9, + "defaultValue": false, + "policyType": 58, + "enabled": true + }, { "dataType": 0, "category": 56, @@ -674,6 +691,74 @@ "policyType": 58, "enabled": true }, + { + "dataType": 0, + "category": 56, + "nameResourceKey": "singleSignOnExtensionUserSetupDelayedName", + "descriptionResourceKey": "singleSignOnExtensionUserSetupDelayedDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "userSetupDelayed", + "booleanActions": 9, + "defaultValue": false, + "policyType": 58, + "enabled": true + }, + { + "dataType": 0, + "category": 56, + "nameResourceKey": "singleSignOnExtensionKerberosAppsInBundleIdACLIncludedName", + "descriptionResourceKey": "singleSignOnExtensionKerberosAppsInBundleIdACLIncludedDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "kerberosAppsInBundleIdACLIncluded", + "booleanActions": 9, + "defaultValue": false, + "policyType": 58, + "enabled": true + }, + { + "dataType": 0, + "category": 56, + "nameResourceKey": "singleSignOnExtensionCredentialsCacheMonitoredName", + "descriptionResourceKey": "singleSignOnExtensionCredentialsCacheMonitoredDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "credentialsCacheMonitored", + "booleanActions": 9, + "defaultValue": false, + "policyType": 58, + "enabled": true + }, + { + "dataType": 0, + "category": 56, + "nameResourceKey": "singleSignOnExtensionTLSForLDAPRequiredName", + "descriptionResourceKey": "singleSignOnExtensionTLSForLDAPRequiredDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "tlsForLDAPRequired", + "booleanActions": 9, + "defaultValue": false, + "policyType": 58, + "enabled": true + }, { "dataType": 0, "category": 56, @@ -788,6 +873,54 @@ "policyType": 58, "enabled": true }, + { + "dataType": 20, + "category": 56, + "nameResourceKey": "singleSignOnExtensionUsernameLabelCustomName", + "descriptionResourceKey": "singleSignOnExtensionUsernameLabelCustomDescription", + "emptyValueResourceKey": "singleSignOnExtensionUsernameLabelCustomEmptyValue", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "usernameLabelCustom", + "booleanActions": 0, + "policyType": 58, + "enabled": true + }, + { + "dataType": 16, + "category": 56, + "nameResourceKey": "singleSignOnExtensionModeCredentialUsedName", + "descriptionResourceKey": "singleSignOnExtensionModeCredentialUsedDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "singleSignOnExtensionModeCredentialUsedAlwaysName", + "value": "always", + "enabled": true + }, + { + "nameResourceKey": "singleSignOnExtensionModeCredentialUsedWhenNotSpecifiedName", + "value": "whenNotSpecified", + "enabled": true + }, + { + "nameResourceKey": "singleSignOnExtensionModeCredentialUsedKerberosDefaultName", + "value": "kerberosDefault", + "enabled": true + } + ], + "entityKey": "modeCredentialUsed", + "booleanActions": 0, + "defaultValue": "kerberosDefault", + "policyType": 58, + "enabled": true + }, { "dataType": 20, "category": 56, @@ -838,6 +971,22 @@ "policyType": 58, "enabled": true }, + { + "dataType": 20, + "category": 56, + "nameResourceKey": "singleSignOnExtensionSignInHelpTextName", + "descriptionResourceKey": "singleSignOnExtensionSignInHelpTextDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "signInHelpText", + "booleanActions": 0, + "policyType": 58, + "enabled": true + }, { "dataType": 20, "category": 56, @@ -960,6 +1109,42 @@ "booleanActions": 0, "policyType": 58, "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 56, + "nameResourceKey": "singleSignOnExtensionPreferredKDCsColumnName", + "emptyValueResourceKey": "singleSignOnExtensionPreferredKDCsColumnEmptyValue", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "preferredKDCsColumn", + "booleanActions": 0, + "policyType": 58, + "enabled": true + } + } + ], + "dataType": 21, + "category": 56, + "nameResourceKey": "singleSignOnExtensionPreferredKDCsName", + "descriptionResourceKey": "singleSignOnExtensionPreferredKDCsDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "preferredKDCs", + "booleanActions": 0, + "policyType": 58, + "enabled": true } ], "enabled": true diff --git a/Documentation/ObjectInfo/password_macgeneral.json b/Documentation/ObjectInfo/password_macgeneral.json index 26c4159..ca9bc79 100644 --- a/Documentation/ObjectInfo/password_macgeneral.json +++ b/Documentation/ObjectInfo/password_macgeneral.json @@ -344,6 +344,24 @@ "policyType": 61, "enabled": true }, + { + "dataType": 14, + "category": 85, + "nameResourceKey": "macTouchIdTimeoutInHoursName", + "descriptionResourceKey": "macTouchIdTimeoutInHoursDescription", + "emptyValueResourceKey": "macTouchIdTimeoutInHoursEmptyValueKey", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "touchIdTimeoutInHours", + "booleanActions": 0, + "defaultValue": 48, + "policyType": 61, + "enabled": true + }, { "dataType": 0, "category": 85, diff --git a/Documentation/ObjectInfo/personalprofile_androiddeviceownergeneral.json b/Documentation/ObjectInfo/personalprofile_androiddeviceownergeneral.json index 78ed2fd..9e373ab 100644 --- a/Documentation/ObjectInfo/personalprofile_androiddeviceownergeneral.json +++ b/Documentation/ObjectInfo/personalprofile_androiddeviceownergeneral.json @@ -57,6 +57,67 @@ "defaultValue": false, "policyType": 2, "enabled": true + }, + { + "dataType": 16, + "category": 87, + "nameResourceKey": "personalProfilePersonalApplicationsListTypeName", + "descriptionResourceKey": "personalProfilePersonalApplicationsListTypeDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "value": "notConfigured", + "enabled": true + }, + { + "nameResourceKey": "blockedList", + "value": "blockedApps", + "children": [ + { + "dataType": 25, + "category": 87, + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 2, + "enabled": true + } + ], + "enabled": true + }, + { + "nameResourceKey": "allowedList", + "value": "allowedApps", + "children": [ + { + "dataType": 25, + "category": 87, + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 2, + "enabled": true + } + ], + "enabled": true + } + ], + "entityKey": "personalProfilePlayStoreMode", + "booleanActions": 0, + "defaultValue": "notConfigured", + "policyType": 2, + "enabled": true } ], "options": [ diff --git a/Documentation/ObjectInfo/systemsecurity_complianceandroid.json b/Documentation/ObjectInfo/systemsecurity_complianceandroid.json index d3efbba..a54523d 100644 --- a/Documentation/ObjectInfo/systemsecurity_complianceandroid.json +++ b/Documentation/ObjectInfo/systemsecurity_complianceandroid.json @@ -747,6 +747,8 @@ ], "entityKey": "passwordRequiredType", "booleanActions": 0, + "defaultValue": "deviceDefault", + "unconfiguredValue": "deviceDefault", "policyType": 29, "enabled": true } diff --git a/Documentation/ObjectInfo/systemsecurity_complianceandroidforwork.json b/Documentation/ObjectInfo/systemsecurity_complianceandroidforwork.json index cf61ef8..789bc61 100644 --- a/Documentation/ObjectInfo/systemsecurity_complianceandroidforwork.json +++ b/Documentation/ObjectInfo/systemsecurity_complianceandroidforwork.json @@ -364,6 +364,8 @@ ], "entityKey": "passwordRequiredType", "booleanActions": 0, + "defaultValue": "deviceDefault", + "unconfiguredValue": "deviceDefault", "policyType": 30, "enabled": true } diff --git a/Documentation/ObjectInfo/systemsecurity_compliancemac.json b/Documentation/ObjectInfo/systemsecurity_compliancemac.json index ae939a6..8497a06 100644 --- a/Documentation/ObjectInfo/systemsecurity_compliancemac.json +++ b/Documentation/ObjectInfo/systemsecurity_compliancemac.json @@ -35,6 +35,7 @@ "category": 106, "nameResourceKey": "complianceMinimumPasswordLengthName", "descriptionResourceKey": "complianceMinimumPasswordLengthDescription", + "emptyValueResourceKey": "ComplianceMinimumPasswordLengthPlaceholder", "childSettings": [ ], @@ -43,7 +44,6 @@ ], "entityKey": "passwordMinimumLength", "booleanActions": 0, - "defaultValue": 4, "policyType": 34, "enabled": true }, @@ -172,7 +172,7 @@ "category": 106, "nameResourceKey": "compliancePasswordExpirationName", "descriptionResourceKey": "compliancePasswordExpirationDescription", - "emptyValueResourceKey": "IOSMacPasswordExpirationInDaysEmptyValueKey", + "emptyValueResourceKey": "CompliancePasswordExpirationPlaceholder", "childSettings": [ ], @@ -181,7 +181,6 @@ ], "entityKey": "passwordExpirationDays", "booleanActions": 0, - "defaultValue": 41, "policyType": 34, "enabled": true }, @@ -190,6 +189,7 @@ "category": 106, "nameResourceKey": "complianceNumberOfPreviousPasswordsToBlockName", "descriptionResourceKey": "complianceNumberOfPreviousPasswordsToBlockDescription", + "emptyValueResourceKey": "ComplianceNumberOfPreviousPasswordsToBlockPlaceholder", "childSettings": [ ], @@ -198,7 +198,6 @@ ], "entityKey": "passwordPreviousPasswordBlockCount", "booleanActions": 0, - "defaultValue": 5, "policyType": 34, "enabled": true } diff --git a/Documentation/ObjectInfo/systemsecurity_compliancewindows10.json b/Documentation/ObjectInfo/systemsecurity_compliancewindows10.json index 62897b0..ffae08f 100644 --- a/Documentation/ObjectInfo/systemsecurity_compliancewindows10.json +++ b/Documentation/ObjectInfo/systemsecurity_compliancewindows10.json @@ -100,6 +100,7 @@ "category": 106, "nameResourceKey": "complianceMinimumPasswordLengthName", "descriptionResourceKey": "complianceMinimumPasswordLengthDescription", + "emptyValueResourceKey": "ComplianceMinimumPasswordLengthPlaceholder", "childSettings": [ ], @@ -108,7 +109,6 @@ ], "entityKey": "passwordMinimumLength", "booleanActions": 0, - "defaultValue": 4, "policyType": 35, "enabled": true }, @@ -166,7 +166,7 @@ "category": 106, "nameResourceKey": "compliancePasswordExpirationName", "descriptionResourceKey": "compliancePasswordExpirationDescription", - "emptyValueResourceKey": "passwordExpirationInDaysEmptyValueTwoYearsKey", + "emptyValueResourceKey": "CompliancePasswordExpirationPlaceholder", "childSettings": [ ], @@ -175,7 +175,6 @@ ], "entityKey": "passwordExpirationDays", "booleanActions": 0, - "defaultValue": 41, "policyType": 35, "enabled": true }, @@ -184,6 +183,7 @@ "category": 106, "nameResourceKey": "complianceNumberOfPreviousPasswordsToBlockName", "descriptionResourceKey": "complianceNumberOfPreviousPasswordsToBlockDescription", + "emptyValueResourceKey": "ComplianceNumberOfPreviousPasswordsToBlockPlaceholder", "childSettings": [ ], @@ -192,7 +192,6 @@ ], "entityKey": "passwordPreviousPasswordBlockCount", "booleanActions": 0, - "defaultValue": 5, "policyType": 35, "enabled": true }, diff --git a/Documentation/ObjectInfo/systemsecurity_compliancewindows8.json b/Documentation/ObjectInfo/systemsecurity_compliancewindows8.json index d3e5fd7..1b1ef90 100644 --- a/Documentation/ObjectInfo/systemsecurity_compliancewindows8.json +++ b/Documentation/ObjectInfo/systemsecurity_compliancewindows8.json @@ -35,6 +35,7 @@ "category": 106, "nameResourceKey": "complianceMinimumPasswordLengthName", "descriptionResourceKey": "complianceMinimumPasswordLengthDescription", + "emptyValueResourceKey": "ComplianceMinimumPasswordLengthPlaceholder", "childSettings": [ ], @@ -43,7 +44,6 @@ ], "entityKey": "passwordMinimumLength", "booleanActions": 0, - "defaultValue": 4, "policyType": 37, "enabled": true }, @@ -176,7 +176,7 @@ "category": 106, "nameResourceKey": "compliancePasswordExpirationName", "descriptionResourceKey": "compliancePasswordExpirationDescription", - "emptyValueResourceKey": "IOSMacPasswordExpirationInDaysEmptyValueKey", + "emptyValueResourceKey": "CompliancePasswordExpirationPlaceholder", "childSettings": [ ], @@ -185,7 +185,6 @@ ], "entityKey": "passwordExpirationDays", "booleanActions": 0, - "defaultValue": 41, "policyType": 37, "enabled": true }, @@ -194,6 +193,7 @@ "category": 106, "nameResourceKey": "complianceNumberOfPreviousPasswordsToBlockName", "descriptionResourceKey": "complianceNumberOfPreviousPasswordsToBlockDescription", + "emptyValueResourceKey": "ComplianceNumberOfPreviousPasswordsToBlockPlaceholder", "childSettings": [ ], @@ -202,7 +202,6 @@ ], "entityKey": "passwordPreviousPasswordBlockCount", "booleanActions": 0, - "defaultValue": 5, "policyType": 37, "enabled": true } diff --git a/Documentation/ObjectInfo/systemsecurity_compliancewindowsphone.json b/Documentation/ObjectInfo/systemsecurity_compliancewindowsphone.json index 4a9be47..75cdcb6 100644 --- a/Documentation/ObjectInfo/systemsecurity_compliancewindowsphone.json +++ b/Documentation/ObjectInfo/systemsecurity_compliancewindowsphone.json @@ -35,6 +35,7 @@ "category": 106, "nameResourceKey": "complianceMinimumPasswordLengthName", "descriptionResourceKey": "complianceMinimumPasswordLengthDescription", + "emptyValueResourceKey": "ComplianceMinimumPasswordLengthPlaceholder", "childSettings": [ ], @@ -43,7 +44,6 @@ ], "entityKey": "passwordMinimumLength", "booleanActions": 0, - "defaultValue": 4, "policyType": 38, "enabled": true }, @@ -176,7 +176,7 @@ "category": 106, "nameResourceKey": "compliancePasswordExpirationName", "descriptionResourceKey": "compliancePasswordExpirationDescription", - "emptyValueResourceKey": "IOSMacPasswordExpirationInDaysEmptyValueKey", + "emptyValueResourceKey": "CompliancePasswordExpirationPlaceholder", "childSettings": [ ], @@ -185,7 +185,6 @@ ], "entityKey": "passwordExpirationDays", "booleanActions": 0, - "defaultValue": 41, "policyType": 38, "enabled": true }, @@ -194,6 +193,7 @@ "category": 106, "nameResourceKey": "complianceNumberOfPreviousPasswordsToBlockName", "descriptionResourceKey": "complianceNumberOfPreviousPasswordsToBlockDescription", + "emptyValueResourceKey": "ComplianceNumberOfPreviousPasswordsToBlockPlaceholder", "childSettings": [ ], @@ -202,7 +202,6 @@ ], "entityKey": "passwordPreviousPasswordBlockCount", "booleanActions": 0, - "defaultValue": 5, "policyType": 38, "enabled": true } diff --git a/Documentation/ObjectInfo/vpn_androiddeviceownervpn.json b/Documentation/ObjectInfo/vpn_androiddeviceownervpn.json index 165440e..221b7e0 100644 --- a/Documentation/ObjectInfo/vpn_androiddeviceownervpn.json +++ b/Documentation/ObjectInfo/vpn_androiddeviceownervpn.json @@ -178,6 +178,49 @@ { "nameResourceKey": "derivedCredentialsOption", "value": "derivedCredential", + "children": [ + { + "dataType": 9, + "category": 120, + "childSettings": [ + { + "dataType": 10, + "category": 120, + "nameResourceKey": "derivedCredentialsSearchingForTenantLevel", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 8, + "enabled": true + }, + { + "dataType": 10, + "category": 120, + "nameResourceKey": "derivedCredentialsTenantLevelNotConfigured", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 8, + "enabled": true + } + ], + "options": [ + + ], + "entityKey": "derivedCredentialSettings@odata.bind", + "booleanActions": 0, + "policyType": 8, + "enabled": true + } + ], "enabled": false } ], @@ -383,6 +426,49 @@ { "nameResourceKey": "derivedCredentialsOption", "value": "derivedCredential", + "children": [ + { + "dataType": 9, + "category": 120, + "childSettings": [ + { + "dataType": 10, + "category": 120, + "nameResourceKey": "derivedCredentialsSearchingForTenantLevel", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 8, + "enabled": true + }, + { + "dataType": 10, + "category": 120, + "nameResourceKey": "derivedCredentialsTenantLevelNotConfigured", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 8, + "enabled": true + } + ], + "options": [ + + ], + "entityKey": "derivedCredentialSettings@odata.bind", + "booleanActions": 0, + "policyType": 8, + "enabled": true + } + ], "enabled": false } ], @@ -588,6 +674,49 @@ { "nameResourceKey": "derivedCredentialsOption", "value": "derivedCredential", + "children": [ + { + "dataType": 9, + "category": 120, + "childSettings": [ + { + "dataType": 10, + "category": 120, + "nameResourceKey": "derivedCredentialsSearchingForTenantLevel", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 8, + "enabled": true + }, + { + "dataType": 10, + "category": 120, + "nameResourceKey": "derivedCredentialsTenantLevelNotConfigured", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 8, + "enabled": true + } + ], + "options": [ + + ], + "entityKey": "derivedCredentialSettings@odata.bind", + "booleanActions": 0, + "policyType": 8, + "enabled": true + } + ], "enabled": false } ], @@ -793,6 +922,49 @@ { "nameResourceKey": "derivedCredentialsOption", "value": "derivedCredential", + "children": [ + { + "dataType": 9, + "category": 120, + "childSettings": [ + { + "dataType": 10, + "category": 120, + "nameResourceKey": "derivedCredentialsSearchingForTenantLevel", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 8, + "enabled": true + }, + { + "dataType": 10, + "category": 120, + "nameResourceKey": "derivedCredentialsTenantLevelNotConfigured", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 8, + "enabled": true + } + ], + "options": [ + + ], + "entityKey": "derivedCredentialSettings@odata.bind", + "booleanActions": 0, + "policyType": 8, + "enabled": true + } + ], "enabled": false } ], @@ -998,6 +1170,49 @@ { "nameResourceKey": "derivedCredentialsOption", "value": "derivedCredential", + "children": [ + { + "dataType": 9, + "category": 120, + "childSettings": [ + { + "dataType": 10, + "category": 120, + "nameResourceKey": "derivedCredentialsSearchingForTenantLevel", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 8, + "enabled": true + }, + { + "dataType": 10, + "category": 120, + "nameResourceKey": "derivedCredentialsTenantLevelNotConfigured", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 8, + "enabled": true + } + ], + "options": [ + + ], + "entityKey": "derivedCredentialSettings@odata.bind", + "booleanActions": 0, + "policyType": 8, + "enabled": true + } + ], "enabled": false } ], diff --git a/Documentation/ObjectInfo/vpn_androidforworkvpn.json b/Documentation/ObjectInfo/vpn_androidforworkvpn.json index c17abfe..87c9b1f 100644 --- a/Documentation/ObjectInfo/vpn_androidforworkvpn.json +++ b/Documentation/ObjectInfo/vpn_androidforworkvpn.json @@ -178,6 +178,49 @@ { "nameResourceKey": "derivedCredentialsOption", "value": "derivedCredential", + "children": [ + { + "dataType": 9, + "category": 120, + "childSettings": [ + { + "dataType": 10, + "category": 120, + "nameResourceKey": "derivedCredentialsSearchingForTenantLevel", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 12, + "enabled": true + }, + { + "dataType": 10, + "category": 120, + "nameResourceKey": "derivedCredentialsTenantLevelNotConfigured", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 12, + "enabled": true + } + ], + "options": [ + + ], + "entityKey": "derivedCredentialSettings@odata.bind", + "booleanActions": 0, + "policyType": 12, + "enabled": true + } + ], "enabled": false } ], @@ -399,6 +442,49 @@ { "nameResourceKey": "derivedCredentialsOption", "value": "derivedCredential", + "children": [ + { + "dataType": 9, + "category": 120, + "childSettings": [ + { + "dataType": 10, + "category": 120, + "nameResourceKey": "derivedCredentialsSearchingForTenantLevel", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 12, + "enabled": true + }, + { + "dataType": 10, + "category": 120, + "nameResourceKey": "derivedCredentialsTenantLevelNotConfigured", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 12, + "enabled": true + } + ], + "options": [ + + ], + "entityKey": "derivedCredentialSettings@odata.bind", + "booleanActions": 0, + "policyType": 12, + "enabled": true + } + ], "enabled": false } ], @@ -604,6 +690,49 @@ { "nameResourceKey": "derivedCredentialsOption", "value": "derivedCredential", + "children": [ + { + "dataType": 9, + "category": 120, + "childSettings": [ + { + "dataType": 10, + "category": 120, + "nameResourceKey": "derivedCredentialsSearchingForTenantLevel", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 12, + "enabled": true + }, + { + "dataType": 10, + "category": 120, + "nameResourceKey": "derivedCredentialsTenantLevelNotConfigured", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 12, + "enabled": true + } + ], + "options": [ + + ], + "entityKey": "derivedCredentialSettings@odata.bind", + "booleanActions": 0, + "policyType": 12, + "enabled": true + } + ], "enabled": false } ], @@ -809,6 +938,49 @@ { "nameResourceKey": "derivedCredentialsOption", "value": "derivedCredential", + "children": [ + { + "dataType": 9, + "category": 120, + "childSettings": [ + { + "dataType": 10, + "category": 120, + "nameResourceKey": "derivedCredentialsSearchingForTenantLevel", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 12, + "enabled": true + }, + { + "dataType": 10, + "category": 120, + "nameResourceKey": "derivedCredentialsTenantLevelNotConfigured", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 12, + "enabled": true + } + ], + "options": [ + + ], + "entityKey": "derivedCredentialSettings@odata.bind", + "booleanActions": 0, + "policyType": 12, + "enabled": true + } + ], "enabled": false } ], @@ -1014,6 +1186,49 @@ { "nameResourceKey": "derivedCredentialsOption", "value": "derivedCredential", + "children": [ + { + "dataType": 9, + "category": 120, + "childSettings": [ + { + "dataType": 10, + "category": 120, + "nameResourceKey": "derivedCredentialsSearchingForTenantLevel", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 12, + "enabled": true + }, + { + "dataType": 10, + "category": 120, + "nameResourceKey": "derivedCredentialsTenantLevelNotConfigured", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 12, + "enabled": true + } + ], + "options": [ + + ], + "entityKey": "derivedCredentialSettings@odata.bind", + "booleanActions": 0, + "policyType": 12, + "enabled": true + } + ], "enabled": false } ], @@ -1219,6 +1434,49 @@ { "nameResourceKey": "derivedCredentialsOption", "value": "derivedCredential", + "children": [ + { + "dataType": 9, + "category": 120, + "childSettings": [ + { + "dataType": 10, + "category": 120, + "nameResourceKey": "derivedCredentialsSearchingForTenantLevel", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 12, + "enabled": true + }, + { + "dataType": 10, + "category": 120, + "nameResourceKey": "derivedCredentialsTenantLevelNotConfigured", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 12, + "enabled": true + } + ], + "options": [ + + ], + "entityKey": "derivedCredentialSettings@odata.bind", + "booleanActions": 0, + "policyType": 12, + "enabled": true + } + ], "enabled": false } ], diff --git a/Documentation/ObjectInfo/vpn_androidvpn.json b/Documentation/ObjectInfo/vpn_androidvpn.json index ffc7e43..1de8dd2 100644 --- a/Documentation/ObjectInfo/vpn_androidvpn.json +++ b/Documentation/ObjectInfo/vpn_androidvpn.json @@ -160,6 +160,49 @@ { "nameResourceKey": "derivedCredentialsOption", "value": "derivedCredential", + "children": [ + { + "dataType": 9, + "category": 120, + "childSettings": [ + { + "dataType": 10, + "category": 120, + "nameResourceKey": "derivedCredentialsSearchingForTenantLevel", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 25, + "enabled": true + }, + { + "dataType": 10, + "category": 120, + "nameResourceKey": "derivedCredentialsTenantLevelNotConfigured", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 25, + "enabled": true + } + ], + "options": [ + + ], + "entityKey": "derivedCredentialSettings@odata.bind", + "booleanActions": 0, + "policyType": 25, + "enabled": true + } + ], "enabled": false } ], diff --git a/Documentation/ObjectInfo/vpn_windows10vpn.json b/Documentation/ObjectInfo/vpn_windows10vpn.json index d9b81aa..750e2d6 100644 --- a/Documentation/ObjectInfo/vpn_windows10vpn.json +++ b/Documentation/ObjectInfo/vpn_windows10vpn.json @@ -1,4711 +1,39479 @@ { - "vpn_windows10vpn": [ - { - "dataType": 20, - "category": 120, - "nameResourceKey": "vPNPolicyConnectionName", - "descriptionResourceKey": "vPNPolicyConnectionDescription", - "emptyValueResourceKey": "vPNConnectionExample", - "childSettings": [ + "vpn_windows10vpn": { + "dataType": 16, + "category": 120, + "nameResourceKey": "VPNPolicyProfileScopeSelection", + "descriptionResourceKey": "VPNPolicyProfileScopeDescription", + "childSettings": [ - ], - "options": [ - - ], - "entityKey": "connectionName", - "booleanActions": 0, - "policyType": 89, - "enabled": true - }, - { - "columns": [ - { - "metadata": { - "dataType": 20, + ], + "options": [ + { + "nameResourceKey": "VPNPolicyProfileScopeUserOption", + "value": "user", + "children": [ + { + "dataType": 16, "category": 120, - "nameResourceKey": "vPNPolicyServerDescriptionName", - "descriptionResourceKey": "vPNPolicyServerDescriptionDescription", - "emptyValueResourceKey": "vPNServerExample", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "description", - "booleanActions": 0, - "policyType": 89, - "enabled": true - } - }, - { - "metadata": { - "dataType": 20, - "category": 120, - "nameResourceKey": "vPNPolicyServerIPAddressOrFQDNName", - "descriptionResourceKey": "vPNPolicyServerIPAddressOrFQDNDescription", - "emptyValueResourceKey": "vPNAddressExample", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "address", - "booleanActions": 0, - "policyType": 89, - "enabled": true - } - }, - { - "metadata": { - "dataType": 19, - "category": 120, - "nameResourceKey": "vPNPolicyDefaultServerName", - "descriptionResourceKey": "vPNPolicyDefaultServerDescription", + "nameResourceKey": "vPNPolicyConnectionTypeName", + "descriptionResourceKey": "vPNPolicyConnectionTypeDescriptionNoCustom", "childSettings": [ ], "options": [ { - "nameResourceKey": "trueOption", - "value": true, + "nameResourceKey": "selectAConnectionType", "enabled": true }, { - "nameResourceKey": "falseOption", - "value": false, + "nameResourceKey": "checkPointCapsuleVPNOption", + "value": "checkPointCapsuleVpn", + "children": [ + { + "complexOptions": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyConnectionName", + "descriptionResourceKey": "vPNPolicyConnectionDescription", + "emptyValueResourceKey": "vPNConnectionExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "connectionName", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyServerDescriptionName", + "descriptionResourceKey": "vPNPolicyServerDescriptionDescription", + "emptyValueResourceKey": "vPNServerExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "description", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyServerIPAddressOrFQDNName", + "descriptionResourceKey": "vPNPolicyServerIPAddressOrFQDNDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "address", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyDefaultServerName", + "descriptionResourceKey": "vPNPolicyDefaultServerDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "trueOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "falseOption", + "value": false, + "enabled": true + } + ], + "entityKey": "isDefaultServer", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyServersName", + "descriptionResourceKey": "vPNPolicyServersDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyDNSRegistrationName", + "descriptionResourceKey": "vPNPolicyDNSRegistrationDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableDnsRegistration", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + }, + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyEnableAlwaysOnName", + "descriptionResourceKey": "vPNPolicyEnableAlwaysOnDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableAlwaysOn", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + }, + { + "dataType": 16, + "category": 120, + "nameResourceKey": "authenticationMethodName", + "descriptionResourceKey": "vPNAuthMethodDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "selectAnAuthenticationMethod", + "enabled": true + }, + { + "nameResourceKey": "certificatesOption", + "value": "certificate", + "children": [ + { + "complexOptions": [ + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": false + }, + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": false + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "authenticationCertificate", + "descriptionResourceKey": "clientCertForClientAuthenticationDescription", + "emptyValueResourceKey": "selectCertificate", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + }, + { + "nameResourceKey": "usernameAndPasswordOption", + "value": "usernameAndPassword", + "enabled": true + }, + { + "nameResourceKey": "derivedCredentialsOption", + "value": "derivedCredential", + "children": [ + { + "dataType": 9, + "category": 120, + "childSettings": [ + { + "dataType": 10, + "category": 120, + "nameResourceKey": "derivedCredentialsSearchingForTenantLevel", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 10, + "category": 120, + "nameResourceKey": "derivedCredentialsTenantLevelNotConfigured", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + + ], + "entityKey": "derivedCredentialSettings@odata.bind", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": false + } + ], + "entityKey": "authenticationMethod", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 0, + "category": 120, + "nameResourceKey": "vPNPolicyRememberCredentialsName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "rememberUserCredentials", + "booleanActions": 2, + "policyType": 89, + "enabled": true + }, + { + "dataType": 12, + "category": 120, + "nameResourceKey": "vPNPolicyCustomXMLName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "customXml", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "vpn", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 16, + "category": 120, + "nameResourceKey": "vPNWipOrAppsName", + "descriptionResourceKey": "vPNWipOrAppsDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "value": 0, + "enabled": true + }, + { + "nameResourceKey": "wipOption", + "value": 1, + "children": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "wipName", + "descriptionResourceKey": "wipDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "windowsInformationProtectionDomain", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + }, + { + "nameResourceKey": "associateAppsOption", + "value": 2, + "children": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyOnlyTheseAppsCanUseVPNName", + "descriptionResourceKey": "vPNPolicyOnlyTheseAppsCanUseVPNDescription", + "childSettings": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "appIdentifierName", + "descriptionResourceKey": "appIdentifierDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identifier", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 16, + "category": 120, + "nameResourceKey": "eDPPolicyNetworkLocationsListTypeName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "enabled": true + }, + { + "nameResourceKey": "desktopOption", + "value": "desktop", + "enabled": true + }, + { + "nameResourceKey": "universalOption", + "value": "universal", + "enabled": true + } + ], + "entityKey": "appType", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyAssociatedAppsName", + "descriptionResourceKey": "vPNPolicyAssociatedAppsDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "associatedApps", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "onlyAssociatedAppsCanUseConnection", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + } + ], + "entityKey": "syntheticWipOrApps", + "booleanActions": 0, + "defaultValue": 0, + "unconfiguredValue": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "ruleName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 16, + "category": 120, + "nameResourceKey": "trafficRuleRoutingPolicyTypeName", + "descriptionResourceKey": "trafficRuleRoutingPolicyTypeDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "noneOption", + "value": "none", + "enabled": true + }, + { + "nameResourceKey": "splitTunnelOption", + "value": "splitTunnel", + "enabled": true + }, + { + "nameResourceKey": "forceTunnelOption", + "value": "forceTunnel", + "enabled": true + } + ], + "entityKey": "routingPolicyType", + "booleanActions": 0, + "defaultValue": "none", + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "protocolsName", + "descriptionResourceKey": "empty", + "childSettings": [ + { + "columns": [ + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "lowerPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "upperPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "localPortRangesName", + "descriptionResourceKey": "localPortRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "localPortRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "lowerPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "upperPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "remotePortRangesName", + "descriptionResourceKey": "remotePortRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "remotePortRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + + ], + "entityKey": "protocols", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "trafficRuleAppName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "appId", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 16, + "category": 120, + "nameResourceKey": "trafficRuleAppTypeName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "desktopOption", + "value": "desktop", + "enabled": true + }, + { + "nameResourceKey": "universalOption", + "value": "universal", + "enabled": true + } + ], + "entityKey": "appType", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "lowerIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "upperIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "localAddressRangesName", + "descriptionResourceKey": "localAddressRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "localAddressRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "lowerIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "upperIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "remoteAddressRangesName", + "descriptionResourceKey": "remoteAddressRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "remoteAddressRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyNetworkTrafficRulesName", + "descriptionResourceKey": "vPNPolicyNetworkTrafficRulesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trafficRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "AppsAndTrafficRules", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "enableConditionalAccessName", + "descriptionResourceKey": "enableConditionalAccessDescription", + "childSettings": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "enableSingleSignOnName", + "descriptionResourceKey": "enableSingleSignOnDescription", + "childSettings": [ + { + "complexOptions": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "eDPPolicyAppsListNameName", + "descriptionResourceKey": "eDPPolicyAppsListNameDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 20, + "category": 120, + "nameResourceKey": "sCEPPolicyObjectIdentifierColumnName", + "descriptionResourceKey": "sCEPPolicyObjectIdentifierColumnDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "objectIdentifier", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 6, + "category": 120, + "nameResourceKey": "sCEPPolicyExtendedKeyUsageName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "singleSignOnEku", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 20, + "category": 120, + "nameResourceKey": "issuerHashName", + "descriptionResourceKey": "issuerHashDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "singleSignOnIssuerHash", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableSingleSignOnWithAlternateCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableConditionalAccess", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "ConditionalAccess", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyDNSSuffixesName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "dNSSuffixExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyDNSSuffixSearchListName", + "descriptionResourceKey": "vPNPolicyDNSSuffixSearchListDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsSuffixes", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSName", + "descriptionResourceKey": "dNSNameDescription1809", + "emptyValueResourceKey": "dNSNameExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "dNSServerDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "enterOnlyOneForDns", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "proxy", + "descriptionResourceKey": "vPNProxyDescription1809", + "emptyValueResourceKey": "proxyDNSExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServerUri", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNDnsAutoTriggerName", + "descriptionResourceKey": "vPNDnsAutoTriggerDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enabledOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "notConfigured", + "value": false, + "enabled": true + } + ], + "entityKey": "autoTrigger", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNDnsPersistentName", + "descriptionResourceKey": "vPNDnsPersistentDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enabledOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "notConfigured", + "value": false, + "enabled": true + } + ], + "entityKey": "persistent", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyNameResolutionPolicyTableRulesName", + "descriptionResourceKey": "vPNPolicyNameResolutionPolicyTableRulesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "vPNPolicyNameResolutionPolicyTableRulesName", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSName", + "descriptionResourceKey": "dNSNameDescription1809", + "emptyValueResourceKey": "dNSNameExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "enterOnlyOneForDns", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "dNSServerDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "proxy", + "descriptionResourceKey": "vPNProxyDescription1809", + "emptyValueResourceKey": "proxyDNSExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServerUri", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyNameResolutionPolicyTableRulesName", + "descriptionResourceKey": "vPNPolicyNameResolutionPolicyTableRulesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": false + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSName", + "descriptionResourceKey": "dNSNameDescription", + "emptyValueResourceKey": "dNSNameExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "enterOnlyOneForDns", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "dNSServerDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "proxy", + "emptyValueResourceKey": "proxyDNSExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServerUri", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyDNSNamesAndServersName", + "descriptionResourceKey": "vPNPolicyDNSNamesAndServersName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": false + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "DNSSettings", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "vPNPolicyUseProxyServerName", + "descriptionResourceKey": "vPNPolicyUseProxyServerDescription", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyAutomaticConfigurationScriptName", + "descriptionResourceKey": "vPNPolicyAutomaticConfigurationScriptDescription", + "emptyValueResourceKey": "vPNScriptExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "automaticConfigurationScriptUrl", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyAddressName", + "descriptionResourceKey": "vPNPolicyAddressDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "address", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 14, + "category": 120, + "nameResourceKey": "vPNPolicyPortNumberName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "port", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 16, + "category": 120, + "nameResourceKey": "vPNPolicyBypassProxySettingsForLocalAddressesName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "enabled": true + }, + { + "nameResourceKey": "enableOption", + "value": "true", + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": "false", + "enabled": true + } + ], + "entityKey": "bypassProxyServerForLocalAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 6, + "category": 120, + "nameResourceKey": "vPNPolicyUseProxyServerName", + "descriptionResourceKey": "vPNPolicyUseProxyServerDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServer", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "Proxy", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicySendAllNetworkTrafficThroughVPNName", + "descriptionResourceKey": "vPNPolicySendAllNetworkTrafficThroughVPNDescription", + "childSettings": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyDestinationPrefixName", + "descriptionResourceKey": "vPNPolicyDestinationPrefixName", + "emptyValueResourceKey": "proxyAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "destinationPrefix", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "vPNPolicyPrefixSizeName", + "descriptionResourceKey": "vPNPolicyPrefixSizeName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "prefixSize", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyRoutesForThisConnectionName", + "descriptionResourceKey": "vPNPolicyRoutesForThisConnectionDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "routes", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableSplitTunneling", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "VPNPolicySendAllNetworkTrafficThroughVPNName", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyTrustedNetworkDomainColumnName", + "descriptionResourceKey": "", + "emptyValueResourceKey": "VPNPolicyTrustedNetworkDomainExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trustedNetworkDomains", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyTrustedNetworkDomainName", + "descriptionResourceKey": "vPNPolicyTrustedNetworkDomainDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trustedNetworkDomains", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "VPNPolicyTrustedNetworkDetectionEnabledName", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + }, + { + "nameResourceKey": "ciscoAnyConnectOption", + "value": "ciscoAnyConnect", + "children": [ + { + "complexOptions": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyConnectionName", + "descriptionResourceKey": "vPNPolicyConnectionDescription", + "emptyValueResourceKey": "vPNConnectionExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "connectionName", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyServerDescriptionName", + "descriptionResourceKey": "vPNPolicyServerDescriptionDescription", + "emptyValueResourceKey": "vPNServerExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "description", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyServerIPAddressOrFQDNName", + "descriptionResourceKey": "vPNPolicyServerIPAddressOrFQDNDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "address", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyDefaultServerName", + "descriptionResourceKey": "vPNPolicyDefaultServerDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "trueOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "falseOption", + "value": false, + "enabled": true + } + ], + "entityKey": "isDefaultServer", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyServersName", + "descriptionResourceKey": "vPNPolicyServersDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyDNSRegistrationName", + "descriptionResourceKey": "vPNPolicyDNSRegistrationDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableDnsRegistration", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + }, + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyEnableAlwaysOnName", + "descriptionResourceKey": "vPNPolicyEnableAlwaysOnDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableAlwaysOn", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + }, + { + "dataType": 16, + "category": 120, + "nameResourceKey": "authenticationMethodName", + "descriptionResourceKey": "vPNAuthMethodDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "selectAnAuthenticationMethod", + "enabled": true + }, + { + "nameResourceKey": "certificatesOption", + "value": "certificate", + "children": [ + { + "complexOptions": [ + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": false + }, + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": false + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "authenticationCertificate", + "descriptionResourceKey": "clientCertForClientAuthenticationDescription", + "emptyValueResourceKey": "selectCertificate", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + }, + { + "nameResourceKey": "usernameAndPasswordOption", + "value": "usernameAndPassword", + "enabled": true + }, + { + "nameResourceKey": "derivedCredentialsOption", + "value": "derivedCredential", + "children": [ + { + "dataType": 9, + "category": 120, + "childSettings": [ + { + "dataType": 10, + "category": 120, + "nameResourceKey": "derivedCredentialsSearchingForTenantLevel", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 10, + "category": 120, + "nameResourceKey": "derivedCredentialsTenantLevelNotConfigured", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + + ], + "entityKey": "derivedCredentialSettings@odata.bind", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": false + } + ], + "entityKey": "authenticationMethod", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 0, + "category": 120, + "nameResourceKey": "vPNPolicyRememberCredentialsName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "rememberUserCredentials", + "booleanActions": 2, + "policyType": 89, + "enabled": true + }, + { + "dataType": 12, + "category": 120, + "nameResourceKey": "vPNPolicyCustomXMLName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "customXml", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "vpn", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 16, + "category": 120, + "nameResourceKey": "vPNWipOrAppsName", + "descriptionResourceKey": "vPNWipOrAppsDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "value": 0, + "enabled": true + }, + { + "nameResourceKey": "wipOption", + "value": 1, + "children": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "wipName", + "descriptionResourceKey": "wipDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "windowsInformationProtectionDomain", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + }, + { + "nameResourceKey": "associateAppsOption", + "value": 2, + "children": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyOnlyTheseAppsCanUseVPNName", + "descriptionResourceKey": "vPNPolicyOnlyTheseAppsCanUseVPNDescription", + "childSettings": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "appIdentifierName", + "descriptionResourceKey": "appIdentifierDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identifier", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 16, + "category": 120, + "nameResourceKey": "eDPPolicyNetworkLocationsListTypeName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "enabled": true + }, + { + "nameResourceKey": "desktopOption", + "value": "desktop", + "enabled": true + }, + { + "nameResourceKey": "universalOption", + "value": "universal", + "enabled": true + } + ], + "entityKey": "appType", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyAssociatedAppsName", + "descriptionResourceKey": "vPNPolicyAssociatedAppsDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "associatedApps", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "onlyAssociatedAppsCanUseConnection", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + } + ], + "entityKey": "syntheticWipOrApps", + "booleanActions": 0, + "defaultValue": 0, + "unconfiguredValue": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "ruleName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 16, + "category": 120, + "nameResourceKey": "trafficRuleRoutingPolicyTypeName", + "descriptionResourceKey": "trafficRuleRoutingPolicyTypeDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "noneOption", + "value": "none", + "enabled": true + }, + { + "nameResourceKey": "splitTunnelOption", + "value": "splitTunnel", + "enabled": true + }, + { + "nameResourceKey": "forceTunnelOption", + "value": "forceTunnel", + "enabled": true + } + ], + "entityKey": "routingPolicyType", + "booleanActions": 0, + "defaultValue": "none", + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "protocolsName", + "descriptionResourceKey": "empty", + "childSettings": [ + { + "columns": [ + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "lowerPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "upperPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "localPortRangesName", + "descriptionResourceKey": "localPortRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "localPortRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "lowerPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "upperPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "remotePortRangesName", + "descriptionResourceKey": "remotePortRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "remotePortRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + + ], + "entityKey": "protocols", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "trafficRuleAppName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "appId", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 16, + "category": 120, + "nameResourceKey": "trafficRuleAppTypeName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "desktopOption", + "value": "desktop", + "enabled": true + }, + { + "nameResourceKey": "universalOption", + "value": "universal", + "enabled": true + } + ], + "entityKey": "appType", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "lowerIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "upperIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "localAddressRangesName", + "descriptionResourceKey": "localAddressRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "localAddressRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "lowerIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "upperIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "remoteAddressRangesName", + "descriptionResourceKey": "remoteAddressRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "remoteAddressRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyNetworkTrafficRulesName", + "descriptionResourceKey": "vPNPolicyNetworkTrafficRulesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trafficRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "AppsAndTrafficRules", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "enableConditionalAccessName", + "descriptionResourceKey": "enableConditionalAccessDescription", + "childSettings": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "enableSingleSignOnName", + "descriptionResourceKey": "enableSingleSignOnDescription", + "childSettings": [ + { + "complexOptions": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "eDPPolicyAppsListNameName", + "descriptionResourceKey": "eDPPolicyAppsListNameDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 20, + "category": 120, + "nameResourceKey": "sCEPPolicyObjectIdentifierColumnName", + "descriptionResourceKey": "sCEPPolicyObjectIdentifierColumnDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "objectIdentifier", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 6, + "category": 120, + "nameResourceKey": "sCEPPolicyExtendedKeyUsageName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "singleSignOnEku", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 20, + "category": 120, + "nameResourceKey": "issuerHashName", + "descriptionResourceKey": "issuerHashDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "singleSignOnIssuerHash", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableSingleSignOnWithAlternateCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableConditionalAccess", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "ConditionalAccess", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyDNSSuffixesName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "dNSSuffixExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyDNSSuffixSearchListName", + "descriptionResourceKey": "vPNPolicyDNSSuffixSearchListDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsSuffixes", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSName", + "descriptionResourceKey": "dNSNameDescription1809", + "emptyValueResourceKey": "dNSNameExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "dNSServerDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "enterOnlyOneForDns", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "proxy", + "descriptionResourceKey": "vPNProxyDescription1809", + "emptyValueResourceKey": "proxyDNSExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServerUri", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNDnsAutoTriggerName", + "descriptionResourceKey": "vPNDnsAutoTriggerDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enabledOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "notConfigured", + "value": false, + "enabled": true + } + ], + "entityKey": "autoTrigger", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNDnsPersistentName", + "descriptionResourceKey": "vPNDnsPersistentDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enabledOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "notConfigured", + "value": false, + "enabled": true + } + ], + "entityKey": "persistent", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyNameResolutionPolicyTableRulesName", + "descriptionResourceKey": "vPNPolicyNameResolutionPolicyTableRulesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "vPNPolicyNameResolutionPolicyTableRulesName", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSName", + "descriptionResourceKey": "dNSNameDescription1809", + "emptyValueResourceKey": "dNSNameExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "enterOnlyOneForDns", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "dNSServerDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "proxy", + "descriptionResourceKey": "vPNProxyDescription1809", + "emptyValueResourceKey": "proxyDNSExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServerUri", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyNameResolutionPolicyTableRulesName", + "descriptionResourceKey": "vPNPolicyNameResolutionPolicyTableRulesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": false + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSName", + "descriptionResourceKey": "dNSNameDescription", + "emptyValueResourceKey": "dNSNameExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "enterOnlyOneForDns", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "dNSServerDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "proxy", + "emptyValueResourceKey": "proxyDNSExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServerUri", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyDNSNamesAndServersName", + "descriptionResourceKey": "vPNPolicyDNSNamesAndServersName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": false + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "DNSSettings", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "vPNPolicyUseProxyServerName", + "descriptionResourceKey": "vPNPolicyUseProxyServerDescription", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyAutomaticConfigurationScriptName", + "descriptionResourceKey": "vPNPolicyAutomaticConfigurationScriptDescription", + "emptyValueResourceKey": "vPNScriptExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "automaticConfigurationScriptUrl", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyAddressName", + "descriptionResourceKey": "vPNPolicyAddressDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "address", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 14, + "category": 120, + "nameResourceKey": "vPNPolicyPortNumberName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "port", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 16, + "category": 120, + "nameResourceKey": "vPNPolicyBypassProxySettingsForLocalAddressesName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "enabled": true + }, + { + "nameResourceKey": "enableOption", + "value": "true", + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": "false", + "enabled": true + } + ], + "entityKey": "bypassProxyServerForLocalAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 6, + "category": 120, + "nameResourceKey": "vPNPolicyUseProxyServerName", + "descriptionResourceKey": "vPNPolicyUseProxyServerDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServer", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "Proxy", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicySendAllNetworkTrafficThroughVPNName", + "descriptionResourceKey": "vPNPolicySendAllNetworkTrafficThroughVPNDescription", + "childSettings": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyDestinationPrefixName", + "descriptionResourceKey": "vPNPolicyDestinationPrefixName", + "emptyValueResourceKey": "proxyAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "destinationPrefix", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "vPNPolicyPrefixSizeName", + "descriptionResourceKey": "vPNPolicyPrefixSizeName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "prefixSize", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyRoutesForThisConnectionName", + "descriptionResourceKey": "vPNPolicyRoutesForThisConnectionDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "routes", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableSplitTunneling", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "VPNPolicySendAllNetworkTrafficThroughVPNName", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyTrustedNetworkDomainColumnName", + "descriptionResourceKey": "", + "emptyValueResourceKey": "VPNPolicyTrustedNetworkDomainExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trustedNetworkDomains", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyTrustedNetworkDomainName", + "descriptionResourceKey": "vPNPolicyTrustedNetworkDomainDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trustedNetworkDomains", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "VPNPolicyTrustedNetworkDetectionEnabledName", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + }, + { + "nameResourceKey": "citrixOption", + "value": "citrix", + "children": [ + { + "complexOptions": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyConnectionName", + "descriptionResourceKey": "vPNPolicyConnectionDescription", + "emptyValueResourceKey": "vPNConnectionExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "connectionName", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyServerDescriptionName", + "descriptionResourceKey": "vPNPolicyServerDescriptionDescription", + "emptyValueResourceKey": "vPNServerExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "description", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyServerIPAddressOrFQDNName", + "descriptionResourceKey": "vPNPolicyServerIPAddressOrFQDNDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "address", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyDefaultServerName", + "descriptionResourceKey": "vPNPolicyDefaultServerDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "trueOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "falseOption", + "value": false, + "enabled": true + } + ], + "entityKey": "isDefaultServer", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyServersName", + "descriptionResourceKey": "vPNPolicyServersDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyDNSRegistrationName", + "descriptionResourceKey": "vPNPolicyDNSRegistrationDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableDnsRegistration", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + }, + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyEnableAlwaysOnName", + "descriptionResourceKey": "vPNPolicyEnableAlwaysOnDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableAlwaysOn", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + }, + { + "dataType": 16, + "category": 120, + "nameResourceKey": "authenticationMethodName", + "descriptionResourceKey": "vPNAuthMethodDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "selectAnAuthenticationMethod", + "enabled": true + }, + { + "nameResourceKey": "certificatesOption", + "value": "certificate", + "children": [ + { + "complexOptions": [ + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": false + }, + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": false + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "authenticationCertificate", + "descriptionResourceKey": "clientCertForClientAuthenticationDescription", + "emptyValueResourceKey": "selectCertificate", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + }, + { + "nameResourceKey": "usernameAndPasswordOption", + "value": "usernameAndPassword", + "enabled": true + }, + { + "nameResourceKey": "derivedCredentialsOption", + "value": "derivedCredential", + "children": [ + { + "dataType": 9, + "category": 120, + "childSettings": [ + { + "dataType": 10, + "category": 120, + "nameResourceKey": "derivedCredentialsSearchingForTenantLevel", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 10, + "category": 120, + "nameResourceKey": "derivedCredentialsTenantLevelNotConfigured", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + + ], + "entityKey": "derivedCredentialSettings@odata.bind", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": false + } + ], + "entityKey": "authenticationMethod", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 0, + "category": 120, + "nameResourceKey": "vPNPolicyRememberCredentialsName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "rememberUserCredentials", + "booleanActions": 2, + "policyType": 89, + "enabled": true + }, + { + "dataType": 12, + "category": 120, + "nameResourceKey": "vPNPolicyCustomXMLName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "customXml", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "vpn", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 16, + "category": 120, + "nameResourceKey": "vPNWipOrAppsName", + "descriptionResourceKey": "vPNWipOrAppsDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "value": 0, + "enabled": true + }, + { + "nameResourceKey": "wipOption", + "value": 1, + "children": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "wipName", + "descriptionResourceKey": "wipDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "windowsInformationProtectionDomain", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + }, + { + "nameResourceKey": "associateAppsOption", + "value": 2, + "children": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyOnlyTheseAppsCanUseVPNName", + "descriptionResourceKey": "vPNPolicyOnlyTheseAppsCanUseVPNDescription", + "childSettings": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "appIdentifierName", + "descriptionResourceKey": "appIdentifierDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identifier", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 16, + "category": 120, + "nameResourceKey": "eDPPolicyNetworkLocationsListTypeName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "enabled": true + }, + { + "nameResourceKey": "desktopOption", + "value": "desktop", + "enabled": true + }, + { + "nameResourceKey": "universalOption", + "value": "universal", + "enabled": true + } + ], + "entityKey": "appType", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyAssociatedAppsName", + "descriptionResourceKey": "vPNPolicyAssociatedAppsDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "associatedApps", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "onlyAssociatedAppsCanUseConnection", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + } + ], + "entityKey": "syntheticWipOrApps", + "booleanActions": 0, + "defaultValue": 0, + "unconfiguredValue": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "ruleName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 16, + "category": 120, + "nameResourceKey": "trafficRuleRoutingPolicyTypeName", + "descriptionResourceKey": "trafficRuleRoutingPolicyTypeDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "noneOption", + "value": "none", + "enabled": true + }, + { + "nameResourceKey": "splitTunnelOption", + "value": "splitTunnel", + "enabled": true + }, + { + "nameResourceKey": "forceTunnelOption", + "value": "forceTunnel", + "enabled": true + } + ], + "entityKey": "routingPolicyType", + "booleanActions": 0, + "defaultValue": "none", + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "protocolsName", + "descriptionResourceKey": "empty", + "childSettings": [ + { + "columns": [ + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "lowerPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "upperPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "localPortRangesName", + "descriptionResourceKey": "localPortRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "localPortRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "lowerPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "upperPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "remotePortRangesName", + "descriptionResourceKey": "remotePortRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "remotePortRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + + ], + "entityKey": "protocols", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "trafficRuleAppName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "appId", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 16, + "category": 120, + "nameResourceKey": "trafficRuleAppTypeName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "desktopOption", + "value": "desktop", + "enabled": true + }, + { + "nameResourceKey": "universalOption", + "value": "universal", + "enabled": true + } + ], + "entityKey": "appType", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "lowerIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "upperIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "localAddressRangesName", + "descriptionResourceKey": "localAddressRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "localAddressRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "lowerIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "upperIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "remoteAddressRangesName", + "descriptionResourceKey": "remoteAddressRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "remoteAddressRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyNetworkTrafficRulesName", + "descriptionResourceKey": "vPNPolicyNetworkTrafficRulesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trafficRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "AppsAndTrafficRules", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "enableConditionalAccessName", + "descriptionResourceKey": "enableConditionalAccessDescription", + "childSettings": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "enableSingleSignOnName", + "descriptionResourceKey": "enableSingleSignOnDescription", + "childSettings": [ + { + "complexOptions": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "eDPPolicyAppsListNameName", + "descriptionResourceKey": "eDPPolicyAppsListNameDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 20, + "category": 120, + "nameResourceKey": "sCEPPolicyObjectIdentifierColumnName", + "descriptionResourceKey": "sCEPPolicyObjectIdentifierColumnDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "objectIdentifier", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 6, + "category": 120, + "nameResourceKey": "sCEPPolicyExtendedKeyUsageName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "singleSignOnEku", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 20, + "category": 120, + "nameResourceKey": "issuerHashName", + "descriptionResourceKey": "issuerHashDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "singleSignOnIssuerHash", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableSingleSignOnWithAlternateCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableConditionalAccess", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "ConditionalAccess", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyDNSSuffixesName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "dNSSuffixExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyDNSSuffixSearchListName", + "descriptionResourceKey": "vPNPolicyDNSSuffixSearchListDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsSuffixes", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSName", + "descriptionResourceKey": "dNSNameDescription1809", + "emptyValueResourceKey": "dNSNameExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "dNSServerDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "enterOnlyOneForDns", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "proxy", + "descriptionResourceKey": "vPNProxyDescription1809", + "emptyValueResourceKey": "proxyDNSExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServerUri", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNDnsAutoTriggerName", + "descriptionResourceKey": "vPNDnsAutoTriggerDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enabledOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "notConfigured", + "value": false, + "enabled": true + } + ], + "entityKey": "autoTrigger", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNDnsPersistentName", + "descriptionResourceKey": "vPNDnsPersistentDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enabledOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "notConfigured", + "value": false, + "enabled": true + } + ], + "entityKey": "persistent", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyNameResolutionPolicyTableRulesName", + "descriptionResourceKey": "vPNPolicyNameResolutionPolicyTableRulesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "vPNPolicyNameResolutionPolicyTableRulesName", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSName", + "descriptionResourceKey": "dNSNameDescription1809", + "emptyValueResourceKey": "dNSNameExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "enterOnlyOneForDns", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "dNSServerDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "proxy", + "descriptionResourceKey": "vPNProxyDescription1809", + "emptyValueResourceKey": "proxyDNSExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServerUri", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyNameResolutionPolicyTableRulesName", + "descriptionResourceKey": "vPNPolicyNameResolutionPolicyTableRulesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": false + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSName", + "descriptionResourceKey": "dNSNameDescription", + "emptyValueResourceKey": "dNSNameExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "enterOnlyOneForDns", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "dNSServerDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "proxy", + "emptyValueResourceKey": "proxyDNSExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServerUri", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyDNSNamesAndServersName", + "descriptionResourceKey": "vPNPolicyDNSNamesAndServersName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": false + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "DNSSettings", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "vPNPolicyUseProxyServerName", + "descriptionResourceKey": "vPNPolicyUseProxyServerDescription", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyAutomaticConfigurationScriptName", + "descriptionResourceKey": "vPNPolicyAutomaticConfigurationScriptDescription", + "emptyValueResourceKey": "vPNScriptExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "automaticConfigurationScriptUrl", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyAddressName", + "descriptionResourceKey": "vPNPolicyAddressDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "address", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 14, + "category": 120, + "nameResourceKey": "vPNPolicyPortNumberName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "port", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 16, + "category": 120, + "nameResourceKey": "vPNPolicyBypassProxySettingsForLocalAddressesName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "enabled": true + }, + { + "nameResourceKey": "enableOption", + "value": "true", + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": "false", + "enabled": true + } + ], + "entityKey": "bypassProxyServerForLocalAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 6, + "category": 120, + "nameResourceKey": "vPNPolicyUseProxyServerName", + "descriptionResourceKey": "vPNPolicyUseProxyServerDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServer", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "Proxy", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicySendAllNetworkTrafficThroughVPNName", + "descriptionResourceKey": "vPNPolicySendAllNetworkTrafficThroughVPNDescription", + "childSettings": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyDestinationPrefixName", + "descriptionResourceKey": "vPNPolicyDestinationPrefixName", + "emptyValueResourceKey": "proxyAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "destinationPrefix", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "vPNPolicyPrefixSizeName", + "descriptionResourceKey": "vPNPolicyPrefixSizeName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "prefixSize", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyRoutesForThisConnectionName", + "descriptionResourceKey": "vPNPolicyRoutesForThisConnectionDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "routes", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableSplitTunneling", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "VPNPolicySendAllNetworkTrafficThroughVPNName", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyTrustedNetworkDomainColumnName", + "descriptionResourceKey": "", + "emptyValueResourceKey": "VPNPolicyTrustedNetworkDomainExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trustedNetworkDomains", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyTrustedNetworkDomainName", + "descriptionResourceKey": "vPNPolicyTrustedNetworkDomainDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trustedNetworkDomains", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "VPNPolicyTrustedNetworkDetectionEnabledName", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + }, + { + "nameResourceKey": "fFiveEdgeClientOption", + "value": "f5EdgeClient", + "children": [ + { + "complexOptions": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyConnectionName", + "descriptionResourceKey": "vPNPolicyConnectionDescription", + "emptyValueResourceKey": "vPNConnectionExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "connectionName", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyServerDescriptionName", + "descriptionResourceKey": "vPNPolicyServerDescriptionDescription", + "emptyValueResourceKey": "vPNServerExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "description", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyServerIPAddressOrFQDNName", + "descriptionResourceKey": "vPNPolicyServerIPAddressOrFQDNDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "address", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyDefaultServerName", + "descriptionResourceKey": "vPNPolicyDefaultServerDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "trueOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "falseOption", + "value": false, + "enabled": true + } + ], + "entityKey": "isDefaultServer", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyServersName", + "descriptionResourceKey": "vPNPolicyServersDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyDNSRegistrationName", + "descriptionResourceKey": "vPNPolicyDNSRegistrationDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableDnsRegistration", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + }, + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyEnableAlwaysOnName", + "descriptionResourceKey": "vPNPolicyEnableAlwaysOnDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableAlwaysOn", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + }, + { + "dataType": 16, + "category": 120, + "nameResourceKey": "authenticationMethodName", + "descriptionResourceKey": "vPNAuthMethodDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "selectAnAuthenticationMethod", + "enabled": true + }, + { + "nameResourceKey": "certificatesOption", + "value": "certificate", + "children": [ + { + "complexOptions": [ + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": false + }, + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": false + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "authenticationCertificate", + "descriptionResourceKey": "clientCertForClientAuthenticationDescription", + "emptyValueResourceKey": "selectCertificate", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + }, + { + "nameResourceKey": "usernameAndPasswordOption", + "value": "usernameAndPassword", + "enabled": true + }, + { + "nameResourceKey": "derivedCredentialsOption", + "value": "derivedCredential", + "children": [ + { + "dataType": 9, + "category": 120, + "childSettings": [ + { + "dataType": 10, + "category": 120, + "nameResourceKey": "derivedCredentialsSearchingForTenantLevel", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 10, + "category": 120, + "nameResourceKey": "derivedCredentialsTenantLevelNotConfigured", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + + ], + "entityKey": "derivedCredentialSettings@odata.bind", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": false + } + ], + "entityKey": "authenticationMethod", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 0, + "category": 120, + "nameResourceKey": "vPNPolicyRememberCredentialsName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "rememberUserCredentials", + "booleanActions": 2, + "policyType": 89, + "enabled": true + }, + { + "dataType": 12, + "category": 120, + "nameResourceKey": "vPNPolicyCustomXMLName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "customXml", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "vpn", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 16, + "category": 120, + "nameResourceKey": "vPNWipOrAppsName", + "descriptionResourceKey": "vPNWipOrAppsDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "value": 0, + "enabled": true + }, + { + "nameResourceKey": "wipOption", + "value": 1, + "children": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "wipName", + "descriptionResourceKey": "wipDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "windowsInformationProtectionDomain", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + }, + { + "nameResourceKey": "associateAppsOption", + "value": 2, + "children": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyOnlyTheseAppsCanUseVPNName", + "descriptionResourceKey": "vPNPolicyOnlyTheseAppsCanUseVPNDescription", + "childSettings": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "appIdentifierName", + "descriptionResourceKey": "appIdentifierDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identifier", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 16, + "category": 120, + "nameResourceKey": "eDPPolicyNetworkLocationsListTypeName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "enabled": true + }, + { + "nameResourceKey": "desktopOption", + "value": "desktop", + "enabled": true + }, + { + "nameResourceKey": "universalOption", + "value": "universal", + "enabled": true + } + ], + "entityKey": "appType", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyAssociatedAppsName", + "descriptionResourceKey": "vPNPolicyAssociatedAppsDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "associatedApps", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "onlyAssociatedAppsCanUseConnection", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + } + ], + "entityKey": "syntheticWipOrApps", + "booleanActions": 0, + "defaultValue": 0, + "unconfiguredValue": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "ruleName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 16, + "category": 120, + "nameResourceKey": "trafficRuleRoutingPolicyTypeName", + "descriptionResourceKey": "trafficRuleRoutingPolicyTypeDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "noneOption", + "value": "none", + "enabled": true + }, + { + "nameResourceKey": "splitTunnelOption", + "value": "splitTunnel", + "enabled": true + }, + { + "nameResourceKey": "forceTunnelOption", + "value": "forceTunnel", + "enabled": true + } + ], + "entityKey": "routingPolicyType", + "booleanActions": 0, + "defaultValue": "none", + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "protocolsName", + "descriptionResourceKey": "empty", + "childSettings": [ + { + "columns": [ + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "lowerPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "upperPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "localPortRangesName", + "descriptionResourceKey": "localPortRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "localPortRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "lowerPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "upperPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "remotePortRangesName", + "descriptionResourceKey": "remotePortRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "remotePortRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + + ], + "entityKey": "protocols", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "trafficRuleAppName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "appId", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 16, + "category": 120, + "nameResourceKey": "trafficRuleAppTypeName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "desktopOption", + "value": "desktop", + "enabled": true + }, + { + "nameResourceKey": "universalOption", + "value": "universal", + "enabled": true + } + ], + "entityKey": "appType", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "lowerIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "upperIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "localAddressRangesName", + "descriptionResourceKey": "localAddressRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "localAddressRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "lowerIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "upperIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "remoteAddressRangesName", + "descriptionResourceKey": "remoteAddressRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "remoteAddressRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyNetworkTrafficRulesName", + "descriptionResourceKey": "vPNPolicyNetworkTrafficRulesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trafficRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "AppsAndTrafficRules", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "enableConditionalAccessName", + "descriptionResourceKey": "enableConditionalAccessDescription", + "childSettings": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "enableSingleSignOnName", + "descriptionResourceKey": "enableSingleSignOnDescription", + "childSettings": [ + { + "complexOptions": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "eDPPolicyAppsListNameName", + "descriptionResourceKey": "eDPPolicyAppsListNameDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 20, + "category": 120, + "nameResourceKey": "sCEPPolicyObjectIdentifierColumnName", + "descriptionResourceKey": "sCEPPolicyObjectIdentifierColumnDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "objectIdentifier", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 6, + "category": 120, + "nameResourceKey": "sCEPPolicyExtendedKeyUsageName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "singleSignOnEku", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 20, + "category": 120, + "nameResourceKey": "issuerHashName", + "descriptionResourceKey": "issuerHashDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "singleSignOnIssuerHash", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableSingleSignOnWithAlternateCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableConditionalAccess", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "ConditionalAccess", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyDNSSuffixesName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "dNSSuffixExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyDNSSuffixSearchListName", + "descriptionResourceKey": "vPNPolicyDNSSuffixSearchListDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsSuffixes", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSName", + "descriptionResourceKey": "dNSNameDescription1809", + "emptyValueResourceKey": "dNSNameExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "dNSServerDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "enterOnlyOneForDns", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "proxy", + "descriptionResourceKey": "vPNProxyDescription1809", + "emptyValueResourceKey": "proxyDNSExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServerUri", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNDnsAutoTriggerName", + "descriptionResourceKey": "vPNDnsAutoTriggerDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enabledOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "notConfigured", + "value": false, + "enabled": true + } + ], + "entityKey": "autoTrigger", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNDnsPersistentName", + "descriptionResourceKey": "vPNDnsPersistentDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enabledOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "notConfigured", + "value": false, + "enabled": true + } + ], + "entityKey": "persistent", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyNameResolutionPolicyTableRulesName", + "descriptionResourceKey": "vPNPolicyNameResolutionPolicyTableRulesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "vPNPolicyNameResolutionPolicyTableRulesName", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSName", + "descriptionResourceKey": "dNSNameDescription1809", + "emptyValueResourceKey": "dNSNameExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "enterOnlyOneForDns", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "dNSServerDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "proxy", + "descriptionResourceKey": "vPNProxyDescription1809", + "emptyValueResourceKey": "proxyDNSExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServerUri", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyNameResolutionPolicyTableRulesName", + "descriptionResourceKey": "vPNPolicyNameResolutionPolicyTableRulesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": false + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSName", + "descriptionResourceKey": "dNSNameDescription", + "emptyValueResourceKey": "dNSNameExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "enterOnlyOneForDns", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "dNSServerDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "proxy", + "emptyValueResourceKey": "proxyDNSExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServerUri", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyDNSNamesAndServersName", + "descriptionResourceKey": "vPNPolicyDNSNamesAndServersName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": false + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "DNSSettings", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "vPNPolicyUseProxyServerName", + "descriptionResourceKey": "vPNPolicyUseProxyServerDescription", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyAutomaticConfigurationScriptName", + "descriptionResourceKey": "vPNPolicyAutomaticConfigurationScriptDescription", + "emptyValueResourceKey": "vPNScriptExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "automaticConfigurationScriptUrl", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyAddressName", + "descriptionResourceKey": "vPNPolicyAddressDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "address", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 14, + "category": 120, + "nameResourceKey": "vPNPolicyPortNumberName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "port", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 16, + "category": 120, + "nameResourceKey": "vPNPolicyBypassProxySettingsForLocalAddressesName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "enabled": true + }, + { + "nameResourceKey": "enableOption", + "value": "true", + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": "false", + "enabled": true + } + ], + "entityKey": "bypassProxyServerForLocalAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 6, + "category": 120, + "nameResourceKey": "vPNPolicyUseProxyServerName", + "descriptionResourceKey": "vPNPolicyUseProxyServerDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServer", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "Proxy", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicySendAllNetworkTrafficThroughVPNName", + "descriptionResourceKey": "vPNPolicySendAllNetworkTrafficThroughVPNDescription", + "childSettings": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyDestinationPrefixName", + "descriptionResourceKey": "vPNPolicyDestinationPrefixName", + "emptyValueResourceKey": "proxyAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "destinationPrefix", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "vPNPolicyPrefixSizeName", + "descriptionResourceKey": "vPNPolicyPrefixSizeName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "prefixSize", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyRoutesForThisConnectionName", + "descriptionResourceKey": "vPNPolicyRoutesForThisConnectionDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "routes", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableSplitTunneling", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "VPNPolicySendAllNetworkTrafficThroughVPNName", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyTrustedNetworkDomainColumnName", + "descriptionResourceKey": "", + "emptyValueResourceKey": "VPNPolicyTrustedNetworkDomainExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trustedNetworkDomains", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyTrustedNetworkDomainName", + "descriptionResourceKey": "vPNPolicyTrustedNetworkDomainDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trustedNetworkDomains", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "VPNPolicyTrustedNetworkDetectionEnabledName", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + }, + { + "nameResourceKey": "MicrosoftTunnelForWindows", + "value": "microsoftTunnel", + "children": [ + { + "complexOptions": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyConnectionName", + "descriptionResourceKey": "vPNPolicyConnectionDescription", + "emptyValueResourceKey": "vPNConnectionExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "connectionName", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 26, + "category": 120, + "nameResourceKey": "changeMicrosoftTunnelSite", + "descriptionResourceKey": "microsoftTunnelSite", + "emptyValueResourceKey": "selectMicrosoftTunnelSite", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "microsoftTunnelSiteId", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "microsoftTunnelSite", + "descriptionResourceKey": "microsoftTunnelSiteDescription", + "emptyValueResourceKey": "selectMicrosoftTunnelSite", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyDNSRegistrationName", + "descriptionResourceKey": "vPNPolicyDNSRegistrationDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableDnsRegistration", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + }, + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyEnableAlwaysOnName", + "descriptionResourceKey": "vPNPolicyEnableAlwaysOnDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableAlwaysOn", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + }, + { + "dataType": 12, + "category": 120, + "nameResourceKey": "vPNPolicyCustomXMLName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "customXml", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "vpn", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 16, + "category": 120, + "nameResourceKey": "vPNWipOrAppsName", + "descriptionResourceKey": "vPNWipOrAppsDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "value": 0, + "enabled": true + }, + { + "nameResourceKey": "wipOption", + "value": 1, + "children": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "wipName", + "descriptionResourceKey": "wipDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "windowsInformationProtectionDomain", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + }, + { + "nameResourceKey": "associateAppsOption", + "value": 2, + "children": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyOnlyTheseAppsCanUseVPNName", + "descriptionResourceKey": "vPNPolicyOnlyTheseAppsCanUseVPNDescription", + "childSettings": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "appIdentifierName", + "descriptionResourceKey": "appIdentifierDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identifier", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 16, + "category": 120, + "nameResourceKey": "eDPPolicyNetworkLocationsListTypeName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "enabled": true + }, + { + "nameResourceKey": "desktopOption", + "value": "desktop", + "enabled": true + }, + { + "nameResourceKey": "universalOption", + "value": "universal", + "enabled": true + } + ], + "entityKey": "appType", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyAssociatedAppsName", + "descriptionResourceKey": "vPNPolicyAssociatedAppsDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "associatedApps", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "onlyAssociatedAppsCanUseConnection", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + } + ], + "entityKey": "syntheticWipOrApps", + "booleanActions": 0, + "defaultValue": 0, + "unconfiguredValue": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "AppsAndTrafficRules", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "vPNPolicyUseProxyServerName", + "descriptionResourceKey": "vPNPolicyUseProxyServerDescription", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyAutomaticConfigurationScriptName", + "descriptionResourceKey": "vPNPolicyAutomaticConfigurationScriptDescription", + "emptyValueResourceKey": "vPNScriptExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "automaticConfigurationScriptUrl", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyAddressName", + "descriptionResourceKey": "vPNPolicyAddressDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "address", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 14, + "category": 120, + "nameResourceKey": "vPNPolicyPortNumberName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "port", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 16, + "category": 120, + "nameResourceKey": "vPNPolicyBypassProxySettingsForLocalAddressesName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "enabled": true + }, + { + "nameResourceKey": "enableOption", + "value": "true", + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": "false", + "enabled": true + } + ], + "entityKey": "bypassProxyServerForLocalAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 6, + "category": 120, + "nameResourceKey": "vPNPolicyUseProxyServerName", + "descriptionResourceKey": "vPNPolicyUseProxyServerDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServer", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "Proxy", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyTrustedNetworkDomainColumnName", + "descriptionResourceKey": "", + "emptyValueResourceKey": "VPNPolicyTrustedNetworkDomainExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trustedNetworkDomains", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyTrustedNetworkDomainName", + "descriptionResourceKey": "vPNPolicyTrustedNetworkDomainDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trustedNetworkDomains", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "VPNPolicyTrustedNetworkDetectionEnabledName", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": false + }, + { + "nameResourceKey": "paloAltoGlobalProtectOption", + "value": "paloAltoGlobalProtect", + "children": [ + { + "complexOptions": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyConnectionName", + "descriptionResourceKey": "vPNPolicyConnectionDescription", + "emptyValueResourceKey": "vPNConnectionExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "connectionName", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyServerDescriptionName", + "descriptionResourceKey": "vPNPolicyServerDescriptionDescription", + "emptyValueResourceKey": "vPNServerExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "description", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyServerIPAddressOrFQDNName", + "descriptionResourceKey": "vPNPolicyServerIPAddressOrFQDNDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "address", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyDefaultServerName", + "descriptionResourceKey": "vPNPolicyDefaultServerDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "trueOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "falseOption", + "value": false, + "enabled": true + } + ], + "entityKey": "isDefaultServer", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyServersName", + "descriptionResourceKey": "vPNPolicyServersDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyDNSRegistrationName", + "descriptionResourceKey": "vPNPolicyDNSRegistrationDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableDnsRegistration", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + }, + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyEnableAlwaysOnName", + "descriptionResourceKey": "vPNPolicyEnableAlwaysOnDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableAlwaysOn", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + }, + { + "dataType": 16, + "category": 120, + "nameResourceKey": "authenticationMethodName", + "descriptionResourceKey": "vPNAuthMethodDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "selectAnAuthenticationMethod", + "enabled": true + }, + { + "nameResourceKey": "certificatesOption", + "value": "certificate", + "children": [ + { + "complexOptions": [ + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": false + }, + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": false + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "authenticationCertificate", + "descriptionResourceKey": "clientCertForClientAuthenticationDescription", + "emptyValueResourceKey": "selectCertificate", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + }, + { + "nameResourceKey": "usernameAndPasswordOption", + "value": "usernameAndPassword", + "enabled": true + }, + { + "nameResourceKey": "derivedCredentialsOption", + "value": "derivedCredential", + "children": [ + { + "dataType": 9, + "category": 120, + "childSettings": [ + { + "dataType": 10, + "category": 120, + "nameResourceKey": "derivedCredentialsSearchingForTenantLevel", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 10, + "category": 120, + "nameResourceKey": "derivedCredentialsTenantLevelNotConfigured", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + + ], + "entityKey": "derivedCredentialSettings@odata.bind", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": false + } + ], + "entityKey": "authenticationMethod", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 0, + "category": 120, + "nameResourceKey": "vPNPolicyRememberCredentialsName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "rememberUserCredentials", + "booleanActions": 2, + "policyType": 89, + "enabled": true + }, + { + "dataType": 12, + "category": 120, + "nameResourceKey": "vPNPolicyCustomXMLName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "customXml", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "vpn", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 16, + "category": 120, + "nameResourceKey": "vPNWipOrAppsName", + "descriptionResourceKey": "vPNWipOrAppsDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "value": 0, + "enabled": true + }, + { + "nameResourceKey": "wipOption", + "value": 1, + "children": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "wipName", + "descriptionResourceKey": "wipDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "windowsInformationProtectionDomain", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + }, + { + "nameResourceKey": "associateAppsOption", + "value": 2, + "children": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyOnlyTheseAppsCanUseVPNName", + "descriptionResourceKey": "vPNPolicyOnlyTheseAppsCanUseVPNDescription", + "childSettings": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "appIdentifierName", + "descriptionResourceKey": "appIdentifierDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identifier", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 16, + "category": 120, + "nameResourceKey": "eDPPolicyNetworkLocationsListTypeName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "enabled": true + }, + { + "nameResourceKey": "desktopOption", + "value": "desktop", + "enabled": true + }, + { + "nameResourceKey": "universalOption", + "value": "universal", + "enabled": true + } + ], + "entityKey": "appType", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyAssociatedAppsName", + "descriptionResourceKey": "vPNPolicyAssociatedAppsDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "associatedApps", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "onlyAssociatedAppsCanUseConnection", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + } + ], + "entityKey": "syntheticWipOrApps", + "booleanActions": 0, + "defaultValue": 0, + "unconfiguredValue": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "ruleName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 16, + "category": 120, + "nameResourceKey": "trafficRuleRoutingPolicyTypeName", + "descriptionResourceKey": "trafficRuleRoutingPolicyTypeDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "noneOption", + "value": "none", + "enabled": true + }, + { + "nameResourceKey": "splitTunnelOption", + "value": "splitTunnel", + "enabled": true + }, + { + "nameResourceKey": "forceTunnelOption", + "value": "forceTunnel", + "enabled": true + } + ], + "entityKey": "routingPolicyType", + "booleanActions": 0, + "defaultValue": "none", + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "protocolsName", + "descriptionResourceKey": "empty", + "childSettings": [ + { + "columns": [ + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "lowerPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "upperPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "localPortRangesName", + "descriptionResourceKey": "localPortRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "localPortRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "lowerPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "upperPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "remotePortRangesName", + "descriptionResourceKey": "remotePortRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "remotePortRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + + ], + "entityKey": "protocols", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "trafficRuleAppName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "appId", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 16, + "category": 120, + "nameResourceKey": "trafficRuleAppTypeName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "desktopOption", + "value": "desktop", + "enabled": true + }, + { + "nameResourceKey": "universalOption", + "value": "universal", + "enabled": true + } + ], + "entityKey": "appType", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "lowerIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "upperIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "localAddressRangesName", + "descriptionResourceKey": "localAddressRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "localAddressRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "lowerIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "upperIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "remoteAddressRangesName", + "descriptionResourceKey": "remoteAddressRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "remoteAddressRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyNetworkTrafficRulesName", + "descriptionResourceKey": "vPNPolicyNetworkTrafficRulesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trafficRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "AppsAndTrafficRules", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "enableConditionalAccessName", + "descriptionResourceKey": "enableConditionalAccessDescription", + "childSettings": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "enableSingleSignOnName", + "descriptionResourceKey": "enableSingleSignOnDescription", + "childSettings": [ + { + "complexOptions": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "eDPPolicyAppsListNameName", + "descriptionResourceKey": "eDPPolicyAppsListNameDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 20, + "category": 120, + "nameResourceKey": "sCEPPolicyObjectIdentifierColumnName", + "descriptionResourceKey": "sCEPPolicyObjectIdentifierColumnDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "objectIdentifier", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 6, + "category": 120, + "nameResourceKey": "sCEPPolicyExtendedKeyUsageName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "singleSignOnEku", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 20, + "category": 120, + "nameResourceKey": "issuerHashName", + "descriptionResourceKey": "issuerHashDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "singleSignOnIssuerHash", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableSingleSignOnWithAlternateCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableConditionalAccess", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "ConditionalAccess", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyDNSSuffixesName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "dNSSuffixExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyDNSSuffixSearchListName", + "descriptionResourceKey": "vPNPolicyDNSSuffixSearchListDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsSuffixes", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSName", + "descriptionResourceKey": "dNSNameDescription1809", + "emptyValueResourceKey": "dNSNameExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "dNSServerDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "enterOnlyOneForDns", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "proxy", + "descriptionResourceKey": "vPNProxyDescription1809", + "emptyValueResourceKey": "proxyDNSExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServerUri", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNDnsAutoTriggerName", + "descriptionResourceKey": "vPNDnsAutoTriggerDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enabledOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "notConfigured", + "value": false, + "enabled": true + } + ], + "entityKey": "autoTrigger", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNDnsPersistentName", + "descriptionResourceKey": "vPNDnsPersistentDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enabledOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "notConfigured", + "value": false, + "enabled": true + } + ], + "entityKey": "persistent", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyNameResolutionPolicyTableRulesName", + "descriptionResourceKey": "vPNPolicyNameResolutionPolicyTableRulesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "vPNPolicyNameResolutionPolicyTableRulesName", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSName", + "descriptionResourceKey": "dNSNameDescription1809", + "emptyValueResourceKey": "dNSNameExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "enterOnlyOneForDns", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "dNSServerDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "proxy", + "descriptionResourceKey": "vPNProxyDescription1809", + "emptyValueResourceKey": "proxyDNSExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServerUri", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyNameResolutionPolicyTableRulesName", + "descriptionResourceKey": "vPNPolicyNameResolutionPolicyTableRulesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": false + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSName", + "descriptionResourceKey": "dNSNameDescription", + "emptyValueResourceKey": "dNSNameExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "enterOnlyOneForDns", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "dNSServerDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "proxy", + "emptyValueResourceKey": "proxyDNSExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServerUri", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyDNSNamesAndServersName", + "descriptionResourceKey": "vPNPolicyDNSNamesAndServersName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": false + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "DNSSettings", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "vPNPolicyUseProxyServerName", + "descriptionResourceKey": "vPNPolicyUseProxyServerDescription", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyAutomaticConfigurationScriptName", + "descriptionResourceKey": "vPNPolicyAutomaticConfigurationScriptDescription", + "emptyValueResourceKey": "vPNScriptExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "automaticConfigurationScriptUrl", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyAddressName", + "descriptionResourceKey": "vPNPolicyAddressDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "address", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 14, + "category": 120, + "nameResourceKey": "vPNPolicyPortNumberName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "port", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 16, + "category": 120, + "nameResourceKey": "vPNPolicyBypassProxySettingsForLocalAddressesName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "enabled": true + }, + { + "nameResourceKey": "enableOption", + "value": "true", + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": "false", + "enabled": true + } + ], + "entityKey": "bypassProxyServerForLocalAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 6, + "category": 120, + "nameResourceKey": "vPNPolicyUseProxyServerName", + "descriptionResourceKey": "vPNPolicyUseProxyServerDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServer", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "Proxy", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicySendAllNetworkTrafficThroughVPNName", + "descriptionResourceKey": "vPNPolicySendAllNetworkTrafficThroughVPNDescription", + "childSettings": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyDestinationPrefixName", + "descriptionResourceKey": "vPNPolicyDestinationPrefixName", + "emptyValueResourceKey": "proxyAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "destinationPrefix", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "vPNPolicyPrefixSizeName", + "descriptionResourceKey": "vPNPolicyPrefixSizeName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "prefixSize", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyRoutesForThisConnectionName", + "descriptionResourceKey": "vPNPolicyRoutesForThisConnectionDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "routes", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableSplitTunneling", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "VPNPolicySendAllNetworkTrafficThroughVPNName", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyTrustedNetworkDomainColumnName", + "descriptionResourceKey": "", + "emptyValueResourceKey": "VPNPolicyTrustedNetworkDomainExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trustedNetworkDomains", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyTrustedNetworkDomainName", + "descriptionResourceKey": "vPNPolicyTrustedNetworkDomainDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trustedNetworkDomains", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "VPNPolicyTrustedNetworkDetectionEnabledName", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + }, + { + "nameResourceKey": "pulseSecureOption", + "value": "pulseSecure", + "children": [ + { + "complexOptions": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyConnectionName", + "descriptionResourceKey": "vPNPolicyConnectionDescription", + "emptyValueResourceKey": "vPNConnectionExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "connectionName", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyServerDescriptionName", + "descriptionResourceKey": "vPNPolicyServerDescriptionDescription", + "emptyValueResourceKey": "vPNServerExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "description", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyServerIPAddressOrFQDNName", + "descriptionResourceKey": "vPNPolicyServerIPAddressOrFQDNDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "address", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyDefaultServerName", + "descriptionResourceKey": "vPNPolicyDefaultServerDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "trueOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "falseOption", + "value": false, + "enabled": true + } + ], + "entityKey": "isDefaultServer", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyServersName", + "descriptionResourceKey": "vPNPolicyServersDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyDNSRegistrationName", + "descriptionResourceKey": "vPNPolicyDNSRegistrationDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableDnsRegistration", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + }, + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyEnableAlwaysOnName", + "descriptionResourceKey": "vPNPolicyEnableAlwaysOnDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableAlwaysOn", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + }, + { + "dataType": 16, + "category": 120, + "nameResourceKey": "authenticationMethodName", + "descriptionResourceKey": "vPNAuthMethodDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "selectAnAuthenticationMethod", + "enabled": true + }, + { + "nameResourceKey": "certificatesOption", + "value": "certificate", + "children": [ + { + "complexOptions": [ + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": false + }, + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": false + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "authenticationCertificate", + "descriptionResourceKey": "clientCertForClientAuthenticationDescription", + "emptyValueResourceKey": "selectCertificate", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + }, + { + "nameResourceKey": "usernameAndPasswordOption", + "value": "usernameAndPassword", + "enabled": true + }, + { + "nameResourceKey": "derivedCredentialsOption", + "value": "derivedCredential", + "children": [ + { + "dataType": 9, + "category": 120, + "childSettings": [ + { + "dataType": 10, + "category": 120, + "nameResourceKey": "derivedCredentialsSearchingForTenantLevel", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 10, + "category": 120, + "nameResourceKey": "derivedCredentialsTenantLevelNotConfigured", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + + ], + "entityKey": "derivedCredentialSettings@odata.bind", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": false + } + ], + "entityKey": "authenticationMethod", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 0, + "category": 120, + "nameResourceKey": "vPNPolicyRememberCredentialsName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "rememberUserCredentials", + "booleanActions": 2, + "policyType": 89, + "enabled": true + }, + { + "dataType": 12, + "category": 120, + "nameResourceKey": "vPNPolicyCustomXMLName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "customXml", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "vpn", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 16, + "category": 120, + "nameResourceKey": "vPNWipOrAppsName", + "descriptionResourceKey": "vPNWipOrAppsDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "value": 0, + "enabled": true + }, + { + "nameResourceKey": "wipOption", + "value": 1, + "children": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "wipName", + "descriptionResourceKey": "wipDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "windowsInformationProtectionDomain", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + }, + { + "nameResourceKey": "associateAppsOption", + "value": 2, + "children": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyOnlyTheseAppsCanUseVPNName", + "descriptionResourceKey": "vPNPolicyOnlyTheseAppsCanUseVPNDescription", + "childSettings": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "appIdentifierName", + "descriptionResourceKey": "appIdentifierDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identifier", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 16, + "category": 120, + "nameResourceKey": "eDPPolicyNetworkLocationsListTypeName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "enabled": true + }, + { + "nameResourceKey": "desktopOption", + "value": "desktop", + "enabled": true + }, + { + "nameResourceKey": "universalOption", + "value": "universal", + "enabled": true + } + ], + "entityKey": "appType", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyAssociatedAppsName", + "descriptionResourceKey": "vPNPolicyAssociatedAppsDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "associatedApps", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "onlyAssociatedAppsCanUseConnection", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + } + ], + "entityKey": "syntheticWipOrApps", + "booleanActions": 0, + "defaultValue": 0, + "unconfiguredValue": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "ruleName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 16, + "category": 120, + "nameResourceKey": "trafficRuleRoutingPolicyTypeName", + "descriptionResourceKey": "trafficRuleRoutingPolicyTypeDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "noneOption", + "value": "none", + "enabled": true + }, + { + "nameResourceKey": "splitTunnelOption", + "value": "splitTunnel", + "enabled": true + }, + { + "nameResourceKey": "forceTunnelOption", + "value": "forceTunnel", + "enabled": true + } + ], + "entityKey": "routingPolicyType", + "booleanActions": 0, + "defaultValue": "none", + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "protocolsName", + "descriptionResourceKey": "empty", + "childSettings": [ + { + "columns": [ + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "lowerPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "upperPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "localPortRangesName", + "descriptionResourceKey": "localPortRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "localPortRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "lowerPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "upperPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "remotePortRangesName", + "descriptionResourceKey": "remotePortRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "remotePortRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + + ], + "entityKey": "protocols", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "trafficRuleAppName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "appId", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 16, + "category": 120, + "nameResourceKey": "trafficRuleAppTypeName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "desktopOption", + "value": "desktop", + "enabled": true + }, + { + "nameResourceKey": "universalOption", + "value": "universal", + "enabled": true + } + ], + "entityKey": "appType", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "lowerIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "upperIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "localAddressRangesName", + "descriptionResourceKey": "localAddressRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "localAddressRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "lowerIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "upperIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "remoteAddressRangesName", + "descriptionResourceKey": "remoteAddressRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "remoteAddressRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyNetworkTrafficRulesName", + "descriptionResourceKey": "vPNPolicyNetworkTrafficRulesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trafficRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "AppsAndTrafficRules", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "enableConditionalAccessName", + "descriptionResourceKey": "enableConditionalAccessDescription", + "childSettings": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "enableSingleSignOnName", + "descriptionResourceKey": "enableSingleSignOnDescription", + "childSettings": [ + { + "complexOptions": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "eDPPolicyAppsListNameName", + "descriptionResourceKey": "eDPPolicyAppsListNameDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 20, + "category": 120, + "nameResourceKey": "sCEPPolicyObjectIdentifierColumnName", + "descriptionResourceKey": "sCEPPolicyObjectIdentifierColumnDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "objectIdentifier", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 6, + "category": 120, + "nameResourceKey": "sCEPPolicyExtendedKeyUsageName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "singleSignOnEku", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 20, + "category": 120, + "nameResourceKey": "issuerHashName", + "descriptionResourceKey": "issuerHashDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "singleSignOnIssuerHash", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableSingleSignOnWithAlternateCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableConditionalAccess", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "ConditionalAccess", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyDNSSuffixesName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "dNSSuffixExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyDNSSuffixSearchListName", + "descriptionResourceKey": "vPNPolicyDNSSuffixSearchListDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsSuffixes", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSName", + "descriptionResourceKey": "dNSNameDescription1809", + "emptyValueResourceKey": "dNSNameExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "dNSServerDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "enterOnlyOneForDns", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "proxy", + "descriptionResourceKey": "vPNProxyDescription1809", + "emptyValueResourceKey": "proxyDNSExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServerUri", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNDnsAutoTriggerName", + "descriptionResourceKey": "vPNDnsAutoTriggerDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enabledOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "notConfigured", + "value": false, + "enabled": true + } + ], + "entityKey": "autoTrigger", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNDnsPersistentName", + "descriptionResourceKey": "vPNDnsPersistentDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enabledOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "notConfigured", + "value": false, + "enabled": true + } + ], + "entityKey": "persistent", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyNameResolutionPolicyTableRulesName", + "descriptionResourceKey": "vPNPolicyNameResolutionPolicyTableRulesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "vPNPolicyNameResolutionPolicyTableRulesName", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSName", + "descriptionResourceKey": "dNSNameDescription1809", + "emptyValueResourceKey": "dNSNameExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "enterOnlyOneForDns", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "dNSServerDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "proxy", + "descriptionResourceKey": "vPNProxyDescription1809", + "emptyValueResourceKey": "proxyDNSExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServerUri", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyNameResolutionPolicyTableRulesName", + "descriptionResourceKey": "vPNPolicyNameResolutionPolicyTableRulesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": false + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSName", + "descriptionResourceKey": "dNSNameDescription", + "emptyValueResourceKey": "dNSNameExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "enterOnlyOneForDns", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "dNSServerDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "proxy", + "emptyValueResourceKey": "proxyDNSExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServerUri", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyDNSNamesAndServersName", + "descriptionResourceKey": "vPNPolicyDNSNamesAndServersName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": false + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "DNSSettings", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "vPNPolicyUseProxyServerName", + "descriptionResourceKey": "vPNPolicyUseProxyServerDescription", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyAutomaticConfigurationScriptName", + "descriptionResourceKey": "vPNPolicyAutomaticConfigurationScriptDescription", + "emptyValueResourceKey": "vPNScriptExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "automaticConfigurationScriptUrl", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyAddressName", + "descriptionResourceKey": "vPNPolicyAddressDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "address", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 14, + "category": 120, + "nameResourceKey": "vPNPolicyPortNumberName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "port", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 16, + "category": 120, + "nameResourceKey": "vPNPolicyBypassProxySettingsForLocalAddressesName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "enabled": true + }, + { + "nameResourceKey": "enableOption", + "value": "true", + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": "false", + "enabled": true + } + ], + "entityKey": "bypassProxyServerForLocalAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 6, + "category": 120, + "nameResourceKey": "vPNPolicyUseProxyServerName", + "descriptionResourceKey": "vPNPolicyUseProxyServerDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServer", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "Proxy", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicySendAllNetworkTrafficThroughVPNName", + "descriptionResourceKey": "vPNPolicySendAllNetworkTrafficThroughVPNDescription", + "childSettings": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyDestinationPrefixName", + "descriptionResourceKey": "vPNPolicyDestinationPrefixName", + "emptyValueResourceKey": "proxyAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "destinationPrefix", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "vPNPolicyPrefixSizeName", + "descriptionResourceKey": "vPNPolicyPrefixSizeName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "prefixSize", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyRoutesForThisConnectionName", + "descriptionResourceKey": "vPNPolicyRoutesForThisConnectionDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "routes", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableSplitTunneling", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "VPNPolicySendAllNetworkTrafficThroughVPNName", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyTrustedNetworkDomainColumnName", + "descriptionResourceKey": "", + "emptyValueResourceKey": "VPNPolicyTrustedNetworkDomainExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trustedNetworkDomains", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyTrustedNetworkDomainName", + "descriptionResourceKey": "vPNPolicyTrustedNetworkDomainDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trustedNetworkDomains", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "VPNPolicyTrustedNetworkDetectionEnabledName", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + }, + { + "nameResourceKey": "dellSoniceWallMobileConnectOption", + "value": "dellSonicWallMobileConnect", + "children": [ + { + "complexOptions": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyConnectionName", + "descriptionResourceKey": "vPNPolicyConnectionDescription", + "emptyValueResourceKey": "vPNConnectionExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "connectionName", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyServerDescriptionName", + "descriptionResourceKey": "vPNPolicyServerDescriptionDescription", + "emptyValueResourceKey": "vPNServerExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "description", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyServerIPAddressOrFQDNName", + "descriptionResourceKey": "vPNPolicyServerIPAddressOrFQDNDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "address", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyDefaultServerName", + "descriptionResourceKey": "vPNPolicyDefaultServerDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "trueOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "falseOption", + "value": false, + "enabled": true + } + ], + "entityKey": "isDefaultServer", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyServersName", + "descriptionResourceKey": "vPNPolicyServersDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyDNSRegistrationName", + "descriptionResourceKey": "vPNPolicyDNSRegistrationDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableDnsRegistration", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + }, + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyEnableAlwaysOnName", + "descriptionResourceKey": "vPNPolicyEnableAlwaysOnDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableAlwaysOn", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + }, + { + "dataType": 16, + "category": 120, + "nameResourceKey": "authenticationMethodName", + "descriptionResourceKey": "vPNAuthMethodDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "selectAnAuthenticationMethod", + "enabled": true + }, + { + "nameResourceKey": "certificatesOption", + "value": "certificate", + "children": [ + { + "complexOptions": [ + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": false + }, + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": false + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "authenticationCertificate", + "descriptionResourceKey": "clientCertForClientAuthenticationDescription", + "emptyValueResourceKey": "selectCertificate", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + }, + { + "nameResourceKey": "usernameAndPasswordOption", + "value": "usernameAndPassword", + "enabled": true + }, + { + "nameResourceKey": "derivedCredentialsOption", + "value": "derivedCredential", + "children": [ + { + "dataType": 9, + "category": 120, + "childSettings": [ + { + "dataType": 10, + "category": 120, + "nameResourceKey": "derivedCredentialsSearchingForTenantLevel", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 10, + "category": 120, + "nameResourceKey": "derivedCredentialsTenantLevelNotConfigured", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + + ], + "entityKey": "derivedCredentialSettings@odata.bind", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": false + } + ], + "entityKey": "authenticationMethod", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 0, + "category": 120, + "nameResourceKey": "vPNPolicyRememberCredentialsName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "rememberUserCredentials", + "booleanActions": 2, + "policyType": 89, + "enabled": true + }, + { + "dataType": 12, + "category": 120, + "nameResourceKey": "vPNPolicyCustomXMLName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "customXml", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "vpn", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 16, + "category": 120, + "nameResourceKey": "vPNWipOrAppsName", + "descriptionResourceKey": "vPNWipOrAppsDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "value": 0, + "enabled": true + }, + { + "nameResourceKey": "wipOption", + "value": 1, + "children": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "wipName", + "descriptionResourceKey": "wipDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "windowsInformationProtectionDomain", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + }, + { + "nameResourceKey": "associateAppsOption", + "value": 2, + "children": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyOnlyTheseAppsCanUseVPNName", + "descriptionResourceKey": "vPNPolicyOnlyTheseAppsCanUseVPNDescription", + "childSettings": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "appIdentifierName", + "descriptionResourceKey": "appIdentifierDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identifier", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 16, + "category": 120, + "nameResourceKey": "eDPPolicyNetworkLocationsListTypeName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "enabled": true + }, + { + "nameResourceKey": "desktopOption", + "value": "desktop", + "enabled": true + }, + { + "nameResourceKey": "universalOption", + "value": "universal", + "enabled": true + } + ], + "entityKey": "appType", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyAssociatedAppsName", + "descriptionResourceKey": "vPNPolicyAssociatedAppsDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "associatedApps", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "onlyAssociatedAppsCanUseConnection", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + } + ], + "entityKey": "syntheticWipOrApps", + "booleanActions": 0, + "defaultValue": 0, + "unconfiguredValue": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "ruleName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 16, + "category": 120, + "nameResourceKey": "trafficRuleRoutingPolicyTypeName", + "descriptionResourceKey": "trafficRuleRoutingPolicyTypeDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "noneOption", + "value": "none", + "enabled": true + }, + { + "nameResourceKey": "splitTunnelOption", + "value": "splitTunnel", + "enabled": true + }, + { + "nameResourceKey": "forceTunnelOption", + "value": "forceTunnel", + "enabled": true + } + ], + "entityKey": "routingPolicyType", + "booleanActions": 0, + "defaultValue": "none", + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "protocolsName", + "descriptionResourceKey": "empty", + "childSettings": [ + { + "columns": [ + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "lowerPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "upperPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "localPortRangesName", + "descriptionResourceKey": "localPortRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "localPortRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "lowerPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "upperPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "remotePortRangesName", + "descriptionResourceKey": "remotePortRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "remotePortRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + + ], + "entityKey": "protocols", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "trafficRuleAppName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "appId", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 16, + "category": 120, + "nameResourceKey": "trafficRuleAppTypeName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "desktopOption", + "value": "desktop", + "enabled": true + }, + { + "nameResourceKey": "universalOption", + "value": "universal", + "enabled": true + } + ], + "entityKey": "appType", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "lowerIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "upperIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "localAddressRangesName", + "descriptionResourceKey": "localAddressRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "localAddressRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "lowerIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "upperIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "remoteAddressRangesName", + "descriptionResourceKey": "remoteAddressRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "remoteAddressRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyNetworkTrafficRulesName", + "descriptionResourceKey": "vPNPolicyNetworkTrafficRulesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trafficRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "AppsAndTrafficRules", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "enableConditionalAccessName", + "descriptionResourceKey": "enableConditionalAccessDescription", + "childSettings": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "enableSingleSignOnName", + "descriptionResourceKey": "enableSingleSignOnDescription", + "childSettings": [ + { + "complexOptions": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "eDPPolicyAppsListNameName", + "descriptionResourceKey": "eDPPolicyAppsListNameDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 20, + "category": 120, + "nameResourceKey": "sCEPPolicyObjectIdentifierColumnName", + "descriptionResourceKey": "sCEPPolicyObjectIdentifierColumnDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "objectIdentifier", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 6, + "category": 120, + "nameResourceKey": "sCEPPolicyExtendedKeyUsageName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "singleSignOnEku", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 20, + "category": 120, + "nameResourceKey": "issuerHashName", + "descriptionResourceKey": "issuerHashDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "singleSignOnIssuerHash", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableSingleSignOnWithAlternateCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableConditionalAccess", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "ConditionalAccess", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyDNSSuffixesName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "dNSSuffixExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyDNSSuffixSearchListName", + "descriptionResourceKey": "vPNPolicyDNSSuffixSearchListDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsSuffixes", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSName", + "descriptionResourceKey": "dNSNameDescription1809", + "emptyValueResourceKey": "dNSNameExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "dNSServerDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "enterOnlyOneForDns", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "proxy", + "descriptionResourceKey": "vPNProxyDescription1809", + "emptyValueResourceKey": "proxyDNSExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServerUri", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNDnsAutoTriggerName", + "descriptionResourceKey": "vPNDnsAutoTriggerDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enabledOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "notConfigured", + "value": false, + "enabled": true + } + ], + "entityKey": "autoTrigger", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNDnsPersistentName", + "descriptionResourceKey": "vPNDnsPersistentDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enabledOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "notConfigured", + "value": false, + "enabled": true + } + ], + "entityKey": "persistent", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyNameResolutionPolicyTableRulesName", + "descriptionResourceKey": "vPNPolicyNameResolutionPolicyTableRulesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "vPNPolicyNameResolutionPolicyTableRulesName", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSName", + "descriptionResourceKey": "dNSNameDescription1809", + "emptyValueResourceKey": "dNSNameExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "enterOnlyOneForDns", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "dNSServerDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "proxy", + "descriptionResourceKey": "vPNProxyDescription1809", + "emptyValueResourceKey": "proxyDNSExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServerUri", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyNameResolutionPolicyTableRulesName", + "descriptionResourceKey": "vPNPolicyNameResolutionPolicyTableRulesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": false + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSName", + "descriptionResourceKey": "dNSNameDescription", + "emptyValueResourceKey": "dNSNameExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "enterOnlyOneForDns", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "dNSServerDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "proxy", + "emptyValueResourceKey": "proxyDNSExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServerUri", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyDNSNamesAndServersName", + "descriptionResourceKey": "vPNPolicyDNSNamesAndServersName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": false + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "DNSSettings", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "vPNPolicyUseProxyServerName", + "descriptionResourceKey": "vPNPolicyUseProxyServerDescription", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyAutomaticConfigurationScriptName", + "descriptionResourceKey": "vPNPolicyAutomaticConfigurationScriptDescription", + "emptyValueResourceKey": "vPNScriptExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "automaticConfigurationScriptUrl", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyAddressName", + "descriptionResourceKey": "vPNPolicyAddressDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "address", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 14, + "category": 120, + "nameResourceKey": "vPNPolicyPortNumberName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "port", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 16, + "category": 120, + "nameResourceKey": "vPNPolicyBypassProxySettingsForLocalAddressesName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "enabled": true + }, + { + "nameResourceKey": "enableOption", + "value": "true", + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": "false", + "enabled": true + } + ], + "entityKey": "bypassProxyServerForLocalAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 6, + "category": 120, + "nameResourceKey": "vPNPolicyUseProxyServerName", + "descriptionResourceKey": "vPNPolicyUseProxyServerDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServer", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "Proxy", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicySendAllNetworkTrafficThroughVPNName", + "descriptionResourceKey": "vPNPolicySendAllNetworkTrafficThroughVPNDescription", + "childSettings": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyDestinationPrefixName", + "descriptionResourceKey": "vPNPolicyDestinationPrefixName", + "emptyValueResourceKey": "proxyAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "destinationPrefix", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "vPNPolicyPrefixSizeName", + "descriptionResourceKey": "vPNPolicyPrefixSizeName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "prefixSize", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyRoutesForThisConnectionName", + "descriptionResourceKey": "vPNPolicyRoutesForThisConnectionDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "routes", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableSplitTunneling", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "VPNPolicySendAllNetworkTrafficThroughVPNName", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyTrustedNetworkDomainColumnName", + "descriptionResourceKey": "", + "emptyValueResourceKey": "VPNPolicyTrustedNetworkDomainExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trustedNetworkDomains", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyTrustedNetworkDomainName", + "descriptionResourceKey": "vPNPolicyTrustedNetworkDomainDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trustedNetworkDomains", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "VPNPolicyTrustedNetworkDetectionEnabledName", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + }, + { + "nameResourceKey": "automaticOptionNativeType", + "value": "automatic", + "children": [ + { + "complexOptions": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyConnectionName", + "descriptionResourceKey": "vPNPolicyConnectionDescription", + "emptyValueResourceKey": "vPNConnectionExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "connectionName", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyServerDescriptionName", + "descriptionResourceKey": "vPNPolicyServerDescriptionDescription", + "emptyValueResourceKey": "vPNServerExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "description", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyServerIPAddressOrFQDNName", + "descriptionResourceKey": "vPNPolicyServerIPAddressOrFQDNDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "address", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyDefaultServerName", + "descriptionResourceKey": "vPNPolicyDefaultServerDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "trueOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "falseOption", + "value": false, + "enabled": true + } + ], + "entityKey": "isDefaultServer", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyServersName", + "descriptionResourceKey": "vPNPolicyServersDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyDNSRegistrationName", + "descriptionResourceKey": "vPNPolicyDNSRegistrationDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableDnsRegistration", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + }, + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyEnableAlwaysOnName", + "descriptionResourceKey": "vPNPolicyEnableAlwaysOnDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableAlwaysOn", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + }, + { + "dataType": 0, + "category": 120, + "nameResourceKey": "vPNPolicyRememberCredentialsName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "rememberUserCredentials", + "booleanActions": 2, + "policyType": 89, + "enabled": true + }, + { + "dataType": 16, + "category": 120, + "nameResourceKey": "authenticationMethodName", + "descriptionResourceKey": "vPNAuthMethodDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "selectAnAuthenticationMethod", + "enabled": true + }, + { + "nameResourceKey": "certificatesOption", + "value": "customEapXml", + "children": [ + { + "complexOptions": [ + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "clientCertForEapXmlClientAuthenticationDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "authenticationCertificate", + "descriptionResourceKey": "clientCertForEapXmlClientAuthenticationDescription", + "emptyValueResourceKey": "selectCertificate", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + }, + { + "nameResourceKey": "derivedCredentialsOption", + "value": "derivedCredential", + "enabled": true + } + ], + "entityKey": "authenticationMethod", + "booleanActions": 0, + "policyType": 89, + "enabled": false + }, + { + "value": "customEapXml", + "dataType": 9, + "category": 120, + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "authenticationMethod", + "booleanActions": 0, + "policyType": 89, + "enabled": false + }, + { + "complexOptions": [ + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "clientCertForEapXmlClientAuthenticationDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "authenticationCertificate", + "descriptionResourceKey": "clientCertForEapXmlClientAuthenticationDescription", + "emptyValueResourceKey": "selectCertificate", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": false + }, + { + "dataType": 12, + "category": 120, + "nameResourceKey": "eAPXmlName", + "descriptionResourceKey": "vPNEAPXMLDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "eapXml", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "vpn", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 16, + "category": 120, + "nameResourceKey": "vPNWipOrAppsName", + "descriptionResourceKey": "vPNWipOrAppsDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "value": 0, + "enabled": true + }, + { + "nameResourceKey": "wipOption", + "value": 1, + "children": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "wipName", + "descriptionResourceKey": "wipDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "windowsInformationProtectionDomain", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + }, + { + "nameResourceKey": "associateAppsOption", + "value": 2, + "children": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyOnlyTheseAppsCanUseVPNName", + "descriptionResourceKey": "vPNPolicyOnlyTheseAppsCanUseVPNDescription", + "childSettings": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "appIdentifierName", + "descriptionResourceKey": "appIdentifierDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identifier", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 16, + "category": 120, + "nameResourceKey": "eDPPolicyNetworkLocationsListTypeName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "enabled": true + }, + { + "nameResourceKey": "desktopOption", + "value": "desktop", + "enabled": true + }, + { + "nameResourceKey": "universalOption", + "value": "universal", + "enabled": true + } + ], + "entityKey": "appType", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyAssociatedAppsName", + "descriptionResourceKey": "vPNPolicyAssociatedAppsDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "associatedApps", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "onlyAssociatedAppsCanUseConnection", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + } + ], + "entityKey": "syntheticWipOrApps", + "booleanActions": 0, + "defaultValue": 0, + "unconfiguredValue": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "ruleName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 16, + "category": 120, + "nameResourceKey": "trafficRuleRoutingPolicyTypeName", + "descriptionResourceKey": "trafficRuleRoutingPolicyTypeDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "noneOption", + "value": "none", + "enabled": true + }, + { + "nameResourceKey": "splitTunnelOption", + "value": "splitTunnel", + "enabled": true + }, + { + "nameResourceKey": "forceTunnelOption", + "value": "forceTunnel", + "enabled": true + } + ], + "entityKey": "routingPolicyType", + "booleanActions": 0, + "defaultValue": "none", + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "protocolsName", + "descriptionResourceKey": "empty", + "childSettings": [ + { + "columns": [ + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "lowerPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "upperPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "localPortRangesName", + "descriptionResourceKey": "localPortRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "localPortRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "lowerPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "upperPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "remotePortRangesName", + "descriptionResourceKey": "remotePortRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "remotePortRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + + ], + "entityKey": "protocols", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "trafficRuleAppName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "appId", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 16, + "category": 120, + "nameResourceKey": "trafficRuleAppTypeName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "desktopOption", + "value": "desktop", + "enabled": true + }, + { + "nameResourceKey": "universalOption", + "value": "universal", + "enabled": true + } + ], + "entityKey": "appType", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "lowerIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "upperIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "localAddressRangesName", + "descriptionResourceKey": "localAddressRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "localAddressRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "lowerIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "upperIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "remoteAddressRangesName", + "descriptionResourceKey": "remoteAddressRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "remoteAddressRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyNetworkTrafficRulesName", + "descriptionResourceKey": "vPNPolicyNetworkTrafficRulesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trafficRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "AppsAndTrafficRules", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "enableConditionalAccessName", + "descriptionResourceKey": "enableConditionalAccessDescription", + "childSettings": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "enableSingleSignOnName", + "descriptionResourceKey": "enableSingleSignOnDescription", + "childSettings": [ + { + "complexOptions": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "eDPPolicyAppsListNameName", + "descriptionResourceKey": "eDPPolicyAppsListNameDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 20, + "category": 120, + "nameResourceKey": "sCEPPolicyObjectIdentifierColumnName", + "descriptionResourceKey": "sCEPPolicyObjectIdentifierColumnDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "objectIdentifier", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 6, + "category": 120, + "nameResourceKey": "sCEPPolicyExtendedKeyUsageName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "singleSignOnEku", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 20, + "category": 120, + "nameResourceKey": "issuerHashName", + "descriptionResourceKey": "issuerHashDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "singleSignOnIssuerHash", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableSingleSignOnWithAlternateCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableConditionalAccess", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "ConditionalAccess", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyDNSSuffixesName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "dNSSuffixExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyDNSSuffixSearchListName", + "descriptionResourceKey": "vPNPolicyDNSSuffixSearchListDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsSuffixes", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSName", + "descriptionResourceKey": "dNSNameDescription1809", + "emptyValueResourceKey": "dNSNameExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "dNSServerDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "enterOnlyOneForDns", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "proxy", + "descriptionResourceKey": "vPNProxyDescription1809", + "emptyValueResourceKey": "proxyDNSExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServerUri", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNDnsAutoTriggerName", + "descriptionResourceKey": "vPNDnsAutoTriggerDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enabledOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "notConfigured", + "value": false, + "enabled": true + } + ], + "entityKey": "autoTrigger", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNDnsPersistentName", + "descriptionResourceKey": "vPNDnsPersistentDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enabledOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "notConfigured", + "value": false, + "enabled": true + } + ], + "entityKey": "persistent", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyNameResolutionPolicyTableRulesName", + "descriptionResourceKey": "vPNPolicyNameResolutionPolicyTableRulesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "vPNPolicyNameResolutionPolicyTableRulesName", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSName", + "descriptionResourceKey": "dNSNameDescription1809", + "emptyValueResourceKey": "dNSNameExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "enterOnlyOneForDns", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "dNSServerDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "proxy", + "descriptionResourceKey": "vPNProxyDescription1809", + "emptyValueResourceKey": "proxyDNSExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServerUri", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyNameResolutionPolicyTableRulesName", + "descriptionResourceKey": "vPNPolicyNameResolutionPolicyTableRulesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": false + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSName", + "descriptionResourceKey": "dNSNameDescription", + "emptyValueResourceKey": "dNSNameExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "enterOnlyOneForDns", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "dNSServerDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "proxy", + "emptyValueResourceKey": "proxyDNSExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServerUri", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyDNSNamesAndServersName", + "descriptionResourceKey": "vPNPolicyDNSNamesAndServersName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": false + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "DNSSettings", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "vPNPolicyUseProxyServerName", + "descriptionResourceKey": "vPNPolicyUseProxyServerDescription", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyAutomaticConfigurationScriptName", + "descriptionResourceKey": "vPNPolicyAutomaticConfigurationScriptDescription", + "emptyValueResourceKey": "vPNScriptExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "automaticConfigurationScriptUrl", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyAddressName", + "descriptionResourceKey": "vPNPolicyAddressDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "address", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 14, + "category": 120, + "nameResourceKey": "vPNPolicyPortNumberName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "port", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 16, + "category": 120, + "nameResourceKey": "vPNPolicyBypassProxySettingsForLocalAddressesName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "enabled": true + }, + { + "nameResourceKey": "enableOption", + "value": "true", + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": "false", + "enabled": true + } + ], + "entityKey": "bypassProxyServerForLocalAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 6, + "category": 120, + "nameResourceKey": "vPNPolicyUseProxyServerName", + "descriptionResourceKey": "vPNPolicyUseProxyServerDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServer", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "Proxy", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicySendAllNetworkTrafficThroughVPNName", + "descriptionResourceKey": "vPNPolicySendAllNetworkTrafficThroughVPNDescription", + "childSettings": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyDestinationPrefixName", + "descriptionResourceKey": "vPNPolicyDestinationPrefixName", + "emptyValueResourceKey": "proxyAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "destinationPrefix", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "vPNPolicyPrefixSizeName", + "descriptionResourceKey": "vPNPolicyPrefixSizeName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "prefixSize", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyRoutesForThisConnectionName", + "descriptionResourceKey": "vPNPolicyRoutesForThisConnectionDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "routes", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableSplitTunneling", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "VPNPolicySendAllNetworkTrafficThroughVPNName", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyTrustedNetworkDomainColumnName", + "descriptionResourceKey": "", + "emptyValueResourceKey": "VPNPolicyTrustedNetworkDomainExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trustedNetworkDomains", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyTrustedNetworkDomainName", + "descriptionResourceKey": "vPNPolicyTrustedNetworkDomainDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trustedNetworkDomains", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "VPNPolicyTrustedNetworkDetectionEnabledName", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + }, + { + "nameResourceKey": "iKEOptionNativeType", + "value": "ikEv2", + "children": [ + { + "complexOptions": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyConnectionName", + "descriptionResourceKey": "vPNPolicyConnectionDescription", + "emptyValueResourceKey": "vPNConnectionExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "connectionName", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyServerDescriptionName", + "descriptionResourceKey": "vPNPolicyServerDescriptionDescription", + "emptyValueResourceKey": "vPNServerExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "description", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyServerIPAddressOrFQDNName", + "descriptionResourceKey": "vPNPolicyServerIPAddressOrFQDNDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "address", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyDefaultServerName", + "descriptionResourceKey": "vPNPolicyDefaultServerDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "trueOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "falseOption", + "value": false, + "enabled": true + } + ], + "entityKey": "isDefaultServer", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyServersName", + "descriptionResourceKey": "vPNPolicyServersDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyDNSRegistrationName", + "descriptionResourceKey": "vPNPolicyDNSRegistrationDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableDnsRegistration", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + }, + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyEnableAlwaysOnName", + "descriptionResourceKey": "vPNPolicyEnableAlwaysOnDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableAlwaysOn", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + }, + { + "dataType": 0, + "category": 120, + "nameResourceKey": "vPNPolicyRememberCredentialsName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "rememberUserCredentials", + "booleanActions": 2, + "policyType": 89, + "enabled": true + }, + { + "dataType": 16, + "category": 120, + "nameResourceKey": "authenticationMethodName", + "descriptionResourceKey": "authenticationMethodIKEv2Description", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "selectAnAuthenticationMethod", + "enabled": true + }, + { + "nameResourceKey": "eAPName", + "value": "customEapXml", + "children": [ + { + "complexOptions": [ + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "clientCertForEapXmlClientAuthenticationDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "authenticationCertificate", + "descriptionResourceKey": "clientCertForEapXmlClientAuthenticationDescription", + "emptyValueResourceKey": "selectCertificate", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 12, + "category": 120, + "nameResourceKey": "eAPXmlName", + "descriptionResourceKey": "vPNEAPXMLDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "eapXml", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + }, + { + "nameResourceKey": "machineCertificatesName", + "value": "certificate", + "children": [ + { + "complexOptions": [ + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "clientCertForEapXmlClientAuthenticationDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "authenticationCertificate", + "descriptionResourceKey": "clientCertForEapXmlClientAuthenticationDescription", + "emptyValueResourceKey": "selectCertificate", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + }, + { + "nameResourceKey": "derivedCredentialsOption", + "value": "derivedCredential", + "children": [ + { + "dataType": 12, + "category": 120, + "nameResourceKey": "eAPXmlName", + "descriptionResourceKey": "vPNEAPXMLDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "eapXml", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": false + } + ], + "entityKey": "authenticationMethod", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyEnableDeviceTunnelName", + "descriptionResourceKey": "vPNPolicyEnableDeviceTunnelDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableDeviceTunnel", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": false + }, + { + "complexOptions": [ + { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "iKESecurityAssociationParamName", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": false + }, + { + "dataType": 16, + "category": 120, + "nameResourceKey": "encryptionMethodName", + "descriptionResourceKey": "encryptionMethodDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "enabled": true + }, + { + "nameResourceKey": "dES", + "value": "des", + "enabled": true + }, + { + "nameResourceKey": "threeDES", + "value": "tripleDes", + "enabled": true + }, + { + "nameResourceKey": "aES128", + "value": "aes128", + "enabled": true + }, + { + "nameResourceKey": "aES192", + "value": "aes192", + "enabled": true + }, + { + "nameResourceKey": "aES256", + "value": "aes256", + "enabled": true + }, + { + "nameResourceKey": "authenticationTransformConstantsGCMAES128", + "value": "aes128Gcm", + "enabled": true + }, + { + "nameResourceKey": "authenticationTransformConstantsGCMAES256", + "value": "aes256Gcm", + "enabled": true + } + ], + "entityKey": "encryptionMethod", + "booleanActions": 0, + "policyType": 89, + "enabled": false + }, + { + "dataType": 16, + "category": 120, + "nameResourceKey": "integrityCheckMethodName", + "descriptionResourceKey": "integrityCheckMethodDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "enabled": true + }, + { + "nameResourceKey": "mD5", + "value": "md5", + "enabled": true + }, + { + "nameResourceKey": "sHA196", + "value": "sha1_96", + "enabled": true + }, + { + "nameResourceKey": "sHA2256", + "value": "sha2_256", + "enabled": true + }, + { + "nameResourceKey": "sHA2384", + "value": "sha2_384", + "enabled": true + } + ], + "entityKey": "integrityCheckMethod", + "booleanActions": 0, + "policyType": 89, + "enabled": false + }, + { + "dataType": 16, + "category": 120, + "nameResourceKey": "dHGroupName", + "descriptionResourceKey": "dHGroupDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "enabled": true + }, + { + "displayText": "1", + "value": "group1", + "enabled": true + }, + { + "displayText": "2", + "value": "group2", + "enabled": true + }, + { + "displayText": "14", + "value": "group14", + "enabled": true + }, + { + "displayText": "19", + "value": "ecp256", + "enabled": true + }, + { + "displayText": "20", + "value": "ecp384", + "enabled": true + }, + { + "displayText": "24", + "value": "group24", + "enabled": true + } + ], + "entityKey": "dhGroup", + "booleanActions": 0, + "policyType": 89, + "enabled": false + }, + { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "childSecurityAssociationParamName", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": false + }, + { + "dataType": 16, + "category": 120, + "nameResourceKey": "cipherTransformAlgorithmName", + "descriptionResourceKey": "cipherTransformAlgorithmDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "enabled": true + }, + { + "nameResourceKey": "cipherTransformConstantsDES", + "value": "des", + "enabled": true + }, + { + "nameResourceKey": "cipherTransformConstants3DES", + "value": "tripleDes", + "enabled": true + }, + { + "nameResourceKey": "cipherTransformConstantsAES128", + "value": "aes128", + "enabled": true + }, + { + "nameResourceKey": "cipherTransformConstantsAES192", + "value": "aes192", + "enabled": true + }, + { + "nameResourceKey": "cipherTransformConstantsAES256", + "value": "aes256", + "enabled": true + }, + { + "nameResourceKey": "authenticationTransformConstantsGCMAES128", + "value": "aes128Gcm", + "enabled": true + }, + { + "nameResourceKey": "authenticationTransformConstantsGCMAES192", + "value": "aes192Gcm", + "enabled": true + }, + { + "nameResourceKey": "authenticationTransformConstantsGCMAES256", + "value": "aes256Gcm", + "enabled": true + } + ], + "entityKey": "cipherTransformConstants", + "booleanActions": 0, + "policyType": 89, + "enabled": false + }, + { + "dataType": 16, + "category": 120, + "nameResourceKey": "authenticationTransformAlgorithmName", + "descriptionResourceKey": "authenticationTransformAlgorithmDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "enabled": true + }, + { + "nameResourceKey": "authenticationTransformConstantsMD596", + "value": "md5_96", + "enabled": true + }, + { + "nameResourceKey": "authenticationTransformConstantsSHA196", + "value": "sha1_96", + "enabled": true + }, + { + "nameResourceKey": "authenticationTransformConstantsSHA256128", + "value": "sha_256_128", + "enabled": true + }, + { + "nameResourceKey": "authenticationTransformConstantsGCMAES128", + "value": "aes128Gcm", + "enabled": true + }, + { + "nameResourceKey": "authenticationTransformConstantsGCMAES192", + "value": "aes192Gcm", + "enabled": true + }, + { + "nameResourceKey": "authenticationTransformConstantsGCMAES256", + "value": "aes256Gcm", + "enabled": true + } + ], + "entityKey": "authenticationTransformConstants", + "booleanActions": 0, + "policyType": 89, + "enabled": false + }, + { + "dataType": 16, + "category": 120, + "nameResourceKey": "pFSGroupName", + "descriptionResourceKey": "pFSGroupDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "enabled": true + }, + { + "nameResourceKey": "pFSMMDescription", + "value": "pfsMM", + "enabled": true + }, + { + "displayText": "1", + "value": "pfs1", + "enabled": true + }, + { + "displayText": "2", + "value": "pfs2", + "enabled": true + }, + { + "displayText": "14", + "value": "pfs2048", + "enabled": true + }, + { + "displayText": "19", + "value": "ecp256", + "enabled": true + }, + { + "displayText": "20", + "value": "ecp384", + "enabled": true + }, + { + "displayText": "24", + "value": "pfs24", + "enabled": true + } + ], + "entityKey": "pfsGroup", + "booleanActions": 0, + "policyType": 89, + "enabled": false + } + ], + "dataType": 6, + "category": 120, + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "cryptographySuite", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "vpn", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 16, + "category": 120, + "nameResourceKey": "vPNWipOrAppsName", + "descriptionResourceKey": "vPNWipOrAppsDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "value": 0, + "enabled": true + }, + { + "nameResourceKey": "wipOption", + "value": 1, + "children": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "wipName", + "descriptionResourceKey": "wipDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "windowsInformationProtectionDomain", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + }, + { + "nameResourceKey": "associateAppsOption", + "value": 2, + "children": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyOnlyTheseAppsCanUseVPNName", + "descriptionResourceKey": "vPNPolicyOnlyTheseAppsCanUseVPNDescription", + "childSettings": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "appIdentifierName", + "descriptionResourceKey": "appIdentifierDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identifier", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 16, + "category": 120, + "nameResourceKey": "eDPPolicyNetworkLocationsListTypeName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "enabled": true + }, + { + "nameResourceKey": "desktopOption", + "value": "desktop", + "enabled": true + }, + { + "nameResourceKey": "universalOption", + "value": "universal", + "enabled": true + } + ], + "entityKey": "appType", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyAssociatedAppsName", + "descriptionResourceKey": "vPNPolicyAssociatedAppsDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "associatedApps", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "onlyAssociatedAppsCanUseConnection", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + } + ], + "entityKey": "syntheticWipOrApps", + "booleanActions": 0, + "defaultValue": 0, + "unconfiguredValue": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "ruleName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 16, + "category": 120, + "nameResourceKey": "trafficRuleRoutingPolicyTypeName", + "descriptionResourceKey": "trafficRuleRoutingPolicyTypeDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "noneOption", + "value": "none", + "enabled": true + }, + { + "nameResourceKey": "splitTunnelOption", + "value": "splitTunnel", + "enabled": true + }, + { + "nameResourceKey": "forceTunnelOption", + "value": "forceTunnel", + "enabled": true + } + ], + "entityKey": "routingPolicyType", + "booleanActions": 0, + "defaultValue": "none", + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "protocolsName", + "descriptionResourceKey": "empty", + "childSettings": [ + { + "columns": [ + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "lowerPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "upperPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "localPortRangesName", + "descriptionResourceKey": "localPortRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "localPortRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "lowerPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "upperPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "remotePortRangesName", + "descriptionResourceKey": "remotePortRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "remotePortRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + + ], + "entityKey": "protocols", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "trafficRuleAppName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "appId", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 16, + "category": 120, + "nameResourceKey": "trafficRuleAppTypeName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "desktopOption", + "value": "desktop", + "enabled": true + }, + { + "nameResourceKey": "universalOption", + "value": "universal", + "enabled": true + } + ], + "entityKey": "appType", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "lowerIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "upperIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "localAddressRangesName", + "descriptionResourceKey": "localAddressRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "localAddressRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "lowerIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "upperIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "remoteAddressRangesName", + "descriptionResourceKey": "remoteAddressRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "remoteAddressRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyNetworkTrafficRulesName", + "descriptionResourceKey": "vPNPolicyNetworkTrafficRulesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trafficRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "AppsAndTrafficRules", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "enableConditionalAccessName", + "descriptionResourceKey": "enableConditionalAccessDescription", + "childSettings": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "enableSingleSignOnName", + "descriptionResourceKey": "enableSingleSignOnDescription", + "childSettings": [ + { + "complexOptions": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "eDPPolicyAppsListNameName", + "descriptionResourceKey": "eDPPolicyAppsListNameDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 20, + "category": 120, + "nameResourceKey": "sCEPPolicyObjectIdentifierColumnName", + "descriptionResourceKey": "sCEPPolicyObjectIdentifierColumnDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "objectIdentifier", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 6, + "category": 120, + "nameResourceKey": "sCEPPolicyExtendedKeyUsageName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "singleSignOnEku", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 20, + "category": 120, + "nameResourceKey": "issuerHashName", + "descriptionResourceKey": "issuerHashDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "singleSignOnIssuerHash", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableSingleSignOnWithAlternateCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableConditionalAccess", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "ConditionalAccess", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyDNSSuffixesName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "dNSSuffixExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyDNSSuffixSearchListName", + "descriptionResourceKey": "vPNPolicyDNSSuffixSearchListDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsSuffixes", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSName", + "descriptionResourceKey": "dNSNameDescription1809", + "emptyValueResourceKey": "dNSNameExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "dNSServerDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "enterOnlyOneForDns", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "proxy", + "descriptionResourceKey": "vPNProxyDescription1809", + "emptyValueResourceKey": "proxyDNSExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServerUri", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNDnsAutoTriggerName", + "descriptionResourceKey": "vPNDnsAutoTriggerDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enabledOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "notConfigured", + "value": false, + "enabled": true + } + ], + "entityKey": "autoTrigger", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNDnsPersistentName", + "descriptionResourceKey": "vPNDnsPersistentDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enabledOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "notConfigured", + "value": false, + "enabled": true + } + ], + "entityKey": "persistent", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyNameResolutionPolicyTableRulesName", + "descriptionResourceKey": "vPNPolicyNameResolutionPolicyTableRulesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "vPNPolicyNameResolutionPolicyTableRulesName", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSName", + "descriptionResourceKey": "dNSNameDescription1809", + "emptyValueResourceKey": "dNSNameExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "enterOnlyOneForDns", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "dNSServerDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "proxy", + "descriptionResourceKey": "vPNProxyDescription1809", + "emptyValueResourceKey": "proxyDNSExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServerUri", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyNameResolutionPolicyTableRulesName", + "descriptionResourceKey": "vPNPolicyNameResolutionPolicyTableRulesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": false + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSName", + "descriptionResourceKey": "dNSNameDescription", + "emptyValueResourceKey": "dNSNameExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "enterOnlyOneForDns", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "dNSServerDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "proxy", + "emptyValueResourceKey": "proxyDNSExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServerUri", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyDNSNamesAndServersName", + "descriptionResourceKey": "vPNPolicyDNSNamesAndServersName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": false + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "DNSSettings", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "vPNPolicyUseProxyServerName", + "descriptionResourceKey": "vPNPolicyUseProxyServerDescription", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyAutomaticConfigurationScriptName", + "descriptionResourceKey": "vPNPolicyAutomaticConfigurationScriptDescription", + "emptyValueResourceKey": "vPNScriptExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "automaticConfigurationScriptUrl", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyAddressName", + "descriptionResourceKey": "vPNPolicyAddressDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "address", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 14, + "category": 120, + "nameResourceKey": "vPNPolicyPortNumberName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "port", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 16, + "category": 120, + "nameResourceKey": "vPNPolicyBypassProxySettingsForLocalAddressesName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "enabled": true + }, + { + "nameResourceKey": "enableOption", + "value": "true", + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": "false", + "enabled": true + } + ], + "entityKey": "bypassProxyServerForLocalAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 6, + "category": 120, + "nameResourceKey": "vPNPolicyUseProxyServerName", + "descriptionResourceKey": "vPNPolicyUseProxyServerDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServer", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "Proxy", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicySendAllNetworkTrafficThroughVPNName", + "descriptionResourceKey": "vPNPolicySendAllNetworkTrafficThroughVPNDescription", + "childSettings": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyDestinationPrefixName", + "descriptionResourceKey": "vPNPolicyDestinationPrefixName", + "emptyValueResourceKey": "proxyAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "destinationPrefix", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "vPNPolicyPrefixSizeName", + "descriptionResourceKey": "vPNPolicyPrefixSizeName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "prefixSize", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyRoutesForThisConnectionName", + "descriptionResourceKey": "vPNPolicyRoutesForThisConnectionDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "routes", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableSplitTunneling", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "VPNPolicySendAllNetworkTrafficThroughVPNName", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyTrustedNetworkDomainColumnName", + "descriptionResourceKey": "", + "emptyValueResourceKey": "VPNPolicyTrustedNetworkDomainExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trustedNetworkDomains", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyTrustedNetworkDomainName", + "descriptionResourceKey": "vPNPolicyTrustedNetworkDomainDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trustedNetworkDomains", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "VPNPolicyTrustedNetworkDetectionEnabledName", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + }, + { + "nameResourceKey": "lTPOptionNativeType", + "value": "l2tp", + "children": [ + { + "complexOptions": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyConnectionName", + "descriptionResourceKey": "vPNPolicyConnectionDescription", + "emptyValueResourceKey": "vPNConnectionExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "connectionName", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyServerDescriptionName", + "descriptionResourceKey": "vPNPolicyServerDescriptionDescription", + "emptyValueResourceKey": "vPNServerExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "description", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyServerIPAddressOrFQDNName", + "descriptionResourceKey": "vPNPolicyServerIPAddressOrFQDNDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "address", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyDefaultServerName", + "descriptionResourceKey": "vPNPolicyDefaultServerDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "trueOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "falseOption", + "value": false, + "enabled": true + } + ], + "entityKey": "isDefaultServer", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyServersName", + "descriptionResourceKey": "vPNPolicyServersDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyDNSRegistrationName", + "descriptionResourceKey": "vPNPolicyDNSRegistrationDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableDnsRegistration", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + }, + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyEnableAlwaysOnName", + "descriptionResourceKey": "vPNPolicyEnableAlwaysOnDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableAlwaysOn", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + }, + { + "dataType": 0, + "category": 120, + "nameResourceKey": "vPNPolicyRememberCredentialsName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "rememberUserCredentials", + "booleanActions": 2, + "policyType": 89, + "enabled": true + }, + { + "dataType": 16, + "category": 120, + "nameResourceKey": "authenticationMethodName", + "descriptionResourceKey": "vPNAuthMethodDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "selectAnAuthenticationMethod", + "enabled": true + }, + { + "nameResourceKey": "certificatesOption", + "value": "customEapXml", + "children": [ + { + "complexOptions": [ + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "clientCertForEapXmlClientAuthenticationDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "authenticationCertificate", + "descriptionResourceKey": "clientCertForEapXmlClientAuthenticationDescription", + "emptyValueResourceKey": "selectCertificate", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + }, + { + "nameResourceKey": "derivedCredentialsOption", + "value": "derivedCredential", + "enabled": true + } + ], + "entityKey": "authenticationMethod", + "booleanActions": 0, + "policyType": 89, + "enabled": false + }, + { + "value": "customEapXml", + "dataType": 9, + "category": 120, + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "authenticationMethod", + "booleanActions": 0, + "policyType": 89, + "enabled": false + }, + { + "complexOptions": [ + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "clientCertForEapXmlClientAuthenticationDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "authenticationCertificate", + "descriptionResourceKey": "clientCertForEapXmlClientAuthenticationDescription", + "emptyValueResourceKey": "selectCertificate", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": false + }, + { + "dataType": 12, + "category": 120, + "nameResourceKey": "eAPXmlName", + "descriptionResourceKey": "vPNEAPXMLDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "eapXml", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "vpn", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 16, + "category": 120, + "nameResourceKey": "vPNWipOrAppsName", + "descriptionResourceKey": "vPNWipOrAppsDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "value": 0, + "enabled": true + }, + { + "nameResourceKey": "wipOption", + "value": 1, + "children": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "wipName", + "descriptionResourceKey": "wipDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "windowsInformationProtectionDomain", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + }, + { + "nameResourceKey": "associateAppsOption", + "value": 2, + "children": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyOnlyTheseAppsCanUseVPNName", + "descriptionResourceKey": "vPNPolicyOnlyTheseAppsCanUseVPNDescription", + "childSettings": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "appIdentifierName", + "descriptionResourceKey": "appIdentifierDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identifier", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 16, + "category": 120, + "nameResourceKey": "eDPPolicyNetworkLocationsListTypeName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "enabled": true + }, + { + "nameResourceKey": "desktopOption", + "value": "desktop", + "enabled": true + }, + { + "nameResourceKey": "universalOption", + "value": "universal", + "enabled": true + } + ], + "entityKey": "appType", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyAssociatedAppsName", + "descriptionResourceKey": "vPNPolicyAssociatedAppsDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "associatedApps", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "onlyAssociatedAppsCanUseConnection", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + } + ], + "entityKey": "syntheticWipOrApps", + "booleanActions": 0, + "defaultValue": 0, + "unconfiguredValue": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "ruleName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 16, + "category": 120, + "nameResourceKey": "trafficRuleRoutingPolicyTypeName", + "descriptionResourceKey": "trafficRuleRoutingPolicyTypeDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "noneOption", + "value": "none", + "enabled": true + }, + { + "nameResourceKey": "splitTunnelOption", + "value": "splitTunnel", + "enabled": true + }, + { + "nameResourceKey": "forceTunnelOption", + "value": "forceTunnel", + "enabled": true + } + ], + "entityKey": "routingPolicyType", + "booleanActions": 0, + "defaultValue": "none", + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "protocolsName", + "descriptionResourceKey": "empty", + "childSettings": [ + { + "columns": [ + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "lowerPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "upperPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "localPortRangesName", + "descriptionResourceKey": "localPortRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "localPortRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "lowerPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "upperPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "remotePortRangesName", + "descriptionResourceKey": "remotePortRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "remotePortRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + + ], + "entityKey": "protocols", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "trafficRuleAppName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "appId", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 16, + "category": 120, + "nameResourceKey": "trafficRuleAppTypeName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "desktopOption", + "value": "desktop", + "enabled": true + }, + { + "nameResourceKey": "universalOption", + "value": "universal", + "enabled": true + } + ], + "entityKey": "appType", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "lowerIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "upperIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "localAddressRangesName", + "descriptionResourceKey": "localAddressRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "localAddressRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "lowerIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "upperIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "remoteAddressRangesName", + "descriptionResourceKey": "remoteAddressRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "remoteAddressRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyNetworkTrafficRulesName", + "descriptionResourceKey": "vPNPolicyNetworkTrafficRulesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trafficRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "AppsAndTrafficRules", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "enableConditionalAccessName", + "descriptionResourceKey": "enableConditionalAccessDescription", + "childSettings": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "enableSingleSignOnName", + "descriptionResourceKey": "enableSingleSignOnDescription", + "childSettings": [ + { + "complexOptions": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "eDPPolicyAppsListNameName", + "descriptionResourceKey": "eDPPolicyAppsListNameDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 20, + "category": 120, + "nameResourceKey": "sCEPPolicyObjectIdentifierColumnName", + "descriptionResourceKey": "sCEPPolicyObjectIdentifierColumnDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "objectIdentifier", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 6, + "category": 120, + "nameResourceKey": "sCEPPolicyExtendedKeyUsageName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "singleSignOnEku", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 20, + "category": 120, + "nameResourceKey": "issuerHashName", + "descriptionResourceKey": "issuerHashDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "singleSignOnIssuerHash", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableSingleSignOnWithAlternateCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableConditionalAccess", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "ConditionalAccess", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyDNSSuffixesName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "dNSSuffixExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyDNSSuffixSearchListName", + "descriptionResourceKey": "vPNPolicyDNSSuffixSearchListDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsSuffixes", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSName", + "descriptionResourceKey": "dNSNameDescription1809", + "emptyValueResourceKey": "dNSNameExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "dNSServerDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "enterOnlyOneForDns", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "proxy", + "descriptionResourceKey": "vPNProxyDescription1809", + "emptyValueResourceKey": "proxyDNSExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServerUri", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNDnsAutoTriggerName", + "descriptionResourceKey": "vPNDnsAutoTriggerDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enabledOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "notConfigured", + "value": false, + "enabled": true + } + ], + "entityKey": "autoTrigger", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNDnsPersistentName", + "descriptionResourceKey": "vPNDnsPersistentDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enabledOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "notConfigured", + "value": false, + "enabled": true + } + ], + "entityKey": "persistent", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyNameResolutionPolicyTableRulesName", + "descriptionResourceKey": "vPNPolicyNameResolutionPolicyTableRulesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "vPNPolicyNameResolutionPolicyTableRulesName", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSName", + "descriptionResourceKey": "dNSNameDescription1809", + "emptyValueResourceKey": "dNSNameExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "enterOnlyOneForDns", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "dNSServerDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "proxy", + "descriptionResourceKey": "vPNProxyDescription1809", + "emptyValueResourceKey": "proxyDNSExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServerUri", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyNameResolutionPolicyTableRulesName", + "descriptionResourceKey": "vPNPolicyNameResolutionPolicyTableRulesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": false + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSName", + "descriptionResourceKey": "dNSNameDescription", + "emptyValueResourceKey": "dNSNameExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "enterOnlyOneForDns", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "dNSServerDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "proxy", + "emptyValueResourceKey": "proxyDNSExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServerUri", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyDNSNamesAndServersName", + "descriptionResourceKey": "vPNPolicyDNSNamesAndServersName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": false + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "DNSSettings", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "vPNPolicyUseProxyServerName", + "descriptionResourceKey": "vPNPolicyUseProxyServerDescription", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyAutomaticConfigurationScriptName", + "descriptionResourceKey": "vPNPolicyAutomaticConfigurationScriptDescription", + "emptyValueResourceKey": "vPNScriptExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "automaticConfigurationScriptUrl", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyAddressName", + "descriptionResourceKey": "vPNPolicyAddressDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "address", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 14, + "category": 120, + "nameResourceKey": "vPNPolicyPortNumberName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "port", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 16, + "category": 120, + "nameResourceKey": "vPNPolicyBypassProxySettingsForLocalAddressesName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "enabled": true + }, + { + "nameResourceKey": "enableOption", + "value": "true", + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": "false", + "enabled": true + } + ], + "entityKey": "bypassProxyServerForLocalAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 6, + "category": 120, + "nameResourceKey": "vPNPolicyUseProxyServerName", + "descriptionResourceKey": "vPNPolicyUseProxyServerDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServer", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "Proxy", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicySendAllNetworkTrafficThroughVPNName", + "descriptionResourceKey": "vPNPolicySendAllNetworkTrafficThroughVPNDescription", + "childSettings": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyDestinationPrefixName", + "descriptionResourceKey": "vPNPolicyDestinationPrefixName", + "emptyValueResourceKey": "proxyAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "destinationPrefix", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "vPNPolicyPrefixSizeName", + "descriptionResourceKey": "vPNPolicyPrefixSizeName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "prefixSize", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyRoutesForThisConnectionName", + "descriptionResourceKey": "vPNPolicyRoutesForThisConnectionDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "routes", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableSplitTunneling", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "VPNPolicySendAllNetworkTrafficThroughVPNName", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyTrustedNetworkDomainColumnName", + "descriptionResourceKey": "", + "emptyValueResourceKey": "VPNPolicyTrustedNetworkDomainExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trustedNetworkDomains", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyTrustedNetworkDomainName", + "descriptionResourceKey": "vPNPolicyTrustedNetworkDomainDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trustedNetworkDomains", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "VPNPolicyTrustedNetworkDetectionEnabledName", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + }, + { + "nameResourceKey": "pPTPOptionNativeType", + "value": "pptp", + "children": [ + { + "complexOptions": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyConnectionName", + "descriptionResourceKey": "vPNPolicyConnectionDescription", + "emptyValueResourceKey": "vPNConnectionExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "connectionName", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyServerDescriptionName", + "descriptionResourceKey": "vPNPolicyServerDescriptionDescription", + "emptyValueResourceKey": "vPNServerExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "description", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyServerIPAddressOrFQDNName", + "descriptionResourceKey": "vPNPolicyServerIPAddressOrFQDNDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "address", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyDefaultServerName", + "descriptionResourceKey": "vPNPolicyDefaultServerDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "trueOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "falseOption", + "value": false, + "enabled": true + } + ], + "entityKey": "isDefaultServer", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyServersName", + "descriptionResourceKey": "vPNPolicyServersDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyDNSRegistrationName", + "descriptionResourceKey": "vPNPolicyDNSRegistrationDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableDnsRegistration", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + }, + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyEnableAlwaysOnName", + "descriptionResourceKey": "vPNPolicyEnableAlwaysOnDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableAlwaysOn", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + }, + { + "dataType": 0, + "category": 120, + "nameResourceKey": "vPNPolicyRememberCredentialsName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "rememberUserCredentials", + "booleanActions": 2, + "policyType": 89, + "enabled": true + }, + { + "dataType": 16, + "category": 120, + "nameResourceKey": "authenticationMethodName", + "descriptionResourceKey": "vPNAuthMethodDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "selectAnAuthenticationMethod", + "enabled": true + }, + { + "nameResourceKey": "certificatesOption", + "value": "customEapXml", + "children": [ + { + "complexOptions": [ + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "clientCertForEapXmlClientAuthenticationDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "authenticationCertificate", + "descriptionResourceKey": "clientCertForEapXmlClientAuthenticationDescription", + "emptyValueResourceKey": "selectCertificate", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + }, + { + "nameResourceKey": "derivedCredentialsOption", + "value": "derivedCredential", + "enabled": true + } + ], + "entityKey": "authenticationMethod", + "booleanActions": 0, + "policyType": 89, + "enabled": false + }, + { + "value": "customEapXml", + "dataType": 9, + "category": 120, + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "authenticationMethod", + "booleanActions": 0, + "policyType": 89, + "enabled": false + }, + { + "complexOptions": [ + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "clientCertForEapXmlClientAuthenticationDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "authenticationCertificate", + "descriptionResourceKey": "clientCertForEapXmlClientAuthenticationDescription", + "emptyValueResourceKey": "selectCertificate", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": false + }, + { + "dataType": 12, + "category": 120, + "nameResourceKey": "eAPXmlName", + "descriptionResourceKey": "vPNEAPXMLDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "eapXml", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "vpn", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 16, + "category": 120, + "nameResourceKey": "vPNWipOrAppsName", + "descriptionResourceKey": "vPNWipOrAppsDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "value": 0, + "enabled": true + }, + { + "nameResourceKey": "wipOption", + "value": 1, + "children": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "wipName", + "descriptionResourceKey": "wipDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "windowsInformationProtectionDomain", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + }, + { + "nameResourceKey": "associateAppsOption", + "value": 2, + "children": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyOnlyTheseAppsCanUseVPNName", + "descriptionResourceKey": "vPNPolicyOnlyTheseAppsCanUseVPNDescription", + "childSettings": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "appIdentifierName", + "descriptionResourceKey": "appIdentifierDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identifier", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 16, + "category": 120, + "nameResourceKey": "eDPPolicyNetworkLocationsListTypeName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "enabled": true + }, + { + "nameResourceKey": "desktopOption", + "value": "desktop", + "enabled": true + }, + { + "nameResourceKey": "universalOption", + "value": "universal", + "enabled": true + } + ], + "entityKey": "appType", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyAssociatedAppsName", + "descriptionResourceKey": "vPNPolicyAssociatedAppsDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "associatedApps", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "onlyAssociatedAppsCanUseConnection", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + } + ], + "entityKey": "syntheticWipOrApps", + "booleanActions": 0, + "defaultValue": 0, + "unconfiguredValue": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "ruleName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 16, + "category": 120, + "nameResourceKey": "trafficRuleRoutingPolicyTypeName", + "descriptionResourceKey": "trafficRuleRoutingPolicyTypeDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "noneOption", + "value": "none", + "enabled": true + }, + { + "nameResourceKey": "splitTunnelOption", + "value": "splitTunnel", + "enabled": true + }, + { + "nameResourceKey": "forceTunnelOption", + "value": "forceTunnel", + "enabled": true + } + ], + "entityKey": "routingPolicyType", + "booleanActions": 0, + "defaultValue": "none", + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "protocolsName", + "descriptionResourceKey": "empty", + "childSettings": [ + { + "columns": [ + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "lowerPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "upperPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "localPortRangesName", + "descriptionResourceKey": "localPortRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "localPortRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "lowerPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "upperPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "remotePortRangesName", + "descriptionResourceKey": "remotePortRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "remotePortRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + + ], + "entityKey": "protocols", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "trafficRuleAppName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "appId", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 16, + "category": 120, + "nameResourceKey": "trafficRuleAppTypeName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "desktopOption", + "value": "desktop", + "enabled": true + }, + { + "nameResourceKey": "universalOption", + "value": "universal", + "enabled": true + } + ], + "entityKey": "appType", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "lowerIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "upperIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "localAddressRangesName", + "descriptionResourceKey": "localAddressRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "localAddressRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "lowerIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "upperIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "remoteAddressRangesName", + "descriptionResourceKey": "remoteAddressRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "remoteAddressRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyNetworkTrafficRulesName", + "descriptionResourceKey": "vPNPolicyNetworkTrafficRulesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trafficRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "AppsAndTrafficRules", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "enableConditionalAccessName", + "descriptionResourceKey": "enableConditionalAccessDescription", + "childSettings": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "enableSingleSignOnName", + "descriptionResourceKey": "enableSingleSignOnDescription", + "childSettings": [ + { + "complexOptions": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "eDPPolicyAppsListNameName", + "descriptionResourceKey": "eDPPolicyAppsListNameDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 20, + "category": 120, + "nameResourceKey": "sCEPPolicyObjectIdentifierColumnName", + "descriptionResourceKey": "sCEPPolicyObjectIdentifierColumnDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "objectIdentifier", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 6, + "category": 120, + "nameResourceKey": "sCEPPolicyExtendedKeyUsageName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "singleSignOnEku", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 20, + "category": 120, + "nameResourceKey": "issuerHashName", + "descriptionResourceKey": "issuerHashDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "singleSignOnIssuerHash", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableSingleSignOnWithAlternateCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableConditionalAccess", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "ConditionalAccess", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyDNSSuffixesName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "dNSSuffixExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyDNSSuffixSearchListName", + "descriptionResourceKey": "vPNPolicyDNSSuffixSearchListDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsSuffixes", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSName", + "descriptionResourceKey": "dNSNameDescription1809", + "emptyValueResourceKey": "dNSNameExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "dNSServerDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "enterOnlyOneForDns", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "proxy", + "descriptionResourceKey": "vPNProxyDescription1809", + "emptyValueResourceKey": "proxyDNSExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServerUri", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNDnsAutoTriggerName", + "descriptionResourceKey": "vPNDnsAutoTriggerDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enabledOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "notConfigured", + "value": false, + "enabled": true + } + ], + "entityKey": "autoTrigger", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNDnsPersistentName", + "descriptionResourceKey": "vPNDnsPersistentDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enabledOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "notConfigured", + "value": false, + "enabled": true + } + ], + "entityKey": "persistent", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyNameResolutionPolicyTableRulesName", + "descriptionResourceKey": "vPNPolicyNameResolutionPolicyTableRulesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "vPNPolicyNameResolutionPolicyTableRulesName", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSName", + "descriptionResourceKey": "dNSNameDescription1809", + "emptyValueResourceKey": "dNSNameExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "enterOnlyOneForDns", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "dNSServerDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "proxy", + "descriptionResourceKey": "vPNProxyDescription1809", + "emptyValueResourceKey": "proxyDNSExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServerUri", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyNameResolutionPolicyTableRulesName", + "descriptionResourceKey": "vPNPolicyNameResolutionPolicyTableRulesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": false + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSName", + "descriptionResourceKey": "dNSNameDescription", + "emptyValueResourceKey": "dNSNameExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "enterOnlyOneForDns", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "dNSServerDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "proxy", + "emptyValueResourceKey": "proxyDNSExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServerUri", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyDNSNamesAndServersName", + "descriptionResourceKey": "vPNPolicyDNSNamesAndServersName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": false + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "DNSSettings", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "vPNPolicyUseProxyServerName", + "descriptionResourceKey": "vPNPolicyUseProxyServerDescription", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyAutomaticConfigurationScriptName", + "descriptionResourceKey": "vPNPolicyAutomaticConfigurationScriptDescription", + "emptyValueResourceKey": "vPNScriptExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "automaticConfigurationScriptUrl", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyAddressName", + "descriptionResourceKey": "vPNPolicyAddressDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "address", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 14, + "category": 120, + "nameResourceKey": "vPNPolicyPortNumberName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "port", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 16, + "category": 120, + "nameResourceKey": "vPNPolicyBypassProxySettingsForLocalAddressesName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "enabled": true + }, + { + "nameResourceKey": "enableOption", + "value": "true", + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": "false", + "enabled": true + } + ], + "entityKey": "bypassProxyServerForLocalAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 6, + "category": 120, + "nameResourceKey": "vPNPolicyUseProxyServerName", + "descriptionResourceKey": "vPNPolicyUseProxyServerDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServer", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "Proxy", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicySendAllNetworkTrafficThroughVPNName", + "descriptionResourceKey": "vPNPolicySendAllNetworkTrafficThroughVPNDescription", + "childSettings": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyDestinationPrefixName", + "descriptionResourceKey": "vPNPolicyDestinationPrefixName", + "emptyValueResourceKey": "proxyAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "destinationPrefix", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "vPNPolicyPrefixSizeName", + "descriptionResourceKey": "vPNPolicyPrefixSizeName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "prefixSize", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyRoutesForThisConnectionName", + "descriptionResourceKey": "vPNPolicyRoutesForThisConnectionDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "routes", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableSplitTunneling", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "VPNPolicySendAllNetworkTrafficThroughVPNName", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyTrustedNetworkDomainColumnName", + "descriptionResourceKey": "", + "emptyValueResourceKey": "VPNPolicyTrustedNetworkDomainExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trustedNetworkDomains", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyTrustedNetworkDomainName", + "descriptionResourceKey": "vPNPolicyTrustedNetworkDomainDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trustedNetworkDomains", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "VPNPolicyTrustedNetworkDetectionEnabledName", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], "enabled": true } ], - "entityKey": "isDefaultServer", + "entityKey": "connectionType", "booleanActions": 0, - "defaultValue": false, + "unconfiguredValue": "selectAConnectionType", "policyType": 89, "enabled": true } - } - ], - "dataType": 21, - "category": 120, - "nameResourceKey": "vPNPolicyServersName", - "descriptionResourceKey": "vPNPolicyServersDescription", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "servers", - "booleanActions": 0, - "policyType": 89, - "enabled": true - }, - { - "dataType": 19, - "category": 120, - "nameResourceKey": "vPNPolicyDNSRegistrationName", - "descriptionResourceKey": "vPNPolicyDNSRegistrationDescription", - "childSettings": [ - - ], - "options": [ - { - "nameResourceKey": "enableOption", - "value": true, - "enabled": true - }, - { - "nameResourceKey": "disableOption", - "value": false, - "enabled": true - } - ], - "entityKey": "enableDnsRegistration", - "booleanActions": 0, - "defaultValue": false, - "policyType": 89, - "enabled": true - }, - { - "dataType": 16, - "category": 120, - "nameResourceKey": "vPNPolicyConnectionTypeName", - "descriptionResourceKey": "vPNPolicyConnectionTypeDescriptionNoCustom", - "childSettings": [ - - ], - "options": [ - { - "nameResourceKey": "selectAConnectionType", - "enabled": true - }, - { - "nameResourceKey": "ciscoAnyConnectOption", - "value": "ciscoAnyConnect", - "children": [ - { - "dataType": 19, - "category": 120, - "nameResourceKey": "vPNPolicyEnableAlwaysOnName", - "descriptionResourceKey": "vPNPolicyEnableAlwaysOnDescription", - "childSettings": [ - - ], - "options": [ - { - "nameResourceKey": "enableOption", - "value": true, - "enabled": true - }, - { - "nameResourceKey": "disableOption", - "value": false, - "enabled": true - } - ], - "entityKey": "enableAlwaysOn", - "booleanActions": 0, - "defaultValue": false, - "policyType": 89, - "enabled": true - }, - { - "dataType": 16, - "category": 120, - "nameResourceKey": "authenticationMethodName", - "descriptionResourceKey": "vPNAuthMethodDescription", - "childSettings": [ - - ], - "options": [ - { - "nameResourceKey": "selectAnAuthenticationMethod", - "enabled": true - }, - { - "nameResourceKey": "certificatesOption", - "value": "certificate", - "children": [ - { - "complexOptions": [ - { - "dataType": 4, - "category": 120, - "nameResourceKey": "vPNPolicySelectAClientCertificateName", - "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "identityCertificate", - "booleanActions": 0, - "policyType": 89, - "enabled": false - }, - { - "dataType": 4, - "category": 120, - "nameResourceKey": "vPNPolicySelectAClientCertificateName", - "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "identityCertificate", - "booleanActions": 0, - "policyType": 89, - "enabled": false - } - ], - "dataType": 5, - "category": 120, - "nameResourceKey": "authenticationCertificate", - "descriptionResourceKey": "clientCertForClientAuthenticationDescription", - "emptyValueResourceKey": "selectCertificate", - "childSettings": [ - - ], - "options": [ - - ], - "booleanActions": 0, - "policyType": 89, - "enabled": true - } - ], - "enabled": true - }, - { - "nameResourceKey": "usernameAndPasswordOption", - "value": "usernameAndPassword", - "enabled": true - }, - { - "nameResourceKey": "derivedCredentialsOption", - "value": "derivedCredential", - "enabled": false - } - ], - "entityKey": "authenticationMethod", - "booleanActions": 0, - "policyType": 89, - "enabled": true - }, - { - "dataType": 0, - "category": 120, - "nameResourceKey": "vPNPolicyRememberCredentialsName", - "descriptionResourceKey": "empty", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "rememberUserCredentials", - "booleanActions": 2, - "policyType": 89, - "enabled": true - }, - { - "dataType": 12, - "category": 120, - "nameResourceKey": "vPNPolicyCustomXMLName", - "descriptionResourceKey": "empty", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "customXml", - "booleanActions": 0, - "policyType": 89, - "enabled": true - } - ], - "enabled": true - }, - { - "nameResourceKey": "pulseSecureOption", - "value": "pulseSecure", - "children": [ - { - "dataType": 19, - "category": 120, - "nameResourceKey": "vPNPolicyEnableAlwaysOnName", - "descriptionResourceKey": "vPNPolicyEnableAlwaysOnDescription", - "childSettings": [ - - ], - "options": [ - { - "nameResourceKey": "enableOption", - "value": true, - "enabled": true - }, - { - "nameResourceKey": "disableOption", - "value": false, - "enabled": true - } - ], - "entityKey": "enableAlwaysOn", - "booleanActions": 0, - "defaultValue": false, - "policyType": 89, - "enabled": true - }, - { - "dataType": 16, - "category": 120, - "nameResourceKey": "authenticationMethodName", - "descriptionResourceKey": "vPNAuthMethodDescription", - "childSettings": [ - - ], - "options": [ - { - "nameResourceKey": "selectAnAuthenticationMethod", - "enabled": true - }, - { - "nameResourceKey": "certificatesOption", - "value": "certificate", - "children": [ - { - "complexOptions": [ - { - "dataType": 4, - "category": 120, - "nameResourceKey": "vPNPolicySelectAClientCertificateName", - "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "identityCertificate", - "booleanActions": 0, - "policyType": 89, - "enabled": false - }, - { - "dataType": 4, - "category": 120, - "nameResourceKey": "vPNPolicySelectAClientCertificateName", - "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "identityCertificate", - "booleanActions": 0, - "policyType": 89, - "enabled": false - } - ], - "dataType": 5, - "category": 120, - "nameResourceKey": "authenticationCertificate", - "descriptionResourceKey": "clientCertForClientAuthenticationDescription", - "emptyValueResourceKey": "selectCertificate", - "childSettings": [ - - ], - "options": [ - - ], - "booleanActions": 0, - "policyType": 89, - "enabled": true - } - ], - "enabled": true - }, - { - "nameResourceKey": "usernameAndPasswordOption", - "value": "usernameAndPassword", - "enabled": true - }, - { - "nameResourceKey": "derivedCredentialsOption", - "value": "derivedCredential", - "enabled": false - } - ], - "entityKey": "authenticationMethod", - "booleanActions": 0, - "policyType": 89, - "enabled": true - }, - { - "dataType": 0, - "category": 120, - "nameResourceKey": "vPNPolicyRememberCredentialsName", - "descriptionResourceKey": "empty", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "rememberUserCredentials", - "booleanActions": 2, - "policyType": 89, - "enabled": true - }, - { - "dataType": 12, - "category": 120, - "nameResourceKey": "vPNPolicyCustomXMLName", - "descriptionResourceKey": "empty", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "customXml", - "booleanActions": 0, - "policyType": 89, - "enabled": true - } - ], - "enabled": true - }, - { - "nameResourceKey": "fFiveEdgeClientOption", - "value": "f5EdgeClient", - "children": [ - { - "dataType": 19, - "category": 120, - "nameResourceKey": "vPNPolicyEnableAlwaysOnName", - "descriptionResourceKey": "vPNPolicyEnableAlwaysOnDescription", - "childSettings": [ - - ], - "options": [ - { - "nameResourceKey": "enableOption", - "value": true, - "enabled": true - }, - { - "nameResourceKey": "disableOption", - "value": false, - "enabled": true - } - ], - "entityKey": "enableAlwaysOn", - "booleanActions": 0, - "defaultValue": false, - "policyType": 89, - "enabled": true - }, - { - "dataType": 16, - "category": 120, - "nameResourceKey": "authenticationMethodName", - "descriptionResourceKey": "vPNAuthMethodDescription", - "childSettings": [ - - ], - "options": [ - { - "nameResourceKey": "selectAnAuthenticationMethod", - "enabled": true - }, - { - "nameResourceKey": "certificatesOption", - "value": "certificate", - "children": [ - { - "complexOptions": [ - { - "dataType": 4, - "category": 120, - "nameResourceKey": "vPNPolicySelectAClientCertificateName", - "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "identityCertificate", - "booleanActions": 0, - "policyType": 89, - "enabled": false - }, - { - "dataType": 4, - "category": 120, - "nameResourceKey": "vPNPolicySelectAClientCertificateName", - "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "identityCertificate", - "booleanActions": 0, - "policyType": 89, - "enabled": false - } - ], - "dataType": 5, - "category": 120, - "nameResourceKey": "authenticationCertificate", - "descriptionResourceKey": "clientCertForClientAuthenticationDescription", - "emptyValueResourceKey": "selectCertificate", - "childSettings": [ - - ], - "options": [ - - ], - "booleanActions": 0, - "policyType": 89, - "enabled": true - } - ], - "enabled": true - }, - { - "nameResourceKey": "usernameAndPasswordOption", - "value": "usernameAndPassword", - "enabled": true - }, - { - "nameResourceKey": "derivedCredentialsOption", - "value": "derivedCredential", - "enabled": false - } - ], - "entityKey": "authenticationMethod", - "booleanActions": 0, - "policyType": 89, - "enabled": true - }, - { - "dataType": 0, - "category": 120, - "nameResourceKey": "vPNPolicyRememberCredentialsName", - "descriptionResourceKey": "empty", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "rememberUserCredentials", - "booleanActions": 2, - "policyType": 89, - "enabled": true - }, - { - "dataType": 12, - "category": 120, - "nameResourceKey": "vPNPolicyCustomXMLName", - "descriptionResourceKey": "empty", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "customXml", - "booleanActions": 0, - "policyType": 89, - "enabled": true - } - ], - "enabled": true - }, - { - "nameResourceKey": "dellSoniceWallMobileConnectOption", - "value": "dellSonicWallMobileConnect", - "children": [ - { - "dataType": 19, - "category": 120, - "nameResourceKey": "vPNPolicyEnableAlwaysOnName", - "descriptionResourceKey": "vPNPolicyEnableAlwaysOnDescription", - "childSettings": [ - - ], - "options": [ - { - "nameResourceKey": "enableOption", - "value": true, - "enabled": true - }, - { - "nameResourceKey": "disableOption", - "value": false, - "enabled": true - } - ], - "entityKey": "enableAlwaysOn", - "booleanActions": 0, - "defaultValue": false, - "policyType": 89, - "enabled": true - }, - { - "dataType": 16, - "category": 120, - "nameResourceKey": "authenticationMethodName", - "descriptionResourceKey": "vPNAuthMethodDescription", - "childSettings": [ - - ], - "options": [ - { - "nameResourceKey": "selectAnAuthenticationMethod", - "enabled": true - }, - { - "nameResourceKey": "certificatesOption", - "value": "certificate", - "children": [ - { - "complexOptions": [ - { - "dataType": 4, - "category": 120, - "nameResourceKey": "vPNPolicySelectAClientCertificateName", - "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "identityCertificate", - "booleanActions": 0, - "policyType": 89, - "enabled": false - }, - { - "dataType": 4, - "category": 120, - "nameResourceKey": "vPNPolicySelectAClientCertificateName", - "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "identityCertificate", - "booleanActions": 0, - "policyType": 89, - "enabled": false - } - ], - "dataType": 5, - "category": 120, - "nameResourceKey": "authenticationCertificate", - "descriptionResourceKey": "clientCertForClientAuthenticationDescription", - "emptyValueResourceKey": "selectCertificate", - "childSettings": [ - - ], - "options": [ - - ], - "booleanActions": 0, - "policyType": 89, - "enabled": true - } - ], - "enabled": true - }, - { - "nameResourceKey": "usernameAndPasswordOption", - "value": "usernameAndPassword", - "enabled": true - }, - { - "nameResourceKey": "derivedCredentialsOption", - "value": "derivedCredential", - "enabled": false - } - ], - "entityKey": "authenticationMethod", - "booleanActions": 0, - "policyType": 89, - "enabled": true - }, - { - "dataType": 0, - "category": 120, - "nameResourceKey": "vPNPolicyRememberCredentialsName", - "descriptionResourceKey": "empty", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "rememberUserCredentials", - "booleanActions": 2, - "policyType": 89, - "enabled": true - }, - { - "dataType": 12, - "category": 120, - "nameResourceKey": "vPNPolicyCustomXMLName", - "descriptionResourceKey": "empty", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "customXml", - "booleanActions": 0, - "policyType": 89, - "enabled": true - } - ], - "enabled": true - }, - { - "nameResourceKey": "checkPointCapsuleVPNOption", - "value": "checkPointCapsuleVpn", - "children": [ - { - "dataType": 19, - "category": 120, - "nameResourceKey": "vPNPolicyEnableAlwaysOnName", - "descriptionResourceKey": "vPNPolicyEnableAlwaysOnDescription", - "childSettings": [ - - ], - "options": [ - { - "nameResourceKey": "enableOption", - "value": true, - "enabled": true - }, - { - "nameResourceKey": "disableOption", - "value": false, - "enabled": true - } - ], - "entityKey": "enableAlwaysOn", - "booleanActions": 0, - "defaultValue": false, - "policyType": 89, - "enabled": true - }, - { - "dataType": 16, - "category": 120, - "nameResourceKey": "authenticationMethodName", - "descriptionResourceKey": "vPNAuthMethodDescription", - "childSettings": [ - - ], - "options": [ - { - "nameResourceKey": "selectAnAuthenticationMethod", - "enabled": true - }, - { - "nameResourceKey": "certificatesOption", - "value": "certificate", - "children": [ - { - "complexOptions": [ - { - "dataType": 4, - "category": 120, - "nameResourceKey": "vPNPolicySelectAClientCertificateName", - "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "identityCertificate", - "booleanActions": 0, - "policyType": 89, - "enabled": false - }, - { - "dataType": 4, - "category": 120, - "nameResourceKey": "vPNPolicySelectAClientCertificateName", - "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "identityCertificate", - "booleanActions": 0, - "policyType": 89, - "enabled": false - } - ], - "dataType": 5, - "category": 120, - "nameResourceKey": "authenticationCertificate", - "descriptionResourceKey": "clientCertForClientAuthenticationDescription", - "emptyValueResourceKey": "selectCertificate", - "childSettings": [ - - ], - "options": [ - - ], - "booleanActions": 0, - "policyType": 89, - "enabled": true - } - ], - "enabled": true - }, - { - "nameResourceKey": "usernameAndPasswordOption", - "value": "usernameAndPassword", - "enabled": true - }, - { - "nameResourceKey": "derivedCredentialsOption", - "value": "derivedCredential", - "enabled": false - } - ], - "entityKey": "authenticationMethod", - "booleanActions": 0, - "policyType": 89, - "enabled": true - }, - { - "dataType": 0, - "category": 120, - "nameResourceKey": "vPNPolicyRememberCredentialsName", - "descriptionResourceKey": "empty", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "rememberUserCredentials", - "booleanActions": 2, - "policyType": 89, - "enabled": true - }, - { - "dataType": 12, - "category": 120, - "nameResourceKey": "vPNPolicyCustomXMLName", - "descriptionResourceKey": "empty", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "customXml", - "booleanActions": 0, - "policyType": 89, - "enabled": true - } - ], - "enabled": true - }, - { - "nameResourceKey": "citrixOption", - "value": "citrix", - "children": [ - { - "dataType": 19, - "category": 120, - "nameResourceKey": "vPNPolicyEnableAlwaysOnName", - "descriptionResourceKey": "vPNPolicyEnableAlwaysOnDescription", - "childSettings": [ - - ], - "options": [ - { - "nameResourceKey": "enableOption", - "value": true, - "enabled": true - }, - { - "nameResourceKey": "disableOption", - "value": false, - "enabled": true - } - ], - "entityKey": "enableAlwaysOn", - "booleanActions": 0, - "defaultValue": false, - "policyType": 89, - "enabled": true - }, - { - "dataType": 16, - "category": 120, - "nameResourceKey": "authenticationMethodName", - "descriptionResourceKey": "vPNAuthMethodDescription", - "childSettings": [ - - ], - "options": [ - { - "nameResourceKey": "selectAnAuthenticationMethod", - "enabled": true - }, - { - "nameResourceKey": "certificatesOption", - "value": "certificate", - "children": [ - { - "complexOptions": [ - { - "dataType": 4, - "category": 120, - "nameResourceKey": "vPNPolicySelectAClientCertificateName", - "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "identityCertificate", - "booleanActions": 0, - "policyType": 89, - "enabled": false - }, - { - "dataType": 4, - "category": 120, - "nameResourceKey": "vPNPolicySelectAClientCertificateName", - "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "identityCertificate", - "booleanActions": 0, - "policyType": 89, - "enabled": false - } - ], - "dataType": 5, - "category": 120, - "nameResourceKey": "authenticationCertificate", - "descriptionResourceKey": "clientCertForClientAuthenticationDescription", - "emptyValueResourceKey": "selectCertificate", - "childSettings": [ - - ], - "options": [ - - ], - "booleanActions": 0, - "policyType": 89, - "enabled": true - } - ], - "enabled": true - }, - { - "nameResourceKey": "usernameAndPasswordOption", - "value": "usernameAndPassword", - "enabled": true - }, - { - "nameResourceKey": "derivedCredentialsOption", - "value": "derivedCredential", - "enabled": false - } - ], - "entityKey": "authenticationMethod", - "booleanActions": 0, - "policyType": 89, - "enabled": true - }, - { - "dataType": 0, - "category": 120, - "nameResourceKey": "vPNPolicyRememberCredentialsName", - "descriptionResourceKey": "empty", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "rememberUserCredentials", - "booleanActions": 2, - "policyType": 89, - "enabled": true - }, - { - "dataType": 12, - "category": 120, - "nameResourceKey": "vPNPolicyCustomXMLName", - "descriptionResourceKey": "empty", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "customXml", - "booleanActions": 0, - "policyType": 89, - "enabled": true - } - ], - "enabled": true - }, - { - "nameResourceKey": "paloAltoGlobalProtectOption", - "value": "paloAltoGlobalProtect", - "children": [ - { - "dataType": 19, - "category": 120, - "nameResourceKey": "vPNPolicyEnableAlwaysOnName", - "descriptionResourceKey": "vPNPolicyEnableAlwaysOnDescription", - "childSettings": [ - - ], - "options": [ - { - "nameResourceKey": "enableOption", - "value": true, - "enabled": true - }, - { - "nameResourceKey": "disableOption", - "value": false, - "enabled": true - } - ], - "entityKey": "enableAlwaysOn", - "booleanActions": 0, - "defaultValue": false, - "policyType": 89, - "enabled": true - }, - { - "dataType": 16, - "category": 120, - "nameResourceKey": "authenticationMethodName", - "descriptionResourceKey": "vPNAuthMethodDescription", - "childSettings": [ - - ], - "options": [ - { - "nameResourceKey": "selectAnAuthenticationMethod", - "enabled": true - }, - { - "nameResourceKey": "certificatesOption", - "value": "certificate", - "children": [ - { - "complexOptions": [ - { - "dataType": 4, - "category": 120, - "nameResourceKey": "vPNPolicySelectAClientCertificateName", - "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "identityCertificate", - "booleanActions": 0, - "policyType": 89, - "enabled": false - }, - { - "dataType": 4, - "category": 120, - "nameResourceKey": "vPNPolicySelectAClientCertificateName", - "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "identityCertificate", - "booleanActions": 0, - "policyType": 89, - "enabled": false - } - ], - "dataType": 5, - "category": 120, - "nameResourceKey": "authenticationCertificate", - "descriptionResourceKey": "clientCertForClientAuthenticationDescription", - "emptyValueResourceKey": "selectCertificate", - "childSettings": [ - - ], - "options": [ - - ], - "booleanActions": 0, - "policyType": 89, - "enabled": true - } - ], - "enabled": true - }, - { - "nameResourceKey": "usernameAndPasswordOption", - "value": "usernameAndPassword", - "enabled": true - }, - { - "nameResourceKey": "derivedCredentialsOption", - "value": "derivedCredential", - "enabled": false - } - ], - "entityKey": "authenticationMethod", - "booleanActions": 0, - "policyType": 89, - "enabled": true - }, - { - "dataType": 0, - "category": 120, - "nameResourceKey": "vPNPolicyRememberCredentialsName", - "descriptionResourceKey": "empty", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "rememberUserCredentials", - "booleanActions": 2, - "policyType": 89, - "enabled": true - }, - { - "dataType": 12, - "category": 120, - "nameResourceKey": "vPNPolicyCustomXMLName", - "descriptionResourceKey": "empty", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "customXml", - "booleanActions": 0, - "policyType": 89, - "enabled": true - } - ], - "enabled": true - }, - { - "nameResourceKey": "automaticOption", - "value": "automatic", - "children": [ - { - "dataType": 19, - "category": 120, - "nameResourceKey": "vPNPolicyEnableAlwaysOnName", - "descriptionResourceKey": "vPNPolicyEnableAlwaysOnDescription", - "childSettings": [ - - ], - "options": [ - { - "nameResourceKey": "enableOption", - "value": true, - "enabled": true - }, - { - "nameResourceKey": "disableOption", - "value": false, - "enabled": true - } - ], - "entityKey": "enableAlwaysOn", - "booleanActions": 0, - "defaultValue": false, - "policyType": 89, - "enabled": true - }, - { - "dataType": 0, - "category": 120, - "nameResourceKey": "vPNPolicyRememberCredentialsName", - "descriptionResourceKey": "empty", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "rememberUserCredentials", - "booleanActions": 2, - "policyType": 89, - "enabled": true - }, - { - "dataType": 16, - "category": 120, - "nameResourceKey": "authenticationMethodName", - "descriptionResourceKey": "vPNAuthMethodDescription", - "childSettings": [ - - ], - "options": [ - { - "nameResourceKey": "selectAnAuthenticationMethod", - "enabled": true - }, - { - "nameResourceKey": "certificatesOption", - "value": "customEapXml", - "children": [ - { - "complexOptions": [ - { - "dataType": 4, - "category": 120, - "nameResourceKey": "vPNPolicySelectAClientCertificateName", - "descriptionResourceKey": "clientCertForEapXmlClientAuthenticationDescription", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "identityCertificate", - "booleanActions": 0, - "policyType": 89, - "enabled": true - } - ], - "dataType": 5, - "category": 120, - "nameResourceKey": "authenticationCertificate", - "descriptionResourceKey": "clientCertForEapXmlClientAuthenticationDescription", - "emptyValueResourceKey": "selectCertificate", - "childSettings": [ - - ], - "options": [ - - ], - "booleanActions": 0, - "policyType": 89, - "enabled": true - } - ], - "enabled": true - }, - { - "nameResourceKey": "derivedCredentialsOption", - "value": "derivedCredential", - "enabled": true - } - ], - "entityKey": "authenticationMethod", - "booleanActions": 0, - "policyType": 89, - "enabled": false - }, - { - "value": "customEapXml", - "dataType": 9, - "category": 120, - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "authenticationMethod", - "booleanActions": 0, - "policyType": 89, - "enabled": false - }, - { - "complexOptions": [ - { - "dataType": 4, - "category": 120, - "nameResourceKey": "vPNPolicySelectAClientCertificateName", - "descriptionResourceKey": "clientCertForEapXmlClientAuthenticationDescription", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "identityCertificate", - "booleanActions": 0, - "policyType": 89, - "enabled": true - } - ], - "dataType": 5, - "category": 120, - "nameResourceKey": "authenticationCertificate", - "descriptionResourceKey": "clientCertForEapXmlClientAuthenticationDescription", - "emptyValueResourceKey": "selectCertificate", - "childSettings": [ - - ], - "options": [ - - ], - "booleanActions": 0, - "policyType": 89, - "enabled": false - }, - { - "dataType": 12, - "category": 120, - "nameResourceKey": "eAPXmlName", - "descriptionResourceKey": "vPNEAPXMLDescription", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "eapXml", - "booleanActions": 0, - "policyType": 89, - "enabled": true - } - ], - "enabled": true - }, - { - "nameResourceKey": "iKEOption", - "value": "ikEv2", - "children": [ - { - "dataType": 19, - "category": 120, - "nameResourceKey": "vPNPolicyEnableAlwaysOnName", - "descriptionResourceKey": "vPNPolicyEnableAlwaysOnDescription", - "childSettings": [ - - ], - "options": [ - { - "nameResourceKey": "enableOption", - "value": true, - "enabled": true - }, - { - "nameResourceKey": "disableOption", - "value": false, - "enabled": true - } - ], - "entityKey": "enableAlwaysOn", - "booleanActions": 0, - "defaultValue": false, - "policyType": 89, - "enabled": true - }, - { - "dataType": 0, - "category": 120, - "nameResourceKey": "vPNPolicyRememberCredentialsName", - "descriptionResourceKey": "empty", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "rememberUserCredentials", - "booleanActions": 2, - "policyType": 89, - "enabled": true - }, - { - "dataType": 16, - "category": 120, - "nameResourceKey": "authenticationMethodName", - "descriptionResourceKey": "authenticationMethodIKEv2Description", - "childSettings": [ - - ], - "options": [ - { - "nameResourceKey": "selectAnAuthenticationMethod", - "enabled": true - }, - { - "nameResourceKey": "eAPName", - "value": "customEapXml", - "children": [ - { - "complexOptions": [ - { - "dataType": 4, - "category": 120, - "nameResourceKey": "vPNPolicySelectAClientCertificateName", - "descriptionResourceKey": "clientCertForEapXmlClientAuthenticationDescription", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "identityCertificate", - "booleanActions": 0, - "policyType": 89, - "enabled": true - } - ], - "dataType": 5, - "category": 120, - "nameResourceKey": "authenticationCertificate", - "descriptionResourceKey": "clientCertForEapXmlClientAuthenticationDescription", - "emptyValueResourceKey": "selectCertificate", - "childSettings": [ - - ], - "options": [ - - ], - "booleanActions": 0, - "policyType": 89, - "enabled": true - }, - { - "dataType": 12, - "category": 120, - "nameResourceKey": "eAPXmlName", - "descriptionResourceKey": "vPNEAPXMLDescription", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "eapXml", - "booleanActions": 0, - "policyType": 89, - "enabled": true - } - ], - "enabled": true - }, - { - "nameResourceKey": "machineCertificatesName", - "value": "certificate", - "children": [ - { - "complexOptions": [ - { - "dataType": 4, - "category": 120, - "nameResourceKey": "vPNPolicySelectAClientCertificateName", - "descriptionResourceKey": "clientCertForEapXmlClientAuthenticationDescription", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "identityCertificate", - "booleanActions": 0, - "policyType": 89, - "enabled": true - } - ], - "dataType": 5, - "category": 120, - "nameResourceKey": "authenticationCertificate", - "descriptionResourceKey": "clientCertForEapXmlClientAuthenticationDescription", - "emptyValueResourceKey": "selectCertificate", - "childSettings": [ - - ], - "options": [ - - ], - "booleanActions": 0, - "policyType": 89, - "enabled": true - } - ], - "enabled": true - }, - { - "nameResourceKey": "derivedCredentialsOption", - "value": "derivedCredential", - "children": [ - { - "dataType": 12, - "category": 120, - "nameResourceKey": "eAPXmlName", - "descriptionResourceKey": "vPNEAPXMLDescription", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "eapXml", - "booleanActions": 0, - "policyType": 89, - "enabled": true - } - ], - "enabled": false - } - ], - "entityKey": "authenticationMethod", - "booleanActions": 0, - "policyType": 89, - "enabled": true - }, - { - "dataType": 19, - "category": 120, - "nameResourceKey": "vPNPolicyEnableDeviceTunnelName", - "descriptionResourceKey": "vPNPolicyEnableDeviceTunnelDescription", - "childSettings": [ - - ], - "options": [ - { - "nameResourceKey": "enableOption", - "value": true, - "enabled": true - }, - { - "nameResourceKey": "disableOption", - "value": false, - "enabled": true - } - ], - "entityKey": "enableDeviceTunnel", - "booleanActions": 0, - "defaultValue": false, - "policyType": 89, - "enabled": false - }, - { - "complexOptions": [ - { - "isSettingDescription": false, - "showAsSectionHeader": false, - "dataType": 8, - "category": 120, - "nameResourceKey": "iKESecurityAssociationParamName", - "childSettings": [ - - ], - "options": [ - - ], - "booleanActions": 0, - "policyType": 89, - "enabled": false - }, - { - "dataType": 16, - "category": 120, - "nameResourceKey": "encryptionMethodName", - "descriptionResourceKey": "encryptionMethodDescription", - "childSettings": [ - - ], - "options": [ - { - "nameResourceKey": "notConfigured", - "enabled": true - }, - { - "nameResourceKey": "dES", - "value": "des", - "enabled": true - }, - { - "nameResourceKey": "threeDES", - "value": "tripleDes", - "enabled": true - }, - { - "nameResourceKey": "aES128", - "value": "aes128", - "enabled": true - }, - { - "nameResourceKey": "aES192", - "value": "aes192", - "enabled": true - }, - { - "nameResourceKey": "aES256", - "value": "aes256", - "enabled": true - }, - { - "nameResourceKey": "authenticationTransformConstantsGCMAES128", - "value": "aes128Gcm", - "enabled": true - }, - { - "nameResourceKey": "authenticationTransformConstantsGCMAES256", - "value": "aes256Gcm", - "enabled": true - } - ], - "entityKey": "encryptionMethod", - "booleanActions": 0, - "policyType": 89, - "enabled": false - }, - { - "dataType": 16, - "category": 120, - "nameResourceKey": "integrityCheckMethodName", - "descriptionResourceKey": "integrityCheckMethodDescription", - "childSettings": [ - - ], - "options": [ - { - "nameResourceKey": "notConfigured", - "enabled": true - }, - { - "nameResourceKey": "mD5", - "value": "md5", - "enabled": true - }, - { - "nameResourceKey": "sHA196", - "value": "sha1_96", - "enabled": true - }, - { - "nameResourceKey": "sHA2256", - "value": "sha2_256", - "enabled": true - }, - { - "nameResourceKey": "sHA2384", - "value": "sha2_384", - "enabled": true - } - ], - "entityKey": "integrityCheckMethod", - "booleanActions": 0, - "policyType": 89, - "enabled": false - }, - { - "dataType": 16, - "category": 120, - "nameResourceKey": "dHGroupName", - "descriptionResourceKey": "dHGroupDescription", - "childSettings": [ - - ], - "options": [ - { - "nameResourceKey": "notConfigured", - "enabled": true - }, - { - "displayText": "1", - "value": "group1", - "enabled": true - }, - { - "displayText": "2", - "value": "group2", - "enabled": true - }, - { - "displayText": "14", - "value": "group14", - "enabled": true - }, - { - "displayText": "19", - "value": "ecp256", - "enabled": true - }, - { - "displayText": "20", - "value": "ecp384", - "enabled": true - }, - { - "displayText": "24", - "value": "group24", - "enabled": true - } - ], - "entityKey": "dhGroup", - "booleanActions": 0, - "policyType": 89, - "enabled": false - }, - { - "isSettingDescription": false, - "showAsSectionHeader": false, - "dataType": 8, - "category": 120, - "nameResourceKey": "childSecurityAssociationParamName", - "childSettings": [ - - ], - "options": [ - - ], - "booleanActions": 0, - "policyType": 89, - "enabled": false - }, - { - "dataType": 16, - "category": 120, - "nameResourceKey": "cipherTransformAlgorithmName", - "descriptionResourceKey": "cipherTransformAlgorithmDescription", - "childSettings": [ - - ], - "options": [ - { - "nameResourceKey": "notConfigured", - "enabled": true - }, - { - "nameResourceKey": "cipherTransformConstantsDES", - "value": "des", - "enabled": true - }, - { - "nameResourceKey": "cipherTransformConstants3DES", - "value": "tripleDes", - "enabled": true - }, - { - "nameResourceKey": "cipherTransformConstantsAES128", - "value": "aes128", - "enabled": true - }, - { - "nameResourceKey": "cipherTransformConstantsAES192", - "value": "aes192", - "enabled": true - }, - { - "nameResourceKey": "cipherTransformConstantsAES256", - "value": "aes256", - "enabled": true - }, - { - "nameResourceKey": "authenticationTransformConstantsGCMAES128", - "value": "aes128Gcm", - "enabled": true - }, - { - "nameResourceKey": "authenticationTransformConstantsGCMAES192", - "value": "aes192Gcm", - "enabled": true - }, - { - "nameResourceKey": "authenticationTransformConstantsGCMAES256", - "value": "aes256Gcm", - "enabled": true - } - ], - "entityKey": "cipherTransformConstants", - "booleanActions": 0, - "policyType": 89, - "enabled": false - }, - { - "dataType": 16, - "category": 120, - "nameResourceKey": "authenticationTransformAlgorithmName", - "descriptionResourceKey": "authenticationTransformAlgorithmDescription", - "childSettings": [ - - ], - "options": [ - { - "nameResourceKey": "notConfigured", - "enabled": true - }, - { - "nameResourceKey": "authenticationTransformConstantsMD596", - "value": "md5_96", - "enabled": true - }, - { - "nameResourceKey": "authenticationTransformConstantsSHA196", - "value": "sha1_96", - "enabled": true - }, - { - "nameResourceKey": "authenticationTransformConstantsSHA256128", - "value": "sha_256_128", - "enabled": true - }, - { - "nameResourceKey": "authenticationTransformConstantsGCMAES128", - "value": "aes128Gcm", - "enabled": true - }, - { - "nameResourceKey": "authenticationTransformConstantsGCMAES192", - "value": "aes192Gcm", - "enabled": true - }, - { - "nameResourceKey": "authenticationTransformConstantsGCMAES256", - "value": "aes256Gcm", - "enabled": true - } - ], - "entityKey": "authenticationTransformConstants", - "booleanActions": 0, - "policyType": 89, - "enabled": false - }, - { - "dataType": 16, - "category": 120, - "nameResourceKey": "pFSGroupName", - "descriptionResourceKey": "pFSGroupDescription", - "childSettings": [ - - ], - "options": [ - { - "nameResourceKey": "notConfigured", - "enabled": true - }, - { - "nameResourceKey": "pFSMMDescription", - "value": "pfsMM", - "enabled": true - }, - { - "displayText": "1", - "value": "pfs1", - "enabled": true - }, - { - "displayText": "2", - "value": "pfs2", - "enabled": true - }, - { - "displayText": "14", - "value": "pfs2048", - "enabled": true - }, - { - "displayText": "19", - "value": "ecp256", - "enabled": true - }, - { - "displayText": "20", - "value": "ecp384", - "enabled": true - }, - { - "displayText": "24", - "value": "pfs24", - "enabled": true - } - ], - "entityKey": "pfsGroup", - "booleanActions": 0, - "policyType": 89, - "enabled": false - } - ], - "dataType": 6, - "category": 120, - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "cryptographySuite", - "booleanActions": 0, - "policyType": 89, - "enabled": true - } - ], - "enabled": true - }, - { - "nameResourceKey": "lTPOption", - "value": "l2tp", - "children": [ - { - "dataType": 19, - "category": 120, - "nameResourceKey": "vPNPolicyEnableAlwaysOnName", - "descriptionResourceKey": "vPNPolicyEnableAlwaysOnDescription", - "childSettings": [ - - ], - "options": [ - { - "nameResourceKey": "enableOption", - "value": true, - "enabled": true - }, - { - "nameResourceKey": "disableOption", - "value": false, - "enabled": true - } - ], - "entityKey": "enableAlwaysOn", - "booleanActions": 0, - "defaultValue": false, - "policyType": 89, - "enabled": true - }, - { - "dataType": 0, - "category": 120, - "nameResourceKey": "vPNPolicyRememberCredentialsName", - "descriptionResourceKey": "empty", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "rememberUserCredentials", - "booleanActions": 2, - "policyType": 89, - "enabled": true - }, - { - "dataType": 16, - "category": 120, - "nameResourceKey": "authenticationMethodName", - "descriptionResourceKey": "vPNAuthMethodDescription", - "childSettings": [ - - ], - "options": [ - { - "nameResourceKey": "selectAnAuthenticationMethod", - "enabled": true - }, - { - "nameResourceKey": "certificatesOption", - "value": "customEapXml", - "children": [ - { - "complexOptions": [ - { - "dataType": 4, - "category": 120, - "nameResourceKey": "vPNPolicySelectAClientCertificateName", - "descriptionResourceKey": "clientCertForEapXmlClientAuthenticationDescription", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "identityCertificate", - "booleanActions": 0, - "policyType": 89, - "enabled": true - } - ], - "dataType": 5, - "category": 120, - "nameResourceKey": "authenticationCertificate", - "descriptionResourceKey": "clientCertForEapXmlClientAuthenticationDescription", - "emptyValueResourceKey": "selectCertificate", - "childSettings": [ - - ], - "options": [ - - ], - "booleanActions": 0, - "policyType": 89, - "enabled": true - } - ], - "enabled": true - }, - { - "nameResourceKey": "derivedCredentialsOption", - "value": "derivedCredential", - "enabled": true - } - ], - "entityKey": "authenticationMethod", - "booleanActions": 0, - "policyType": 89, - "enabled": false - }, - { - "value": "customEapXml", - "dataType": 9, - "category": 120, - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "authenticationMethod", - "booleanActions": 0, - "policyType": 89, - "enabled": false - }, - { - "complexOptions": [ - { - "dataType": 4, - "category": 120, - "nameResourceKey": "vPNPolicySelectAClientCertificateName", - "descriptionResourceKey": "clientCertForEapXmlClientAuthenticationDescription", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "identityCertificate", - "booleanActions": 0, - "policyType": 89, - "enabled": true - } - ], - "dataType": 5, - "category": 120, - "nameResourceKey": "authenticationCertificate", - "descriptionResourceKey": "clientCertForEapXmlClientAuthenticationDescription", - "emptyValueResourceKey": "selectCertificate", - "childSettings": [ - - ], - "options": [ - - ], - "booleanActions": 0, - "policyType": 89, - "enabled": false - }, - { - "dataType": 12, - "category": 120, - "nameResourceKey": "eAPXmlName", - "descriptionResourceKey": "vPNEAPXMLDescription", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "eapXml", - "booleanActions": 0, - "policyType": 89, - "enabled": true - } - ], - "enabled": true - }, - { - "nameResourceKey": "pPTPOption", - "value": "pptp", - "children": [ - { - "dataType": 19, - "category": 120, - "nameResourceKey": "vPNPolicyEnableAlwaysOnName", - "descriptionResourceKey": "vPNPolicyEnableAlwaysOnDescription", - "childSettings": [ - - ], - "options": [ - { - "nameResourceKey": "enableOption", - "value": true, - "enabled": true - }, - { - "nameResourceKey": "disableOption", - "value": false, - "enabled": true - } - ], - "entityKey": "enableAlwaysOn", - "booleanActions": 0, - "defaultValue": false, - "policyType": 89, - "enabled": true - }, - { - "dataType": 0, - "category": 120, - "nameResourceKey": "vPNPolicyRememberCredentialsName", - "descriptionResourceKey": "empty", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "rememberUserCredentials", - "booleanActions": 2, - "policyType": 89, - "enabled": true - }, - { - "dataType": 16, - "category": 120, - "nameResourceKey": "authenticationMethodName", - "descriptionResourceKey": "vPNAuthMethodDescription", - "childSettings": [ - - ], - "options": [ - { - "nameResourceKey": "selectAnAuthenticationMethod", - "enabled": true - }, - { - "nameResourceKey": "certificatesOption", - "value": "customEapXml", - "children": [ - { - "complexOptions": [ - { - "dataType": 4, - "category": 120, - "nameResourceKey": "vPNPolicySelectAClientCertificateName", - "descriptionResourceKey": "clientCertForEapXmlClientAuthenticationDescription", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "identityCertificate", - "booleanActions": 0, - "policyType": 89, - "enabled": true - } - ], - "dataType": 5, - "category": 120, - "nameResourceKey": "authenticationCertificate", - "descriptionResourceKey": "clientCertForEapXmlClientAuthenticationDescription", - "emptyValueResourceKey": "selectCertificate", - "childSettings": [ - - ], - "options": [ - - ], - "booleanActions": 0, - "policyType": 89, - "enabled": true - } - ], - "enabled": true - }, - { - "nameResourceKey": "derivedCredentialsOption", - "value": "derivedCredential", - "enabled": true - } - ], - "entityKey": "authenticationMethod", - "booleanActions": 0, - "policyType": 89, - "enabled": false - }, - { - "value": "customEapXml", - "dataType": 9, - "category": 120, - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "authenticationMethod", - "booleanActions": 0, - "policyType": 89, - "enabled": false - }, - { - "complexOptions": [ - { - "dataType": 4, - "category": 120, - "nameResourceKey": "vPNPolicySelectAClientCertificateName", - "descriptionResourceKey": "clientCertForEapXmlClientAuthenticationDescription", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "identityCertificate", - "booleanActions": 0, - "policyType": 89, - "enabled": true - } - ], - "dataType": 5, - "category": 120, - "nameResourceKey": "authenticationCertificate", - "descriptionResourceKey": "clientCertForEapXmlClientAuthenticationDescription", - "emptyValueResourceKey": "selectCertificate", - "childSettings": [ - - ], - "options": [ - - ], - "booleanActions": 0, - "policyType": 89, - "enabled": false - }, - { - "dataType": 12, - "category": 120, - "nameResourceKey": "eAPXmlName", - "descriptionResourceKey": "vPNEAPXMLDescription", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "eapXml", - "booleanActions": 0, - "policyType": 89, - "enabled": true - } - ], - "enabled": true - } - ], - "entityKey": "connectionType", - "booleanActions": 0, - "unconfiguredValue": "selectAConnectionType", - "policyType": 89, - "enabled": false - }, - { - "dataType": 16, - "category": 120, - "nameResourceKey": "vPNPolicyProfileTargetName", - "descriptionResourceKey": "vPNPolicyProfileTargetDescription", - "childSettings": [ - - ], - "options": [ - { - "nameResourceKey": "vPNPolicyProfileTargetUserOption", - "value": "user", - "children": [ - { - "dataType": 16, - "category": 120, - "nameResourceKey": "vPNPolicyConnectionTypeName", - "descriptionResourceKey": "vPNPolicyConnectionTypeDescriptionNoCustom", - "childSettings": [ - - ], - "options": [ - { - "nameResourceKey": "selectAConnectionType", - "enabled": true - }, - { - "nameResourceKey": "ciscoAnyConnectOption", - "value": "ciscoAnyConnect", - "children": [ - { - "dataType": 19, - "category": 120, - "nameResourceKey": "vPNPolicyEnableAlwaysOnName", - "descriptionResourceKey": "vPNPolicyEnableAlwaysOnDescription", - "childSettings": [ - - ], - "options": [ - { - "nameResourceKey": "enableOption", - "value": true, - "enabled": true - }, - { - "nameResourceKey": "disableOption", - "value": false, - "enabled": true - } - ], - "entityKey": "enableAlwaysOn", - "booleanActions": 0, - "defaultValue": false, - "policyType": 89, - "enabled": true - }, - { - "dataType": 16, - "category": 120, - "nameResourceKey": "authenticationMethodName", - "descriptionResourceKey": "vPNAuthMethodDescription", - "childSettings": [ - - ], - "options": [ - { - "nameResourceKey": "selectAnAuthenticationMethod", - "enabled": true - }, - { - "nameResourceKey": "certificatesOption", - "value": "certificate", - "children": [ - { - "complexOptions": [ - { - "dataType": 4, - "category": 120, - "nameResourceKey": "vPNPolicySelectAClientCertificateName", - "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "identityCertificate", - "booleanActions": 0, - "policyType": 89, - "enabled": false - }, - { - "dataType": 4, - "category": 120, - "nameResourceKey": "vPNPolicySelectAClientCertificateName", - "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "identityCertificate", - "booleanActions": 0, - "policyType": 89, - "enabled": false - } - ], - "dataType": 5, - "category": 120, - "nameResourceKey": "authenticationCertificate", - "descriptionResourceKey": "clientCertForClientAuthenticationDescription", - "emptyValueResourceKey": "selectCertificate", - "childSettings": [ - - ], - "options": [ - - ], - "booleanActions": 0, - "policyType": 89, - "enabled": true - } - ], - "enabled": true - }, - { - "nameResourceKey": "usernameAndPasswordOption", - "value": "usernameAndPassword", - "enabled": true - }, - { - "nameResourceKey": "derivedCredentialsOption", - "value": "derivedCredential", - "enabled": false - } - ], - "entityKey": "authenticationMethod", - "booleanActions": 0, - "policyType": 89, - "enabled": true - }, - { - "dataType": 0, - "category": 120, - "nameResourceKey": "vPNPolicyRememberCredentialsName", - "descriptionResourceKey": "empty", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "rememberUserCredentials", - "booleanActions": 2, - "policyType": 89, - "enabled": true - }, - { - "dataType": 12, - "category": 120, - "nameResourceKey": "vPNPolicyCustomXMLName", - "descriptionResourceKey": "empty", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "customXml", - "booleanActions": 0, - "policyType": 89, - "enabled": true - } - ], - "enabled": true - }, - { - "nameResourceKey": "pulseSecureOption", - "value": "pulseSecure", - "children": [ - { - "dataType": 19, - "category": 120, - "nameResourceKey": "vPNPolicyEnableAlwaysOnName", - "descriptionResourceKey": "vPNPolicyEnableAlwaysOnDescription", - "childSettings": [ - - ], - "options": [ - { - "nameResourceKey": "enableOption", - "value": true, - "enabled": true - }, - { - "nameResourceKey": "disableOption", - "value": false, - "enabled": true - } - ], - "entityKey": "enableAlwaysOn", - "booleanActions": 0, - "defaultValue": false, - "policyType": 89, - "enabled": true - }, - { - "dataType": 16, - "category": 120, - "nameResourceKey": "authenticationMethodName", - "descriptionResourceKey": "vPNAuthMethodDescription", - "childSettings": [ - - ], - "options": [ - { - "nameResourceKey": "selectAnAuthenticationMethod", - "enabled": true - }, - { - "nameResourceKey": "certificatesOption", - "value": "certificate", - "children": [ - { - "complexOptions": [ - { - "dataType": 4, - "category": 120, - "nameResourceKey": "vPNPolicySelectAClientCertificateName", - "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "identityCertificate", - "booleanActions": 0, - "policyType": 89, - "enabled": false - }, - { - "dataType": 4, - "category": 120, - "nameResourceKey": "vPNPolicySelectAClientCertificateName", - "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "identityCertificate", - "booleanActions": 0, - "policyType": 89, - "enabled": false - } - ], - "dataType": 5, - "category": 120, - "nameResourceKey": "authenticationCertificate", - "descriptionResourceKey": "clientCertForClientAuthenticationDescription", - "emptyValueResourceKey": "selectCertificate", - "childSettings": [ - - ], - "options": [ - - ], - "booleanActions": 0, - "policyType": 89, - "enabled": true - } - ], - "enabled": true - }, - { - "nameResourceKey": "usernameAndPasswordOption", - "value": "usernameAndPassword", - "enabled": true - }, - { - "nameResourceKey": "derivedCredentialsOption", - "value": "derivedCredential", - "enabled": false - } - ], - "entityKey": "authenticationMethod", - "booleanActions": 0, - "policyType": 89, - "enabled": true - }, - { - "dataType": 0, - "category": 120, - "nameResourceKey": "vPNPolicyRememberCredentialsName", - "descriptionResourceKey": "empty", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "rememberUserCredentials", - "booleanActions": 2, - "policyType": 89, - "enabled": true - }, - { - "dataType": 12, - "category": 120, - "nameResourceKey": "vPNPolicyCustomXMLName", - "descriptionResourceKey": "empty", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "customXml", - "booleanActions": 0, - "policyType": 89, - "enabled": true - } - ], - "enabled": true - }, - { - "nameResourceKey": "fFiveEdgeClientOption", - "value": "f5EdgeClient", - "children": [ - { - "dataType": 19, - "category": 120, - "nameResourceKey": "vPNPolicyEnableAlwaysOnName", - "descriptionResourceKey": "vPNPolicyEnableAlwaysOnDescription", - "childSettings": [ - - ], - "options": [ - { - "nameResourceKey": "enableOption", - "value": true, - "enabled": true - }, - { - "nameResourceKey": "disableOption", - "value": false, - "enabled": true - } - ], - "entityKey": "enableAlwaysOn", - "booleanActions": 0, - "defaultValue": false, - "policyType": 89, - "enabled": true - }, - { - "dataType": 16, - "category": 120, - "nameResourceKey": "authenticationMethodName", - "descriptionResourceKey": "vPNAuthMethodDescription", - "childSettings": [ - - ], - "options": [ - { - "nameResourceKey": "selectAnAuthenticationMethod", - "enabled": true - }, - { - "nameResourceKey": "certificatesOption", - "value": "certificate", - "children": [ - { - "complexOptions": [ - { - "dataType": 4, - "category": 120, - "nameResourceKey": "vPNPolicySelectAClientCertificateName", - "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "identityCertificate", - "booleanActions": 0, - "policyType": 89, - "enabled": false - }, - { - "dataType": 4, - "category": 120, - "nameResourceKey": "vPNPolicySelectAClientCertificateName", - "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "identityCertificate", - "booleanActions": 0, - "policyType": 89, - "enabled": false - } - ], - "dataType": 5, - "category": 120, - "nameResourceKey": "authenticationCertificate", - "descriptionResourceKey": "clientCertForClientAuthenticationDescription", - "emptyValueResourceKey": "selectCertificate", - "childSettings": [ - - ], - "options": [ - - ], - "booleanActions": 0, - "policyType": 89, - "enabled": true - } - ], - "enabled": true - }, - { - "nameResourceKey": "usernameAndPasswordOption", - "value": "usernameAndPassword", - "enabled": true - }, - { - "nameResourceKey": "derivedCredentialsOption", - "value": "derivedCredential", - "enabled": false - } - ], - "entityKey": "authenticationMethod", - "booleanActions": 0, - "policyType": 89, - "enabled": true - }, - { - "dataType": 0, - "category": 120, - "nameResourceKey": "vPNPolicyRememberCredentialsName", - "descriptionResourceKey": "empty", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "rememberUserCredentials", - "booleanActions": 2, - "policyType": 89, - "enabled": true - }, - { - "dataType": 12, - "category": 120, - "nameResourceKey": "vPNPolicyCustomXMLName", - "descriptionResourceKey": "empty", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "customXml", - "booleanActions": 0, - "policyType": 89, - "enabled": true - } - ], - "enabled": true - }, - { - "nameResourceKey": "dellSoniceWallMobileConnectOption", - "value": "dellSonicWallMobileConnect", - "children": [ - { - "dataType": 19, - "category": 120, - "nameResourceKey": "vPNPolicyEnableAlwaysOnName", - "descriptionResourceKey": "vPNPolicyEnableAlwaysOnDescription", - "childSettings": [ - - ], - "options": [ - { - "nameResourceKey": "enableOption", - "value": true, - "enabled": true - }, - { - "nameResourceKey": "disableOption", - "value": false, - "enabled": true - } - ], - "entityKey": "enableAlwaysOn", - "booleanActions": 0, - "defaultValue": false, - "policyType": 89, - "enabled": true - }, - { - "dataType": 16, - "category": 120, - "nameResourceKey": "authenticationMethodName", - "descriptionResourceKey": "vPNAuthMethodDescription", - "childSettings": [ - - ], - "options": [ - { - "nameResourceKey": "selectAnAuthenticationMethod", - "enabled": true - }, - { - "nameResourceKey": "certificatesOption", - "value": "certificate", - "children": [ - { - "complexOptions": [ - { - "dataType": 4, - "category": 120, - "nameResourceKey": "vPNPolicySelectAClientCertificateName", - "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "identityCertificate", - "booleanActions": 0, - "policyType": 89, - "enabled": false - }, - { - "dataType": 4, - "category": 120, - "nameResourceKey": "vPNPolicySelectAClientCertificateName", - "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "identityCertificate", - "booleanActions": 0, - "policyType": 89, - "enabled": false - } - ], - "dataType": 5, - "category": 120, - "nameResourceKey": "authenticationCertificate", - "descriptionResourceKey": "clientCertForClientAuthenticationDescription", - "emptyValueResourceKey": "selectCertificate", - "childSettings": [ - - ], - "options": [ - - ], - "booleanActions": 0, - "policyType": 89, - "enabled": true - } - ], - "enabled": true - }, - { - "nameResourceKey": "usernameAndPasswordOption", - "value": "usernameAndPassword", - "enabled": true - }, - { - "nameResourceKey": "derivedCredentialsOption", - "value": "derivedCredential", - "enabled": false - } - ], - "entityKey": "authenticationMethod", - "booleanActions": 0, - "policyType": 89, - "enabled": true - }, - { - "dataType": 0, - "category": 120, - "nameResourceKey": "vPNPolicyRememberCredentialsName", - "descriptionResourceKey": "empty", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "rememberUserCredentials", - "booleanActions": 2, - "policyType": 89, - "enabled": true - }, - { - "dataType": 12, - "category": 120, - "nameResourceKey": "vPNPolicyCustomXMLName", - "descriptionResourceKey": "empty", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "customXml", - "booleanActions": 0, - "policyType": 89, - "enabled": true - } - ], - "enabled": true - }, - { - "nameResourceKey": "checkPointCapsuleVPNOption", - "value": "checkPointCapsuleVpn", - "children": [ - { - "dataType": 19, - "category": 120, - "nameResourceKey": "vPNPolicyEnableAlwaysOnName", - "descriptionResourceKey": "vPNPolicyEnableAlwaysOnDescription", - "childSettings": [ - - ], - "options": [ - { - "nameResourceKey": "enableOption", - "value": true, - "enabled": true - }, - { - "nameResourceKey": "disableOption", - "value": false, - "enabled": true - } - ], - "entityKey": "enableAlwaysOn", - "booleanActions": 0, - "defaultValue": false, - "policyType": 89, - "enabled": true - }, - { - "dataType": 16, - "category": 120, - "nameResourceKey": "authenticationMethodName", - "descriptionResourceKey": "vPNAuthMethodDescription", - "childSettings": [ - - ], - "options": [ - { - "nameResourceKey": "selectAnAuthenticationMethod", - "enabled": true - }, - { - "nameResourceKey": "certificatesOption", - "value": "certificate", - "children": [ - { - "complexOptions": [ - { - "dataType": 4, - "category": 120, - "nameResourceKey": "vPNPolicySelectAClientCertificateName", - "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "identityCertificate", - "booleanActions": 0, - "policyType": 89, - "enabled": false - }, - { - "dataType": 4, - "category": 120, - "nameResourceKey": "vPNPolicySelectAClientCertificateName", - "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "identityCertificate", - "booleanActions": 0, - "policyType": 89, - "enabled": false - } - ], - "dataType": 5, - "category": 120, - "nameResourceKey": "authenticationCertificate", - "descriptionResourceKey": "clientCertForClientAuthenticationDescription", - "emptyValueResourceKey": "selectCertificate", - "childSettings": [ - - ], - "options": [ - - ], - "booleanActions": 0, - "policyType": 89, - "enabled": true - } - ], - "enabled": true - }, - { - "nameResourceKey": "usernameAndPasswordOption", - "value": "usernameAndPassword", - "enabled": true - }, - { - "nameResourceKey": "derivedCredentialsOption", - "value": "derivedCredential", - "enabled": false - } - ], - "entityKey": "authenticationMethod", - "booleanActions": 0, - "policyType": 89, - "enabled": true - }, - { - "dataType": 0, - "category": 120, - "nameResourceKey": "vPNPolicyRememberCredentialsName", - "descriptionResourceKey": "empty", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "rememberUserCredentials", - "booleanActions": 2, - "policyType": 89, - "enabled": true - }, - { - "dataType": 12, - "category": 120, - "nameResourceKey": "vPNPolicyCustomXMLName", - "descriptionResourceKey": "empty", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "customXml", - "booleanActions": 0, - "policyType": 89, - "enabled": true - } - ], - "enabled": true - }, - { - "nameResourceKey": "citrixOption", - "value": "citrix", - "children": [ - { - "dataType": 19, - "category": 120, - "nameResourceKey": "vPNPolicyEnableAlwaysOnName", - "descriptionResourceKey": "vPNPolicyEnableAlwaysOnDescription", - "childSettings": [ - - ], - "options": [ - { - "nameResourceKey": "enableOption", - "value": true, - "enabled": true - }, - { - "nameResourceKey": "disableOption", - "value": false, - "enabled": true - } - ], - "entityKey": "enableAlwaysOn", - "booleanActions": 0, - "defaultValue": false, - "policyType": 89, - "enabled": true - }, - { - "dataType": 16, - "category": 120, - "nameResourceKey": "authenticationMethodName", - "descriptionResourceKey": "vPNAuthMethodDescription", - "childSettings": [ - - ], - "options": [ - { - "nameResourceKey": "selectAnAuthenticationMethod", - "enabled": true - }, - { - "nameResourceKey": "certificatesOption", - "value": "certificate", - "children": [ - { - "complexOptions": [ - { - "dataType": 4, - "category": 120, - "nameResourceKey": "vPNPolicySelectAClientCertificateName", - "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "identityCertificate", - "booleanActions": 0, - "policyType": 89, - "enabled": false - }, - { - "dataType": 4, - "category": 120, - "nameResourceKey": "vPNPolicySelectAClientCertificateName", - "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "identityCertificate", - "booleanActions": 0, - "policyType": 89, - "enabled": false - } - ], - "dataType": 5, - "category": 120, - "nameResourceKey": "authenticationCertificate", - "descriptionResourceKey": "clientCertForClientAuthenticationDescription", - "emptyValueResourceKey": "selectCertificate", - "childSettings": [ - - ], - "options": [ - - ], - "booleanActions": 0, - "policyType": 89, - "enabled": true - } - ], - "enabled": true - }, - { - "nameResourceKey": "usernameAndPasswordOption", - "value": "usernameAndPassword", - "enabled": true - }, - { - "nameResourceKey": "derivedCredentialsOption", - "value": "derivedCredential", - "enabled": false - } - ], - "entityKey": "authenticationMethod", - "booleanActions": 0, - "policyType": 89, - "enabled": true - }, - { - "dataType": 0, - "category": 120, - "nameResourceKey": "vPNPolicyRememberCredentialsName", - "descriptionResourceKey": "empty", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "rememberUserCredentials", - "booleanActions": 2, - "policyType": 89, - "enabled": true - }, - { - "dataType": 12, - "category": 120, - "nameResourceKey": "vPNPolicyCustomXMLName", - "descriptionResourceKey": "empty", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "customXml", - "booleanActions": 0, - "policyType": 89, - "enabled": true - } - ], - "enabled": true - }, - { - "nameResourceKey": "paloAltoGlobalProtectOption", - "value": "paloAltoGlobalProtect", - "children": [ - { - "dataType": 19, - "category": 120, - "nameResourceKey": "vPNPolicyEnableAlwaysOnName", - "descriptionResourceKey": "vPNPolicyEnableAlwaysOnDescription", - "childSettings": [ - - ], - "options": [ - { - "nameResourceKey": "enableOption", - "value": true, - "enabled": true - }, - { - "nameResourceKey": "disableOption", - "value": false, - "enabled": true - } - ], - "entityKey": "enableAlwaysOn", - "booleanActions": 0, - "defaultValue": false, - "policyType": 89, - "enabled": true - }, - { - "dataType": 16, - "category": 120, - "nameResourceKey": "authenticationMethodName", - "descriptionResourceKey": "vPNAuthMethodDescription", - "childSettings": [ - - ], - "options": [ - { - "nameResourceKey": "selectAnAuthenticationMethod", - "enabled": true - }, - { - "nameResourceKey": "certificatesOption", - "value": "certificate", - "children": [ - { - "complexOptions": [ - { - "dataType": 4, - "category": 120, - "nameResourceKey": "vPNPolicySelectAClientCertificateName", - "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "identityCertificate", - "booleanActions": 0, - "policyType": 89, - "enabled": false - }, - { - "dataType": 4, - "category": 120, - "nameResourceKey": "vPNPolicySelectAClientCertificateName", - "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "identityCertificate", - "booleanActions": 0, - "policyType": 89, - "enabled": false - } - ], - "dataType": 5, - "category": 120, - "nameResourceKey": "authenticationCertificate", - "descriptionResourceKey": "clientCertForClientAuthenticationDescription", - "emptyValueResourceKey": "selectCertificate", - "childSettings": [ - - ], - "options": [ - - ], - "booleanActions": 0, - "policyType": 89, - "enabled": true - } - ], - "enabled": true - }, - { - "nameResourceKey": "usernameAndPasswordOption", - "value": "usernameAndPassword", - "enabled": true - }, - { - "nameResourceKey": "derivedCredentialsOption", - "value": "derivedCredential", - "enabled": false - } - ], - "entityKey": "authenticationMethod", - "booleanActions": 0, - "policyType": 89, - "enabled": true - }, - { - "dataType": 0, - "category": 120, - "nameResourceKey": "vPNPolicyRememberCredentialsName", - "descriptionResourceKey": "empty", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "rememberUserCredentials", - "booleanActions": 2, - "policyType": 89, - "enabled": true - }, - { - "dataType": 12, - "category": 120, - "nameResourceKey": "vPNPolicyCustomXMLName", - "descriptionResourceKey": "empty", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "customXml", - "booleanActions": 0, - "policyType": 89, - "enabled": true - } - ], - "enabled": true - }, - { - "nameResourceKey": "automaticOption", - "value": "automatic", - "children": [ - { - "dataType": 19, - "category": 120, - "nameResourceKey": "vPNPolicyEnableAlwaysOnName", - "descriptionResourceKey": "vPNPolicyEnableAlwaysOnDescription", - "childSettings": [ - - ], - "options": [ - { - "nameResourceKey": "enableOption", - "value": true, - "enabled": true - }, - { - "nameResourceKey": "disableOption", - "value": false, - "enabled": true - } - ], - "entityKey": "enableAlwaysOn", - "booleanActions": 0, - "defaultValue": false, - "policyType": 89, - "enabled": true - }, - { - "dataType": 0, - "category": 120, - "nameResourceKey": "vPNPolicyRememberCredentialsName", - "descriptionResourceKey": "empty", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "rememberUserCredentials", - "booleanActions": 2, - "policyType": 89, - "enabled": true - }, - { - "dataType": 16, - "category": 120, - "nameResourceKey": "authenticationMethodName", - "descriptionResourceKey": "vPNAuthMethodDescription", - "childSettings": [ - - ], - "options": [ - { - "nameResourceKey": "selectAnAuthenticationMethod", - "enabled": true - }, - { - "nameResourceKey": "certificatesOption", - "value": "customEapXml", - "children": [ - { - "complexOptions": [ - { - "dataType": 4, - "category": 120, - "nameResourceKey": "vPNPolicySelectAClientCertificateName", - "descriptionResourceKey": "clientCertForEapXmlClientAuthenticationDescription", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "identityCertificate", - "booleanActions": 0, - "policyType": 89, - "enabled": true - } - ], - "dataType": 5, - "category": 120, - "nameResourceKey": "authenticationCertificate", - "descriptionResourceKey": "clientCertForEapXmlClientAuthenticationDescription", - "emptyValueResourceKey": "selectCertificate", - "childSettings": [ - - ], - "options": [ - - ], - "booleanActions": 0, - "policyType": 89, - "enabled": true - } - ], - "enabled": true - }, - { - "nameResourceKey": "derivedCredentialsOption", - "value": "derivedCredential", - "enabled": true - } - ], - "entityKey": "authenticationMethod", - "booleanActions": 0, - "policyType": 89, - "enabled": false - }, - { - "value": "customEapXml", - "dataType": 9, - "category": 120, - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "authenticationMethod", - "booleanActions": 0, - "policyType": 89, - "enabled": false - }, - { - "complexOptions": [ - { - "dataType": 4, - "category": 120, - "nameResourceKey": "vPNPolicySelectAClientCertificateName", - "descriptionResourceKey": "clientCertForEapXmlClientAuthenticationDescription", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "identityCertificate", - "booleanActions": 0, - "policyType": 89, - "enabled": true - } - ], - "dataType": 5, - "category": 120, - "nameResourceKey": "authenticationCertificate", - "descriptionResourceKey": "clientCertForEapXmlClientAuthenticationDescription", - "emptyValueResourceKey": "selectCertificate", - "childSettings": [ - - ], - "options": [ - - ], - "booleanActions": 0, - "policyType": 89, - "enabled": false - }, - { - "dataType": 12, - "category": 120, - "nameResourceKey": "eAPXmlName", - "descriptionResourceKey": "vPNEAPXMLDescription", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "eapXml", - "booleanActions": 0, - "policyType": 89, - "enabled": true - } - ], - "enabled": true - }, - { - "nameResourceKey": "iKEOption", - "value": "ikEv2", - "children": [ - { - "dataType": 19, - "category": 120, - "nameResourceKey": "vPNPolicyEnableAlwaysOnName", - "descriptionResourceKey": "vPNPolicyEnableAlwaysOnDescription", - "childSettings": [ - - ], - "options": [ - { - "nameResourceKey": "enableOption", - "value": true, - "enabled": true - }, - { - "nameResourceKey": "disableOption", - "value": false, - "enabled": true - } - ], - "entityKey": "enableAlwaysOn", - "booleanActions": 0, - "defaultValue": false, - "policyType": 89, - "enabled": true - }, - { - "dataType": 0, - "category": 120, - "nameResourceKey": "vPNPolicyRememberCredentialsName", - "descriptionResourceKey": "empty", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "rememberUserCredentials", - "booleanActions": 2, - "policyType": 89, - "enabled": true - }, - { - "dataType": 16, - "category": 120, - "nameResourceKey": "authenticationMethodName", - "descriptionResourceKey": "authenticationMethodIKEv2Description", - "childSettings": [ - - ], - "options": [ - { - "nameResourceKey": "selectAnAuthenticationMethod", - "enabled": true - }, - { - "nameResourceKey": "eAPName", - "value": "customEapXml", - "children": [ - { - "complexOptions": [ - { - "dataType": 4, - "category": 120, - "nameResourceKey": "vPNPolicySelectAClientCertificateName", - "descriptionResourceKey": "clientCertForEapXmlClientAuthenticationDescription", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "identityCertificate", - "booleanActions": 0, - "policyType": 89, - "enabled": true - } - ], - "dataType": 5, - "category": 120, - "nameResourceKey": "authenticationCertificate", - "descriptionResourceKey": "clientCertForEapXmlClientAuthenticationDescription", - "emptyValueResourceKey": "selectCertificate", - "childSettings": [ - - ], - "options": [ - - ], - "booleanActions": 0, - "policyType": 89, - "enabled": true - }, - { - "dataType": 12, - "category": 120, - "nameResourceKey": "eAPXmlName", - "descriptionResourceKey": "vPNEAPXMLDescription", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "eapXml", - "booleanActions": 0, - "policyType": 89, - "enabled": true - } - ], - "enabled": true - }, - { - "nameResourceKey": "machineCertificatesName", - "value": "certificate", - "children": [ - { - "complexOptions": [ - { - "dataType": 4, - "category": 120, - "nameResourceKey": "vPNPolicySelectAClientCertificateName", - "descriptionResourceKey": "clientCertForEapXmlClientAuthenticationDescription", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "identityCertificate", - "booleanActions": 0, - "policyType": 89, - "enabled": true - } - ], - "dataType": 5, - "category": 120, - "nameResourceKey": "authenticationCertificate", - "descriptionResourceKey": "clientCertForEapXmlClientAuthenticationDescription", - "emptyValueResourceKey": "selectCertificate", - "childSettings": [ - - ], - "options": [ - - ], - "booleanActions": 0, - "policyType": 89, - "enabled": true - } - ], - "enabled": true - }, - { - "nameResourceKey": "derivedCredentialsOption", - "value": "derivedCredential", - "children": [ - { - "dataType": 12, - "category": 120, - "nameResourceKey": "eAPXmlName", - "descriptionResourceKey": "vPNEAPXMLDescription", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "eapXml", - "booleanActions": 0, - "policyType": 89, - "enabled": true - } - ], - "enabled": false - } - ], - "entityKey": "authenticationMethod", - "booleanActions": 0, - "policyType": 89, - "enabled": true - }, - { - "dataType": 19, - "category": 120, - "nameResourceKey": "vPNPolicyEnableDeviceTunnelName", - "descriptionResourceKey": "vPNPolicyEnableDeviceTunnelDescription", - "childSettings": [ - - ], - "options": [ - { - "nameResourceKey": "enableOption", - "value": true, - "enabled": true - }, - { - "nameResourceKey": "disableOption", - "value": false, - "enabled": true - } - ], - "entityKey": "enableDeviceTunnel", - "booleanActions": 0, - "defaultValue": false, - "policyType": 89, - "enabled": false - }, - { - "complexOptions": [ - { - "isSettingDescription": false, - "showAsSectionHeader": false, - "dataType": 8, - "category": 120, - "nameResourceKey": "iKESecurityAssociationParamName", - "childSettings": [ - - ], - "options": [ - - ], - "booleanActions": 0, - "policyType": 89, - "enabled": false - }, - { - "dataType": 16, - "category": 120, - "nameResourceKey": "encryptionMethodName", - "descriptionResourceKey": "encryptionMethodDescription", - "childSettings": [ - - ], - "options": [ - { - "nameResourceKey": "notConfigured", - "enabled": true - }, - { - "nameResourceKey": "dES", - "value": "des", - "enabled": true - }, - { - "nameResourceKey": "threeDES", - "value": "tripleDes", - "enabled": true - }, - { - "nameResourceKey": "aES128", - "value": "aes128", - "enabled": true - }, - { - "nameResourceKey": "aES192", - "value": "aes192", - "enabled": true - }, - { - "nameResourceKey": "aES256", - "value": "aes256", - "enabled": true - }, - { - "nameResourceKey": "authenticationTransformConstantsGCMAES128", - "value": "aes128Gcm", - "enabled": true - }, - { - "nameResourceKey": "authenticationTransformConstantsGCMAES256", - "value": "aes256Gcm", - "enabled": true - } - ], - "entityKey": "encryptionMethod", - "booleanActions": 0, - "policyType": 89, - "enabled": false - }, - { - "dataType": 16, - "category": 120, - "nameResourceKey": "integrityCheckMethodName", - "descriptionResourceKey": "integrityCheckMethodDescription", - "childSettings": [ - - ], - "options": [ - { - "nameResourceKey": "notConfigured", - "enabled": true - }, - { - "nameResourceKey": "mD5", - "value": "md5", - "enabled": true - }, - { - "nameResourceKey": "sHA196", - "value": "sha1_96", - "enabled": true - }, - { - "nameResourceKey": "sHA2256", - "value": "sha2_256", - "enabled": true - }, - { - "nameResourceKey": "sHA2384", - "value": "sha2_384", - "enabled": true - } - ], - "entityKey": "integrityCheckMethod", - "booleanActions": 0, - "policyType": 89, - "enabled": false - }, - { - "dataType": 16, - "category": 120, - "nameResourceKey": "dHGroupName", - "descriptionResourceKey": "dHGroupDescription", - "childSettings": [ - - ], - "options": [ - { - "nameResourceKey": "notConfigured", - "enabled": true - }, - { - "displayText": "1", - "value": "group1", - "enabled": true - }, - { - "displayText": "2", - "value": "group2", - "enabled": true - }, - { - "displayText": "14", - "value": "group14", - "enabled": true - }, - { - "displayText": "19", - "value": "ecp256", - "enabled": true - }, - { - "displayText": "20", - "value": "ecp384", - "enabled": true - }, - { - "displayText": "24", - "value": "group24", - "enabled": true - } - ], - "entityKey": "dhGroup", - "booleanActions": 0, - "policyType": 89, - "enabled": false - }, - { - "isSettingDescription": false, - "showAsSectionHeader": false, - "dataType": 8, - "category": 120, - "nameResourceKey": "childSecurityAssociationParamName", - "childSettings": [ - - ], - "options": [ - - ], - "booleanActions": 0, - "policyType": 89, - "enabled": false - }, - { - "dataType": 16, - "category": 120, - "nameResourceKey": "cipherTransformAlgorithmName", - "descriptionResourceKey": "cipherTransformAlgorithmDescription", - "childSettings": [ - - ], - "options": [ - { - "nameResourceKey": "notConfigured", - "enabled": true - }, - { - "nameResourceKey": "cipherTransformConstantsDES", - "value": "des", - "enabled": true - }, - { - "nameResourceKey": "cipherTransformConstants3DES", - "value": "tripleDes", - "enabled": true - }, - { - "nameResourceKey": "cipherTransformConstantsAES128", - "value": "aes128", - "enabled": true - }, - { - "nameResourceKey": "cipherTransformConstantsAES192", - "value": "aes192", - "enabled": true - }, - { - "nameResourceKey": "cipherTransformConstantsAES256", - "value": "aes256", - "enabled": true - }, - { - "nameResourceKey": "authenticationTransformConstantsGCMAES128", - "value": "aes128Gcm", - "enabled": true - }, - { - "nameResourceKey": "authenticationTransformConstantsGCMAES192", - "value": "aes192Gcm", - "enabled": true - }, - { - "nameResourceKey": "authenticationTransformConstantsGCMAES256", - "value": "aes256Gcm", - "enabled": true - } - ], - "entityKey": "cipherTransformConstants", - "booleanActions": 0, - "policyType": 89, - "enabled": false - }, - { - "dataType": 16, - "category": 120, - "nameResourceKey": "authenticationTransformAlgorithmName", - "descriptionResourceKey": "authenticationTransformAlgorithmDescription", - "childSettings": [ - - ], - "options": [ - { - "nameResourceKey": "notConfigured", - "enabled": true - }, - { - "nameResourceKey": "authenticationTransformConstantsMD596", - "value": "md5_96", - "enabled": true - }, - { - "nameResourceKey": "authenticationTransformConstantsSHA196", - "value": "sha1_96", - "enabled": true - }, - { - "nameResourceKey": "authenticationTransformConstantsSHA256128", - "value": "sha_256_128", - "enabled": true - }, - { - "nameResourceKey": "authenticationTransformConstantsGCMAES128", - "value": "aes128Gcm", - "enabled": true - }, - { - "nameResourceKey": "authenticationTransformConstantsGCMAES192", - "value": "aes192Gcm", - "enabled": true - }, - { - "nameResourceKey": "authenticationTransformConstantsGCMAES256", - "value": "aes256Gcm", - "enabled": true - } - ], - "entityKey": "authenticationTransformConstants", - "booleanActions": 0, - "policyType": 89, - "enabled": false - }, - { - "dataType": 16, - "category": 120, - "nameResourceKey": "pFSGroupName", - "descriptionResourceKey": "pFSGroupDescription", - "childSettings": [ - - ], - "options": [ - { - "nameResourceKey": "notConfigured", - "enabled": true - }, - { - "nameResourceKey": "pFSMMDescription", - "value": "pfsMM", - "enabled": true - }, - { - "displayText": "1", - "value": "pfs1", - "enabled": true - }, - { - "displayText": "2", - "value": "pfs2", - "enabled": true - }, - { - "displayText": "14", - "value": "pfs2048", - "enabled": true - }, - { - "displayText": "19", - "value": "ecp256", - "enabled": true - }, - { - "displayText": "20", - "value": "ecp384", - "enabled": true - }, - { - "displayText": "24", - "value": "pfs24", - "enabled": true - } - ], - "entityKey": "pfsGroup", - "booleanActions": 0, - "policyType": 89, - "enabled": false - } - ], - "dataType": 6, - "category": 120, - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "cryptographySuite", - "booleanActions": 0, - "policyType": 89, - "enabled": true - } - ], - "enabled": true - }, - { - "nameResourceKey": "lTPOption", - "value": "l2tp", - "children": [ - { - "dataType": 19, - "category": 120, - "nameResourceKey": "vPNPolicyEnableAlwaysOnName", - "descriptionResourceKey": "vPNPolicyEnableAlwaysOnDescription", - "childSettings": [ - - ], - "options": [ - { - "nameResourceKey": "enableOption", - "value": true, - "enabled": true - }, - { - "nameResourceKey": "disableOption", - "value": false, - "enabled": true - } - ], - "entityKey": "enableAlwaysOn", - "booleanActions": 0, - "defaultValue": false, - "policyType": 89, - "enabled": true - }, - { - "dataType": 0, - "category": 120, - "nameResourceKey": "vPNPolicyRememberCredentialsName", - "descriptionResourceKey": "empty", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "rememberUserCredentials", - "booleanActions": 2, - "policyType": 89, - "enabled": true - }, - { - "dataType": 16, - "category": 120, - "nameResourceKey": "authenticationMethodName", - "descriptionResourceKey": "vPNAuthMethodDescription", - "childSettings": [ - - ], - "options": [ - { - "nameResourceKey": "selectAnAuthenticationMethod", - "enabled": true - }, - { - "nameResourceKey": "certificatesOption", - "value": "customEapXml", - "children": [ - { - "complexOptions": [ - { - "dataType": 4, - "category": 120, - "nameResourceKey": "vPNPolicySelectAClientCertificateName", - "descriptionResourceKey": "clientCertForEapXmlClientAuthenticationDescription", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "identityCertificate", - "booleanActions": 0, - "policyType": 89, - "enabled": true - } - ], - "dataType": 5, - "category": 120, - "nameResourceKey": "authenticationCertificate", - "descriptionResourceKey": "clientCertForEapXmlClientAuthenticationDescription", - "emptyValueResourceKey": "selectCertificate", - "childSettings": [ - - ], - "options": [ - - ], - "booleanActions": 0, - "policyType": 89, - "enabled": true - } - ], - "enabled": true - }, - { - "nameResourceKey": "derivedCredentialsOption", - "value": "derivedCredential", - "enabled": true - } - ], - "entityKey": "authenticationMethod", - "booleanActions": 0, - "policyType": 89, - "enabled": false - }, - { - "value": "customEapXml", - "dataType": 9, - "category": 120, - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "authenticationMethod", - "booleanActions": 0, - "policyType": 89, - "enabled": false - }, - { - "complexOptions": [ - { - "dataType": 4, - "category": 120, - "nameResourceKey": "vPNPolicySelectAClientCertificateName", - "descriptionResourceKey": "clientCertForEapXmlClientAuthenticationDescription", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "identityCertificate", - "booleanActions": 0, - "policyType": 89, - "enabled": true - } - ], - "dataType": 5, - "category": 120, - "nameResourceKey": "authenticationCertificate", - "descriptionResourceKey": "clientCertForEapXmlClientAuthenticationDescription", - "emptyValueResourceKey": "selectCertificate", - "childSettings": [ - - ], - "options": [ - - ], - "booleanActions": 0, - "policyType": 89, - "enabled": false - }, - { - "dataType": 12, - "category": 120, - "nameResourceKey": "eAPXmlName", - "descriptionResourceKey": "vPNEAPXMLDescription", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "eapXml", - "booleanActions": 0, - "policyType": 89, - "enabled": true - } - ], - "enabled": true - }, - { - "nameResourceKey": "pPTPOption", - "value": "pptp", - "children": [ - { - "dataType": 19, - "category": 120, - "nameResourceKey": "vPNPolicyEnableAlwaysOnName", - "descriptionResourceKey": "vPNPolicyEnableAlwaysOnDescription", - "childSettings": [ - - ], - "options": [ - { - "nameResourceKey": "enableOption", - "value": true, - "enabled": true - }, - { - "nameResourceKey": "disableOption", - "value": false, - "enabled": true - } - ], - "entityKey": "enableAlwaysOn", - "booleanActions": 0, - "defaultValue": false, - "policyType": 89, - "enabled": true - }, - { - "dataType": 0, - "category": 120, - "nameResourceKey": "vPNPolicyRememberCredentialsName", - "descriptionResourceKey": "empty", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "rememberUserCredentials", - "booleanActions": 2, - "policyType": 89, - "enabled": true - }, - { - "dataType": 16, - "category": 120, - "nameResourceKey": "authenticationMethodName", - "descriptionResourceKey": "vPNAuthMethodDescription", - "childSettings": [ - - ], - "options": [ - { - "nameResourceKey": "selectAnAuthenticationMethod", - "enabled": true - }, - { - "nameResourceKey": "certificatesOption", - "value": "customEapXml", - "children": [ - { - "complexOptions": [ - { - "dataType": 4, - "category": 120, - "nameResourceKey": "vPNPolicySelectAClientCertificateName", - "descriptionResourceKey": "clientCertForEapXmlClientAuthenticationDescription", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "identityCertificate", - "booleanActions": 0, - "policyType": 89, - "enabled": true - } - ], - "dataType": 5, - "category": 120, - "nameResourceKey": "authenticationCertificate", - "descriptionResourceKey": "clientCertForEapXmlClientAuthenticationDescription", - "emptyValueResourceKey": "selectCertificate", - "childSettings": [ - - ], - "options": [ - - ], - "booleanActions": 0, - "policyType": 89, - "enabled": true - } - ], - "enabled": true - }, - { - "nameResourceKey": "derivedCredentialsOption", - "value": "derivedCredential", - "enabled": true - } - ], - "entityKey": "authenticationMethod", - "booleanActions": 0, - "policyType": 89, - "enabled": false - }, - { - "value": "customEapXml", - "dataType": 9, - "category": 120, - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "authenticationMethod", - "booleanActions": 0, - "policyType": 89, - "enabled": false - }, - { - "complexOptions": [ - { - "dataType": 4, - "category": 120, - "nameResourceKey": "vPNPolicySelectAClientCertificateName", - "descriptionResourceKey": "clientCertForEapXmlClientAuthenticationDescription", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "identityCertificate", - "booleanActions": 0, - "policyType": 89, - "enabled": true - } - ], - "dataType": 5, - "category": 120, - "nameResourceKey": "authenticationCertificate", - "descriptionResourceKey": "clientCertForEapXmlClientAuthenticationDescription", - "emptyValueResourceKey": "selectCertificate", - "childSettings": [ - - ], - "options": [ - - ], - "booleanActions": 0, - "policyType": 89, - "enabled": false - }, - { - "dataType": 12, - "category": 120, - "nameResourceKey": "eAPXmlName", - "descriptionResourceKey": "vPNEAPXMLDescription", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "eapXml", - "booleanActions": 0, - "policyType": 89, - "enabled": true - } - ], - "enabled": true - } - ], - "entityKey": "connectionType", - "booleanActions": 0, - "unconfiguredValue": "selectAConnectionType", - "policyType": 89, - "enabled": true - } - ], - "enabled": true - }, - { - "nameResourceKey": "vPNPolicyProfileTargetAutoPilotOption", - "value": "autoPilotDevice", - "children": [ - { - "value": "ikEv2", - "dataType": 9, - "category": 120, - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "connectionType", - "booleanActions": 0, - "policyType": 89, - "enabled": true - }, - { - "value": true, - "dataType": 9, - "category": 120, - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "enableDeviceTunnel", - "booleanActions": 0, - "policyType": 89, - "enabled": true - }, - { - "value": true, - "dataType": 9, - "category": 120, - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "enableAlwaysOn", - "booleanActions": 0, - "policyType": 89, - "enabled": true - }, - { - "value": "certificate", - "dataType": 9, - "category": 120, - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "authenticationMethod", - "booleanActions": 0, - "policyType": 89, - "enabled": true - }, - { - "value": "", - "dataType": 9, - "category": 120, - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "eapXml", - "booleanActions": 0, - "policyType": 89, - "enabled": true - }, - { - "complexOptions": [ - { - "dataType": 4, - "category": 120, - "nameResourceKey": "vPNPolicySelectAClientCertificateName", - "descriptionResourceKey": "clientCertForCertificateMachineAuthenticationDescription", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "identityCertificate", - "booleanActions": 0, - "policyType": 89, - "enabled": true - } - ], - "dataType": 5, - "category": 120, - "nameResourceKey": "authenticationCertificate", - "descriptionResourceKey": "clientCertForCertificateMachineAuthenticationDescription", - "emptyValueResourceKey": "selectCertificate", - "childSettings": [ - - ], - "options": [ - - ], - "booleanActions": 0, - "policyType": 89, - "enabled": true - } - ], - "enabled": true - } - ], - "entityKey": "profileTarget", - "booleanActions": 0, - "defaultValue": "user", - "policyType": 89, - "enabled": false - }, - { - "dataType": 19, - "category": 120, - "nameResourceKey": "vPNPolicySendAllNetworkTrafficThroughVPNName", - "descriptionResourceKey": "vPNPolicySendAllNetworkTrafficThroughVPNDescription", - "childSettings": [ - { - "columns": [ - { - "metadata": { - "dataType": 20, - "category": 120, - "nameResourceKey": "vPNPolicyDestinationPrefixName", - "descriptionResourceKey": "vPNPolicyDestinationPrefixName", - "emptyValueResourceKey": "proxyAddressExample", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "destinationPrefix", - "booleanActions": 0, - "policyType": 89, - "enabled": true - } - }, - { - "metadata": { - "dataType": 14, - "category": 120, - "nameResourceKey": "vPNPolicyPrefixSizeName", - "descriptionResourceKey": "vPNPolicyPrefixSizeName", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "prefixSize", - "booleanActions": 0, - "policyType": 89, - "enabled": true - } - } - ], - "dataType": 21, - "category": 120, - "nameResourceKey": "vPNPolicyRoutesForThisConnectionName", - "descriptionResourceKey": "vPNPolicyRoutesForThisConnectionDescription", - "childSettings": [ - - ], - "options": [ - - ], - "entityKey": "routes", - "booleanActions": 0, - "policyType": 89, - "enabled": true - } - ], - "options": [ - { - "nameResourceKey": "enableOption", - "value": true, - "enabled": true - }, - { - "nameResourceKey": "disableOption", - "value": false, - "enabled": true - } - ], - "entityKey": "enableSplitTunneling", - "booleanActions": 0, - "policyType": 89, - "enabled": false - } - ] + ], + "enabled": true + }, + { + "nameResourceKey": "VPNPolicyProfileScopeDeviceOption", + "value": "device", + "children": [ + { + "dataType": 16, + "category": 120, + "nameResourceKey": "vPNPolicyConnectionTypeName", + "descriptionResourceKey": "vPNPolicyConnectionTypeDescriptionNoCustom", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "selectAConnectionType", + "enabled": true + }, + { + "nameResourceKey": "checkPointCapsuleVPNOption", + "value": "checkPointCapsuleVpn", + "children": [ + { + "complexOptions": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyConnectionName", + "descriptionResourceKey": "vPNPolicyConnectionDescription", + "emptyValueResourceKey": "vPNConnectionExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "connectionName", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyServerDescriptionName", + "descriptionResourceKey": "vPNPolicyServerDescriptionDescription", + "emptyValueResourceKey": "vPNServerExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "description", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyServerIPAddressOrFQDNName", + "descriptionResourceKey": "vPNPolicyServerIPAddressOrFQDNDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "address", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyDefaultServerName", + "descriptionResourceKey": "vPNPolicyDefaultServerDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "trueOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "falseOption", + "value": false, + "enabled": true + } + ], + "entityKey": "isDefaultServer", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyServersName", + "descriptionResourceKey": "vPNPolicyServersDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyDNSRegistrationName", + "descriptionResourceKey": "vPNPolicyDNSRegistrationDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableDnsRegistration", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + }, + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyEnableAlwaysOnName", + "descriptionResourceKey": "vPNPolicyEnableAlwaysOnDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableAlwaysOn", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + }, + { + "dataType": 16, + "category": 120, + "nameResourceKey": "authenticationMethodName", + "descriptionResourceKey": "vPNAuthMethodDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "selectAnAuthenticationMethod", + "enabled": true + }, + { + "nameResourceKey": "certificatesOption", + "value": "certificate", + "children": [ + { + "complexOptions": [ + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": false + }, + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": false + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "authenticationCertificate", + "descriptionResourceKey": "clientCertForClientAuthenticationDescription", + "emptyValueResourceKey": "selectCertificate", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + }, + { + "nameResourceKey": "usernameAndPasswordOption", + "value": "usernameAndPassword", + "enabled": true + }, + { + "nameResourceKey": "derivedCredentialsOption", + "value": "derivedCredential", + "children": [ + { + "dataType": 9, + "category": 120, + "childSettings": [ + { + "dataType": 10, + "category": 120, + "nameResourceKey": "derivedCredentialsSearchingForTenantLevel", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 10, + "category": 120, + "nameResourceKey": "derivedCredentialsTenantLevelNotConfigured", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + + ], + "entityKey": "derivedCredentialSettings@odata.bind", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": false + } + ], + "entityKey": "authenticationMethod", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 0, + "category": 120, + "nameResourceKey": "vPNPolicyRememberCredentialsName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "rememberUserCredentials", + "booleanActions": 2, + "policyType": 89, + "enabled": true + }, + { + "dataType": 12, + "category": 120, + "nameResourceKey": "vPNPolicyCustomXMLName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "customXml", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "vpn", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 16, + "category": 120, + "nameResourceKey": "vPNWipOrAppsName", + "descriptionResourceKey": "vPNWipOrAppsDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "value": 0, + "enabled": true + }, + { + "nameResourceKey": "wipOption", + "value": 1, + "children": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "wipName", + "descriptionResourceKey": "wipDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "windowsInformationProtectionDomain", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + }, + { + "nameResourceKey": "associateAppsOption", + "value": 2, + "children": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyOnlyTheseAppsCanUseVPNName", + "descriptionResourceKey": "vPNPolicyOnlyTheseAppsCanUseVPNDescription", + "childSettings": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "appIdentifierName", + "descriptionResourceKey": "appIdentifierDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identifier", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 16, + "category": 120, + "nameResourceKey": "eDPPolicyNetworkLocationsListTypeName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "enabled": true + }, + { + "nameResourceKey": "desktopOption", + "value": "desktop", + "enabled": true + }, + { + "nameResourceKey": "universalOption", + "value": "universal", + "enabled": true + } + ], + "entityKey": "appType", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyAssociatedAppsName", + "descriptionResourceKey": "vPNPolicyAssociatedAppsDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "associatedApps", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "onlyAssociatedAppsCanUseConnection", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + } + ], + "entityKey": "syntheticWipOrApps", + "booleanActions": 0, + "defaultValue": 0, + "unconfiguredValue": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "ruleName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 16, + "category": 120, + "nameResourceKey": "trafficRuleRoutingPolicyTypeName", + "descriptionResourceKey": "trafficRuleRoutingPolicyTypeDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "noneOption", + "value": "none", + "enabled": true + }, + { + "nameResourceKey": "splitTunnelOption", + "value": "splitTunnel", + "enabled": true + }, + { + "nameResourceKey": "forceTunnelOption", + "value": "forceTunnel", + "enabled": true + } + ], + "entityKey": "routingPolicyType", + "booleanActions": 0, + "defaultValue": "none", + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "protocolsName", + "descriptionResourceKey": "empty", + "childSettings": [ + { + "columns": [ + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "lowerPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "upperPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "localPortRangesName", + "descriptionResourceKey": "localPortRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "localPortRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "lowerPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "upperPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "remotePortRangesName", + "descriptionResourceKey": "remotePortRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "remotePortRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + + ], + "entityKey": "protocols", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "trafficRuleAppName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "appId", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 16, + "category": 120, + "nameResourceKey": "trafficRuleAppTypeName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "desktopOption", + "value": "desktop", + "enabled": true + }, + { + "nameResourceKey": "universalOption", + "value": "universal", + "enabled": true + } + ], + "entityKey": "appType", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "lowerIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "upperIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "localAddressRangesName", + "descriptionResourceKey": "localAddressRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "localAddressRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "lowerIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "upperIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "remoteAddressRangesName", + "descriptionResourceKey": "remoteAddressRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "remoteAddressRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyNetworkTrafficRulesName", + "descriptionResourceKey": "vPNPolicyNetworkTrafficRulesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trafficRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "AppsAndTrafficRules", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "enableConditionalAccessName", + "descriptionResourceKey": "enableConditionalAccessDescription", + "childSettings": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "enableSingleSignOnName", + "descriptionResourceKey": "enableSingleSignOnDescription", + "childSettings": [ + { + "complexOptions": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "eDPPolicyAppsListNameName", + "descriptionResourceKey": "eDPPolicyAppsListNameDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 20, + "category": 120, + "nameResourceKey": "sCEPPolicyObjectIdentifierColumnName", + "descriptionResourceKey": "sCEPPolicyObjectIdentifierColumnDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "objectIdentifier", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 6, + "category": 120, + "nameResourceKey": "sCEPPolicyExtendedKeyUsageName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "singleSignOnEku", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 20, + "category": 120, + "nameResourceKey": "issuerHashName", + "descriptionResourceKey": "issuerHashDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "singleSignOnIssuerHash", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableSingleSignOnWithAlternateCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableConditionalAccess", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "ConditionalAccess", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyDNSSuffixesName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "dNSSuffixExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyDNSSuffixSearchListName", + "descriptionResourceKey": "vPNPolicyDNSSuffixSearchListDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsSuffixes", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSName", + "descriptionResourceKey": "dNSNameDescription1809", + "emptyValueResourceKey": "dNSNameExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "dNSServerDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "enterOnlyOneForDns", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "proxy", + "descriptionResourceKey": "vPNProxyDescription1809", + "emptyValueResourceKey": "proxyDNSExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServerUri", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNDnsAutoTriggerName", + "descriptionResourceKey": "vPNDnsAutoTriggerDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enabledOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "notConfigured", + "value": false, + "enabled": true + } + ], + "entityKey": "autoTrigger", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNDnsPersistentName", + "descriptionResourceKey": "vPNDnsPersistentDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enabledOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "notConfigured", + "value": false, + "enabled": true + } + ], + "entityKey": "persistent", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyNameResolutionPolicyTableRulesName", + "descriptionResourceKey": "vPNPolicyNameResolutionPolicyTableRulesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "vPNPolicyNameResolutionPolicyTableRulesName", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSName", + "descriptionResourceKey": "dNSNameDescription1809", + "emptyValueResourceKey": "dNSNameExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "enterOnlyOneForDns", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "dNSServerDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "proxy", + "descriptionResourceKey": "vPNProxyDescription1809", + "emptyValueResourceKey": "proxyDNSExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServerUri", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyNameResolutionPolicyTableRulesName", + "descriptionResourceKey": "vPNPolicyNameResolutionPolicyTableRulesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": false + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSName", + "descriptionResourceKey": "dNSNameDescription", + "emptyValueResourceKey": "dNSNameExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "enterOnlyOneForDns", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "dNSServerDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "proxy", + "emptyValueResourceKey": "proxyDNSExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServerUri", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyDNSNamesAndServersName", + "descriptionResourceKey": "vPNPolicyDNSNamesAndServersName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": false + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "DNSSettings", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "vPNPolicyUseProxyServerName", + "descriptionResourceKey": "vPNPolicyUseProxyServerDescription", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyAutomaticConfigurationScriptName", + "descriptionResourceKey": "vPNPolicyAutomaticConfigurationScriptDescription", + "emptyValueResourceKey": "vPNScriptExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "automaticConfigurationScriptUrl", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyAddressName", + "descriptionResourceKey": "vPNPolicyAddressDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "address", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 14, + "category": 120, + "nameResourceKey": "vPNPolicyPortNumberName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "port", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 16, + "category": 120, + "nameResourceKey": "vPNPolicyBypassProxySettingsForLocalAddressesName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "enabled": true + }, + { + "nameResourceKey": "enableOption", + "value": "true", + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": "false", + "enabled": true + } + ], + "entityKey": "bypassProxyServerForLocalAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 6, + "category": 120, + "nameResourceKey": "vPNPolicyUseProxyServerName", + "descriptionResourceKey": "vPNPolicyUseProxyServerDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServer", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "Proxy", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicySendAllNetworkTrafficThroughVPNName", + "descriptionResourceKey": "vPNPolicySendAllNetworkTrafficThroughVPNDescription", + "childSettings": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyDestinationPrefixName", + "descriptionResourceKey": "vPNPolicyDestinationPrefixName", + "emptyValueResourceKey": "proxyAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "destinationPrefix", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "vPNPolicyPrefixSizeName", + "descriptionResourceKey": "vPNPolicyPrefixSizeName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "prefixSize", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyRoutesForThisConnectionName", + "descriptionResourceKey": "vPNPolicyRoutesForThisConnectionDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "routes", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableSplitTunneling", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "VPNPolicySendAllNetworkTrafficThroughVPNName", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyTrustedNetworkDomainColumnName", + "descriptionResourceKey": "", + "emptyValueResourceKey": "VPNPolicyTrustedNetworkDomainExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trustedNetworkDomains", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyTrustedNetworkDomainName", + "descriptionResourceKey": "vPNPolicyTrustedNetworkDomainDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trustedNetworkDomains", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "VPNPolicyTrustedNetworkDetectionEnabledName", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + }, + { + "nameResourceKey": "ciscoAnyConnectOption", + "value": "ciscoAnyConnect", + "children": [ + { + "complexOptions": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyConnectionName", + "descriptionResourceKey": "vPNPolicyConnectionDescription", + "emptyValueResourceKey": "vPNConnectionExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "connectionName", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyServerDescriptionName", + "descriptionResourceKey": "vPNPolicyServerDescriptionDescription", + "emptyValueResourceKey": "vPNServerExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "description", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyServerIPAddressOrFQDNName", + "descriptionResourceKey": "vPNPolicyServerIPAddressOrFQDNDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "address", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyDefaultServerName", + "descriptionResourceKey": "vPNPolicyDefaultServerDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "trueOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "falseOption", + "value": false, + "enabled": true + } + ], + "entityKey": "isDefaultServer", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyServersName", + "descriptionResourceKey": "vPNPolicyServersDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyDNSRegistrationName", + "descriptionResourceKey": "vPNPolicyDNSRegistrationDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableDnsRegistration", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + }, + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyEnableAlwaysOnName", + "descriptionResourceKey": "vPNPolicyEnableAlwaysOnDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableAlwaysOn", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + }, + { + "dataType": 16, + "category": 120, + "nameResourceKey": "authenticationMethodName", + "descriptionResourceKey": "vPNAuthMethodDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "selectAnAuthenticationMethod", + "enabled": true + }, + { + "nameResourceKey": "certificatesOption", + "value": "certificate", + "children": [ + { + "complexOptions": [ + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": false + }, + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": false + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "authenticationCertificate", + "descriptionResourceKey": "clientCertForClientAuthenticationDescription", + "emptyValueResourceKey": "selectCertificate", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + }, + { + "nameResourceKey": "usernameAndPasswordOption", + "value": "usernameAndPassword", + "enabled": true + }, + { + "nameResourceKey": "derivedCredentialsOption", + "value": "derivedCredential", + "children": [ + { + "dataType": 9, + "category": 120, + "childSettings": [ + { + "dataType": 10, + "category": 120, + "nameResourceKey": "derivedCredentialsSearchingForTenantLevel", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 10, + "category": 120, + "nameResourceKey": "derivedCredentialsTenantLevelNotConfigured", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + + ], + "entityKey": "derivedCredentialSettings@odata.bind", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": false + } + ], + "entityKey": "authenticationMethod", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 0, + "category": 120, + "nameResourceKey": "vPNPolicyRememberCredentialsName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "rememberUserCredentials", + "booleanActions": 2, + "policyType": 89, + "enabled": true + }, + { + "dataType": 12, + "category": 120, + "nameResourceKey": "vPNPolicyCustomXMLName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "customXml", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "vpn", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 16, + "category": 120, + "nameResourceKey": "vPNWipOrAppsName", + "descriptionResourceKey": "vPNWipOrAppsDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "value": 0, + "enabled": true + }, + { + "nameResourceKey": "wipOption", + "value": 1, + "children": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "wipName", + "descriptionResourceKey": "wipDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "windowsInformationProtectionDomain", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + }, + { + "nameResourceKey": "associateAppsOption", + "value": 2, + "children": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyOnlyTheseAppsCanUseVPNName", + "descriptionResourceKey": "vPNPolicyOnlyTheseAppsCanUseVPNDescription", + "childSettings": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "appIdentifierName", + "descriptionResourceKey": "appIdentifierDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identifier", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 16, + "category": 120, + "nameResourceKey": "eDPPolicyNetworkLocationsListTypeName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "enabled": true + }, + { + "nameResourceKey": "desktopOption", + "value": "desktop", + "enabled": true + }, + { + "nameResourceKey": "universalOption", + "value": "universal", + "enabled": true + } + ], + "entityKey": "appType", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyAssociatedAppsName", + "descriptionResourceKey": "vPNPolicyAssociatedAppsDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "associatedApps", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "onlyAssociatedAppsCanUseConnection", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + } + ], + "entityKey": "syntheticWipOrApps", + "booleanActions": 0, + "defaultValue": 0, + "unconfiguredValue": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "ruleName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 16, + "category": 120, + "nameResourceKey": "trafficRuleRoutingPolicyTypeName", + "descriptionResourceKey": "trafficRuleRoutingPolicyTypeDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "noneOption", + "value": "none", + "enabled": true + }, + { + "nameResourceKey": "splitTunnelOption", + "value": "splitTunnel", + "enabled": true + }, + { + "nameResourceKey": "forceTunnelOption", + "value": "forceTunnel", + "enabled": true + } + ], + "entityKey": "routingPolicyType", + "booleanActions": 0, + "defaultValue": "none", + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "protocolsName", + "descriptionResourceKey": "empty", + "childSettings": [ + { + "columns": [ + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "lowerPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "upperPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "localPortRangesName", + "descriptionResourceKey": "localPortRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "localPortRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "lowerPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "upperPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "remotePortRangesName", + "descriptionResourceKey": "remotePortRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "remotePortRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + + ], + "entityKey": "protocols", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "trafficRuleAppName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "appId", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 16, + "category": 120, + "nameResourceKey": "trafficRuleAppTypeName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "desktopOption", + "value": "desktop", + "enabled": true + }, + { + "nameResourceKey": "universalOption", + "value": "universal", + "enabled": true + } + ], + "entityKey": "appType", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "lowerIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "upperIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "localAddressRangesName", + "descriptionResourceKey": "localAddressRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "localAddressRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "lowerIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "upperIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "remoteAddressRangesName", + "descriptionResourceKey": "remoteAddressRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "remoteAddressRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyNetworkTrafficRulesName", + "descriptionResourceKey": "vPNPolicyNetworkTrafficRulesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trafficRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "AppsAndTrafficRules", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "enableConditionalAccessName", + "descriptionResourceKey": "enableConditionalAccessDescription", + "childSettings": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "enableSingleSignOnName", + "descriptionResourceKey": "enableSingleSignOnDescription", + "childSettings": [ + { + "complexOptions": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "eDPPolicyAppsListNameName", + "descriptionResourceKey": "eDPPolicyAppsListNameDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 20, + "category": 120, + "nameResourceKey": "sCEPPolicyObjectIdentifierColumnName", + "descriptionResourceKey": "sCEPPolicyObjectIdentifierColumnDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "objectIdentifier", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 6, + "category": 120, + "nameResourceKey": "sCEPPolicyExtendedKeyUsageName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "singleSignOnEku", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 20, + "category": 120, + "nameResourceKey": "issuerHashName", + "descriptionResourceKey": "issuerHashDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "singleSignOnIssuerHash", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableSingleSignOnWithAlternateCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableConditionalAccess", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "ConditionalAccess", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyDNSSuffixesName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "dNSSuffixExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyDNSSuffixSearchListName", + "descriptionResourceKey": "vPNPolicyDNSSuffixSearchListDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsSuffixes", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSName", + "descriptionResourceKey": "dNSNameDescription1809", + "emptyValueResourceKey": "dNSNameExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "dNSServerDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "enterOnlyOneForDns", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "proxy", + "descriptionResourceKey": "vPNProxyDescription1809", + "emptyValueResourceKey": "proxyDNSExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServerUri", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNDnsAutoTriggerName", + "descriptionResourceKey": "vPNDnsAutoTriggerDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enabledOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "notConfigured", + "value": false, + "enabled": true + } + ], + "entityKey": "autoTrigger", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNDnsPersistentName", + "descriptionResourceKey": "vPNDnsPersistentDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enabledOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "notConfigured", + "value": false, + "enabled": true + } + ], + "entityKey": "persistent", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyNameResolutionPolicyTableRulesName", + "descriptionResourceKey": "vPNPolicyNameResolutionPolicyTableRulesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "vPNPolicyNameResolutionPolicyTableRulesName", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSName", + "descriptionResourceKey": "dNSNameDescription1809", + "emptyValueResourceKey": "dNSNameExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "enterOnlyOneForDns", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "dNSServerDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "proxy", + "descriptionResourceKey": "vPNProxyDescription1809", + "emptyValueResourceKey": "proxyDNSExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServerUri", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyNameResolutionPolicyTableRulesName", + "descriptionResourceKey": "vPNPolicyNameResolutionPolicyTableRulesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": false + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSName", + "descriptionResourceKey": "dNSNameDescription", + "emptyValueResourceKey": "dNSNameExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "enterOnlyOneForDns", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "dNSServerDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "proxy", + "emptyValueResourceKey": "proxyDNSExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServerUri", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyDNSNamesAndServersName", + "descriptionResourceKey": "vPNPolicyDNSNamesAndServersName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": false + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "DNSSettings", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "vPNPolicyUseProxyServerName", + "descriptionResourceKey": "vPNPolicyUseProxyServerDescription", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyAutomaticConfigurationScriptName", + "descriptionResourceKey": "vPNPolicyAutomaticConfigurationScriptDescription", + "emptyValueResourceKey": "vPNScriptExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "automaticConfigurationScriptUrl", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyAddressName", + "descriptionResourceKey": "vPNPolicyAddressDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "address", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 14, + "category": 120, + "nameResourceKey": "vPNPolicyPortNumberName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "port", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 16, + "category": 120, + "nameResourceKey": "vPNPolicyBypassProxySettingsForLocalAddressesName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "enabled": true + }, + { + "nameResourceKey": "enableOption", + "value": "true", + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": "false", + "enabled": true + } + ], + "entityKey": "bypassProxyServerForLocalAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 6, + "category": 120, + "nameResourceKey": "vPNPolicyUseProxyServerName", + "descriptionResourceKey": "vPNPolicyUseProxyServerDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServer", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "Proxy", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicySendAllNetworkTrafficThroughVPNName", + "descriptionResourceKey": "vPNPolicySendAllNetworkTrafficThroughVPNDescription", + "childSettings": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyDestinationPrefixName", + "descriptionResourceKey": "vPNPolicyDestinationPrefixName", + "emptyValueResourceKey": "proxyAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "destinationPrefix", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "vPNPolicyPrefixSizeName", + "descriptionResourceKey": "vPNPolicyPrefixSizeName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "prefixSize", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyRoutesForThisConnectionName", + "descriptionResourceKey": "vPNPolicyRoutesForThisConnectionDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "routes", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableSplitTunneling", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "VPNPolicySendAllNetworkTrafficThroughVPNName", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyTrustedNetworkDomainColumnName", + "descriptionResourceKey": "", + "emptyValueResourceKey": "VPNPolicyTrustedNetworkDomainExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trustedNetworkDomains", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyTrustedNetworkDomainName", + "descriptionResourceKey": "vPNPolicyTrustedNetworkDomainDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trustedNetworkDomains", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "VPNPolicyTrustedNetworkDetectionEnabledName", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + }, + { + "nameResourceKey": "citrixOption", + "value": "citrix", + "children": [ + { + "complexOptions": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyConnectionName", + "descriptionResourceKey": "vPNPolicyConnectionDescription", + "emptyValueResourceKey": "vPNConnectionExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "connectionName", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyServerDescriptionName", + "descriptionResourceKey": "vPNPolicyServerDescriptionDescription", + "emptyValueResourceKey": "vPNServerExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "description", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyServerIPAddressOrFQDNName", + "descriptionResourceKey": "vPNPolicyServerIPAddressOrFQDNDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "address", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyDefaultServerName", + "descriptionResourceKey": "vPNPolicyDefaultServerDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "trueOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "falseOption", + "value": false, + "enabled": true + } + ], + "entityKey": "isDefaultServer", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyServersName", + "descriptionResourceKey": "vPNPolicyServersDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyDNSRegistrationName", + "descriptionResourceKey": "vPNPolicyDNSRegistrationDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableDnsRegistration", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + }, + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyEnableAlwaysOnName", + "descriptionResourceKey": "vPNPolicyEnableAlwaysOnDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableAlwaysOn", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + }, + { + "dataType": 16, + "category": 120, + "nameResourceKey": "authenticationMethodName", + "descriptionResourceKey": "vPNAuthMethodDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "selectAnAuthenticationMethod", + "enabled": true + }, + { + "nameResourceKey": "certificatesOption", + "value": "certificate", + "children": [ + { + "complexOptions": [ + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": false + }, + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": false + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "authenticationCertificate", + "descriptionResourceKey": "clientCertForClientAuthenticationDescription", + "emptyValueResourceKey": "selectCertificate", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + }, + { + "nameResourceKey": "usernameAndPasswordOption", + "value": "usernameAndPassword", + "enabled": true + }, + { + "nameResourceKey": "derivedCredentialsOption", + "value": "derivedCredential", + "children": [ + { + "dataType": 9, + "category": 120, + "childSettings": [ + { + "dataType": 10, + "category": 120, + "nameResourceKey": "derivedCredentialsSearchingForTenantLevel", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 10, + "category": 120, + "nameResourceKey": "derivedCredentialsTenantLevelNotConfigured", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + + ], + "entityKey": "derivedCredentialSettings@odata.bind", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": false + } + ], + "entityKey": "authenticationMethod", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 0, + "category": 120, + "nameResourceKey": "vPNPolicyRememberCredentialsName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "rememberUserCredentials", + "booleanActions": 2, + "policyType": 89, + "enabled": true + }, + { + "dataType": 12, + "category": 120, + "nameResourceKey": "vPNPolicyCustomXMLName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "customXml", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "vpn", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 16, + "category": 120, + "nameResourceKey": "vPNWipOrAppsName", + "descriptionResourceKey": "vPNWipOrAppsDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "value": 0, + "enabled": true + }, + { + "nameResourceKey": "wipOption", + "value": 1, + "children": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "wipName", + "descriptionResourceKey": "wipDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "windowsInformationProtectionDomain", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + }, + { + "nameResourceKey": "associateAppsOption", + "value": 2, + "children": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyOnlyTheseAppsCanUseVPNName", + "descriptionResourceKey": "vPNPolicyOnlyTheseAppsCanUseVPNDescription", + "childSettings": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "appIdentifierName", + "descriptionResourceKey": "appIdentifierDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identifier", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 16, + "category": 120, + "nameResourceKey": "eDPPolicyNetworkLocationsListTypeName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "enabled": true + }, + { + "nameResourceKey": "desktopOption", + "value": "desktop", + "enabled": true + }, + { + "nameResourceKey": "universalOption", + "value": "universal", + "enabled": true + } + ], + "entityKey": "appType", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyAssociatedAppsName", + "descriptionResourceKey": "vPNPolicyAssociatedAppsDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "associatedApps", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "onlyAssociatedAppsCanUseConnection", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + } + ], + "entityKey": "syntheticWipOrApps", + "booleanActions": 0, + "defaultValue": 0, + "unconfiguredValue": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "ruleName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 16, + "category": 120, + "nameResourceKey": "trafficRuleRoutingPolicyTypeName", + "descriptionResourceKey": "trafficRuleRoutingPolicyTypeDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "noneOption", + "value": "none", + "enabled": true + }, + { + "nameResourceKey": "splitTunnelOption", + "value": "splitTunnel", + "enabled": true + }, + { + "nameResourceKey": "forceTunnelOption", + "value": "forceTunnel", + "enabled": true + } + ], + "entityKey": "routingPolicyType", + "booleanActions": 0, + "defaultValue": "none", + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "protocolsName", + "descriptionResourceKey": "empty", + "childSettings": [ + { + "columns": [ + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "lowerPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "upperPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "localPortRangesName", + "descriptionResourceKey": "localPortRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "localPortRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "lowerPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "upperPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "remotePortRangesName", + "descriptionResourceKey": "remotePortRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "remotePortRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + + ], + "entityKey": "protocols", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "trafficRuleAppName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "appId", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 16, + "category": 120, + "nameResourceKey": "trafficRuleAppTypeName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "desktopOption", + "value": "desktop", + "enabled": true + }, + { + "nameResourceKey": "universalOption", + "value": "universal", + "enabled": true + } + ], + "entityKey": "appType", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "lowerIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "upperIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "localAddressRangesName", + "descriptionResourceKey": "localAddressRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "localAddressRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "lowerIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "upperIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "remoteAddressRangesName", + "descriptionResourceKey": "remoteAddressRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "remoteAddressRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyNetworkTrafficRulesName", + "descriptionResourceKey": "vPNPolicyNetworkTrafficRulesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trafficRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "AppsAndTrafficRules", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "enableConditionalAccessName", + "descriptionResourceKey": "enableConditionalAccessDescription", + "childSettings": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "enableSingleSignOnName", + "descriptionResourceKey": "enableSingleSignOnDescription", + "childSettings": [ + { + "complexOptions": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "eDPPolicyAppsListNameName", + "descriptionResourceKey": "eDPPolicyAppsListNameDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 20, + "category": 120, + "nameResourceKey": "sCEPPolicyObjectIdentifierColumnName", + "descriptionResourceKey": "sCEPPolicyObjectIdentifierColumnDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "objectIdentifier", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 6, + "category": 120, + "nameResourceKey": "sCEPPolicyExtendedKeyUsageName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "singleSignOnEku", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 20, + "category": 120, + "nameResourceKey": "issuerHashName", + "descriptionResourceKey": "issuerHashDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "singleSignOnIssuerHash", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableSingleSignOnWithAlternateCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableConditionalAccess", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "ConditionalAccess", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyDNSSuffixesName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "dNSSuffixExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyDNSSuffixSearchListName", + "descriptionResourceKey": "vPNPolicyDNSSuffixSearchListDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsSuffixes", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSName", + "descriptionResourceKey": "dNSNameDescription1809", + "emptyValueResourceKey": "dNSNameExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "dNSServerDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "enterOnlyOneForDns", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "proxy", + "descriptionResourceKey": "vPNProxyDescription1809", + "emptyValueResourceKey": "proxyDNSExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServerUri", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNDnsAutoTriggerName", + "descriptionResourceKey": "vPNDnsAutoTriggerDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enabledOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "notConfigured", + "value": false, + "enabled": true + } + ], + "entityKey": "autoTrigger", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNDnsPersistentName", + "descriptionResourceKey": "vPNDnsPersistentDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enabledOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "notConfigured", + "value": false, + "enabled": true + } + ], + "entityKey": "persistent", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyNameResolutionPolicyTableRulesName", + "descriptionResourceKey": "vPNPolicyNameResolutionPolicyTableRulesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "vPNPolicyNameResolutionPolicyTableRulesName", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSName", + "descriptionResourceKey": "dNSNameDescription1809", + "emptyValueResourceKey": "dNSNameExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "enterOnlyOneForDns", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "dNSServerDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "proxy", + "descriptionResourceKey": "vPNProxyDescription1809", + "emptyValueResourceKey": "proxyDNSExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServerUri", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyNameResolutionPolicyTableRulesName", + "descriptionResourceKey": "vPNPolicyNameResolutionPolicyTableRulesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": false + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSName", + "descriptionResourceKey": "dNSNameDescription", + "emptyValueResourceKey": "dNSNameExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "enterOnlyOneForDns", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "dNSServerDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "proxy", + "emptyValueResourceKey": "proxyDNSExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServerUri", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyDNSNamesAndServersName", + "descriptionResourceKey": "vPNPolicyDNSNamesAndServersName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": false + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "DNSSettings", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "vPNPolicyUseProxyServerName", + "descriptionResourceKey": "vPNPolicyUseProxyServerDescription", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyAutomaticConfigurationScriptName", + "descriptionResourceKey": "vPNPolicyAutomaticConfigurationScriptDescription", + "emptyValueResourceKey": "vPNScriptExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "automaticConfigurationScriptUrl", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyAddressName", + "descriptionResourceKey": "vPNPolicyAddressDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "address", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 14, + "category": 120, + "nameResourceKey": "vPNPolicyPortNumberName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "port", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 16, + "category": 120, + "nameResourceKey": "vPNPolicyBypassProxySettingsForLocalAddressesName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "enabled": true + }, + { + "nameResourceKey": "enableOption", + "value": "true", + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": "false", + "enabled": true + } + ], + "entityKey": "bypassProxyServerForLocalAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 6, + "category": 120, + "nameResourceKey": "vPNPolicyUseProxyServerName", + "descriptionResourceKey": "vPNPolicyUseProxyServerDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServer", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "Proxy", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicySendAllNetworkTrafficThroughVPNName", + "descriptionResourceKey": "vPNPolicySendAllNetworkTrafficThroughVPNDescription", + "childSettings": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyDestinationPrefixName", + "descriptionResourceKey": "vPNPolicyDestinationPrefixName", + "emptyValueResourceKey": "proxyAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "destinationPrefix", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "vPNPolicyPrefixSizeName", + "descriptionResourceKey": "vPNPolicyPrefixSizeName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "prefixSize", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyRoutesForThisConnectionName", + "descriptionResourceKey": "vPNPolicyRoutesForThisConnectionDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "routes", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableSplitTunneling", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "VPNPolicySendAllNetworkTrafficThroughVPNName", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyTrustedNetworkDomainColumnName", + "descriptionResourceKey": "", + "emptyValueResourceKey": "VPNPolicyTrustedNetworkDomainExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trustedNetworkDomains", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyTrustedNetworkDomainName", + "descriptionResourceKey": "vPNPolicyTrustedNetworkDomainDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trustedNetworkDomains", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "VPNPolicyTrustedNetworkDetectionEnabledName", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + }, + { + "nameResourceKey": "fFiveEdgeClientOption", + "value": "f5EdgeClient", + "children": [ + { + "complexOptions": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyConnectionName", + "descriptionResourceKey": "vPNPolicyConnectionDescription", + "emptyValueResourceKey": "vPNConnectionExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "connectionName", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyServerDescriptionName", + "descriptionResourceKey": "vPNPolicyServerDescriptionDescription", + "emptyValueResourceKey": "vPNServerExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "description", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyServerIPAddressOrFQDNName", + "descriptionResourceKey": "vPNPolicyServerIPAddressOrFQDNDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "address", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyDefaultServerName", + "descriptionResourceKey": "vPNPolicyDefaultServerDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "trueOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "falseOption", + "value": false, + "enabled": true + } + ], + "entityKey": "isDefaultServer", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyServersName", + "descriptionResourceKey": "vPNPolicyServersDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyDNSRegistrationName", + "descriptionResourceKey": "vPNPolicyDNSRegistrationDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableDnsRegistration", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + }, + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyEnableAlwaysOnName", + "descriptionResourceKey": "vPNPolicyEnableAlwaysOnDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableAlwaysOn", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + }, + { + "dataType": 16, + "category": 120, + "nameResourceKey": "authenticationMethodName", + "descriptionResourceKey": "vPNAuthMethodDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "selectAnAuthenticationMethod", + "enabled": true + }, + { + "nameResourceKey": "certificatesOption", + "value": "certificate", + "children": [ + { + "complexOptions": [ + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": false + }, + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": false + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "authenticationCertificate", + "descriptionResourceKey": "clientCertForClientAuthenticationDescription", + "emptyValueResourceKey": "selectCertificate", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + }, + { + "nameResourceKey": "usernameAndPasswordOption", + "value": "usernameAndPassword", + "enabled": true + }, + { + "nameResourceKey": "derivedCredentialsOption", + "value": "derivedCredential", + "children": [ + { + "dataType": 9, + "category": 120, + "childSettings": [ + { + "dataType": 10, + "category": 120, + "nameResourceKey": "derivedCredentialsSearchingForTenantLevel", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 10, + "category": 120, + "nameResourceKey": "derivedCredentialsTenantLevelNotConfigured", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + + ], + "entityKey": "derivedCredentialSettings@odata.bind", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": false + } + ], + "entityKey": "authenticationMethod", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 0, + "category": 120, + "nameResourceKey": "vPNPolicyRememberCredentialsName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "rememberUserCredentials", + "booleanActions": 2, + "policyType": 89, + "enabled": true + }, + { + "dataType": 12, + "category": 120, + "nameResourceKey": "vPNPolicyCustomXMLName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "customXml", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "vpn", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 16, + "category": 120, + "nameResourceKey": "vPNWipOrAppsName", + "descriptionResourceKey": "vPNWipOrAppsDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "value": 0, + "enabled": true + }, + { + "nameResourceKey": "wipOption", + "value": 1, + "children": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "wipName", + "descriptionResourceKey": "wipDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "windowsInformationProtectionDomain", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + }, + { + "nameResourceKey": "associateAppsOption", + "value": 2, + "children": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyOnlyTheseAppsCanUseVPNName", + "descriptionResourceKey": "vPNPolicyOnlyTheseAppsCanUseVPNDescription", + "childSettings": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "appIdentifierName", + "descriptionResourceKey": "appIdentifierDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identifier", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 16, + "category": 120, + "nameResourceKey": "eDPPolicyNetworkLocationsListTypeName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "enabled": true + }, + { + "nameResourceKey": "desktopOption", + "value": "desktop", + "enabled": true + }, + { + "nameResourceKey": "universalOption", + "value": "universal", + "enabled": true + } + ], + "entityKey": "appType", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyAssociatedAppsName", + "descriptionResourceKey": "vPNPolicyAssociatedAppsDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "associatedApps", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "onlyAssociatedAppsCanUseConnection", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + } + ], + "entityKey": "syntheticWipOrApps", + "booleanActions": 0, + "defaultValue": 0, + "unconfiguredValue": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "ruleName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 16, + "category": 120, + "nameResourceKey": "trafficRuleRoutingPolicyTypeName", + "descriptionResourceKey": "trafficRuleRoutingPolicyTypeDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "noneOption", + "value": "none", + "enabled": true + }, + { + "nameResourceKey": "splitTunnelOption", + "value": "splitTunnel", + "enabled": true + }, + { + "nameResourceKey": "forceTunnelOption", + "value": "forceTunnel", + "enabled": true + } + ], + "entityKey": "routingPolicyType", + "booleanActions": 0, + "defaultValue": "none", + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "protocolsName", + "descriptionResourceKey": "empty", + "childSettings": [ + { + "columns": [ + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "lowerPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "upperPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "localPortRangesName", + "descriptionResourceKey": "localPortRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "localPortRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "lowerPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "upperPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "remotePortRangesName", + "descriptionResourceKey": "remotePortRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "remotePortRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + + ], + "entityKey": "protocols", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "trafficRuleAppName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "appId", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 16, + "category": 120, + "nameResourceKey": "trafficRuleAppTypeName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "desktopOption", + "value": "desktop", + "enabled": true + }, + { + "nameResourceKey": "universalOption", + "value": "universal", + "enabled": true + } + ], + "entityKey": "appType", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "lowerIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "upperIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "localAddressRangesName", + "descriptionResourceKey": "localAddressRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "localAddressRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "lowerIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "upperIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "remoteAddressRangesName", + "descriptionResourceKey": "remoteAddressRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "remoteAddressRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyNetworkTrafficRulesName", + "descriptionResourceKey": "vPNPolicyNetworkTrafficRulesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trafficRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "AppsAndTrafficRules", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "enableConditionalAccessName", + "descriptionResourceKey": "enableConditionalAccessDescription", + "childSettings": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "enableSingleSignOnName", + "descriptionResourceKey": "enableSingleSignOnDescription", + "childSettings": [ + { + "complexOptions": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "eDPPolicyAppsListNameName", + "descriptionResourceKey": "eDPPolicyAppsListNameDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 20, + "category": 120, + "nameResourceKey": "sCEPPolicyObjectIdentifierColumnName", + "descriptionResourceKey": "sCEPPolicyObjectIdentifierColumnDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "objectIdentifier", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 6, + "category": 120, + "nameResourceKey": "sCEPPolicyExtendedKeyUsageName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "singleSignOnEku", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 20, + "category": 120, + "nameResourceKey": "issuerHashName", + "descriptionResourceKey": "issuerHashDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "singleSignOnIssuerHash", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableSingleSignOnWithAlternateCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableConditionalAccess", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "ConditionalAccess", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyDNSSuffixesName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "dNSSuffixExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyDNSSuffixSearchListName", + "descriptionResourceKey": "vPNPolicyDNSSuffixSearchListDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsSuffixes", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSName", + "descriptionResourceKey": "dNSNameDescription1809", + "emptyValueResourceKey": "dNSNameExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "dNSServerDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "enterOnlyOneForDns", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "proxy", + "descriptionResourceKey": "vPNProxyDescription1809", + "emptyValueResourceKey": "proxyDNSExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServerUri", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNDnsAutoTriggerName", + "descriptionResourceKey": "vPNDnsAutoTriggerDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enabledOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "notConfigured", + "value": false, + "enabled": true + } + ], + "entityKey": "autoTrigger", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNDnsPersistentName", + "descriptionResourceKey": "vPNDnsPersistentDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enabledOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "notConfigured", + "value": false, + "enabled": true + } + ], + "entityKey": "persistent", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyNameResolutionPolicyTableRulesName", + "descriptionResourceKey": "vPNPolicyNameResolutionPolicyTableRulesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "vPNPolicyNameResolutionPolicyTableRulesName", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSName", + "descriptionResourceKey": "dNSNameDescription1809", + "emptyValueResourceKey": "dNSNameExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "enterOnlyOneForDns", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "dNSServerDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "proxy", + "descriptionResourceKey": "vPNProxyDescription1809", + "emptyValueResourceKey": "proxyDNSExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServerUri", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyNameResolutionPolicyTableRulesName", + "descriptionResourceKey": "vPNPolicyNameResolutionPolicyTableRulesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": false + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSName", + "descriptionResourceKey": "dNSNameDescription", + "emptyValueResourceKey": "dNSNameExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "enterOnlyOneForDns", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "dNSServerDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "proxy", + "emptyValueResourceKey": "proxyDNSExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServerUri", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyDNSNamesAndServersName", + "descriptionResourceKey": "vPNPolicyDNSNamesAndServersName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": false + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "DNSSettings", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "vPNPolicyUseProxyServerName", + "descriptionResourceKey": "vPNPolicyUseProxyServerDescription", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyAutomaticConfigurationScriptName", + "descriptionResourceKey": "vPNPolicyAutomaticConfigurationScriptDescription", + "emptyValueResourceKey": "vPNScriptExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "automaticConfigurationScriptUrl", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyAddressName", + "descriptionResourceKey": "vPNPolicyAddressDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "address", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 14, + "category": 120, + "nameResourceKey": "vPNPolicyPortNumberName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "port", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 16, + "category": 120, + "nameResourceKey": "vPNPolicyBypassProxySettingsForLocalAddressesName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "enabled": true + }, + { + "nameResourceKey": "enableOption", + "value": "true", + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": "false", + "enabled": true + } + ], + "entityKey": "bypassProxyServerForLocalAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 6, + "category": 120, + "nameResourceKey": "vPNPolicyUseProxyServerName", + "descriptionResourceKey": "vPNPolicyUseProxyServerDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServer", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "Proxy", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicySendAllNetworkTrafficThroughVPNName", + "descriptionResourceKey": "vPNPolicySendAllNetworkTrafficThroughVPNDescription", + "childSettings": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyDestinationPrefixName", + "descriptionResourceKey": "vPNPolicyDestinationPrefixName", + "emptyValueResourceKey": "proxyAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "destinationPrefix", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "vPNPolicyPrefixSizeName", + "descriptionResourceKey": "vPNPolicyPrefixSizeName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "prefixSize", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyRoutesForThisConnectionName", + "descriptionResourceKey": "vPNPolicyRoutesForThisConnectionDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "routes", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableSplitTunneling", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "VPNPolicySendAllNetworkTrafficThroughVPNName", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyTrustedNetworkDomainColumnName", + "descriptionResourceKey": "", + "emptyValueResourceKey": "VPNPolicyTrustedNetworkDomainExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trustedNetworkDomains", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyTrustedNetworkDomainName", + "descriptionResourceKey": "vPNPolicyTrustedNetworkDomainDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trustedNetworkDomains", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "VPNPolicyTrustedNetworkDetectionEnabledName", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + }, + { + "nameResourceKey": "MicrosoftTunnelForWindows", + "value": "microsoftTunnel", + "children": [ + { + "complexOptions": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyConnectionName", + "descriptionResourceKey": "vPNPolicyConnectionDescription", + "emptyValueResourceKey": "vPNConnectionExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "connectionName", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 26, + "category": 120, + "nameResourceKey": "changeMicrosoftTunnelSite", + "descriptionResourceKey": "microsoftTunnelSite", + "emptyValueResourceKey": "selectMicrosoftTunnelSite", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "microsoftTunnelSiteId", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "microsoftTunnelSite", + "descriptionResourceKey": "microsoftTunnelSiteDescription", + "emptyValueResourceKey": "selectMicrosoftTunnelSite", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyDNSRegistrationName", + "descriptionResourceKey": "vPNPolicyDNSRegistrationDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableDnsRegistration", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + }, + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyEnableAlwaysOnName", + "descriptionResourceKey": "vPNPolicyEnableAlwaysOnDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableAlwaysOn", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + }, + { + "dataType": 12, + "category": 120, + "nameResourceKey": "vPNPolicyCustomXMLName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "customXml", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "vpn", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 16, + "category": 120, + "nameResourceKey": "vPNWipOrAppsName", + "descriptionResourceKey": "vPNWipOrAppsDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "value": 0, + "enabled": true + }, + { + "nameResourceKey": "wipOption", + "value": 1, + "children": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "wipName", + "descriptionResourceKey": "wipDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "windowsInformationProtectionDomain", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + }, + { + "nameResourceKey": "associateAppsOption", + "value": 2, + "children": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyOnlyTheseAppsCanUseVPNName", + "descriptionResourceKey": "vPNPolicyOnlyTheseAppsCanUseVPNDescription", + "childSettings": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "appIdentifierName", + "descriptionResourceKey": "appIdentifierDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identifier", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 16, + "category": 120, + "nameResourceKey": "eDPPolicyNetworkLocationsListTypeName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "enabled": true + }, + { + "nameResourceKey": "desktopOption", + "value": "desktop", + "enabled": true + }, + { + "nameResourceKey": "universalOption", + "value": "universal", + "enabled": true + } + ], + "entityKey": "appType", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyAssociatedAppsName", + "descriptionResourceKey": "vPNPolicyAssociatedAppsDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "associatedApps", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "onlyAssociatedAppsCanUseConnection", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + } + ], + "entityKey": "syntheticWipOrApps", + "booleanActions": 0, + "defaultValue": 0, + "unconfiguredValue": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "AppsAndTrafficRules", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "vPNPolicyUseProxyServerName", + "descriptionResourceKey": "vPNPolicyUseProxyServerDescription", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyAutomaticConfigurationScriptName", + "descriptionResourceKey": "vPNPolicyAutomaticConfigurationScriptDescription", + "emptyValueResourceKey": "vPNScriptExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "automaticConfigurationScriptUrl", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyAddressName", + "descriptionResourceKey": "vPNPolicyAddressDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "address", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 14, + "category": 120, + "nameResourceKey": "vPNPolicyPortNumberName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "port", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 16, + "category": 120, + "nameResourceKey": "vPNPolicyBypassProxySettingsForLocalAddressesName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "enabled": true + }, + { + "nameResourceKey": "enableOption", + "value": "true", + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": "false", + "enabled": true + } + ], + "entityKey": "bypassProxyServerForLocalAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 6, + "category": 120, + "nameResourceKey": "vPNPolicyUseProxyServerName", + "descriptionResourceKey": "vPNPolicyUseProxyServerDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServer", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "Proxy", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyTrustedNetworkDomainColumnName", + "descriptionResourceKey": "", + "emptyValueResourceKey": "VPNPolicyTrustedNetworkDomainExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trustedNetworkDomains", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyTrustedNetworkDomainName", + "descriptionResourceKey": "vPNPolicyTrustedNetworkDomainDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trustedNetworkDomains", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "VPNPolicyTrustedNetworkDetectionEnabledName", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": false + }, + { + "nameResourceKey": "paloAltoGlobalProtectOption", + "value": "paloAltoGlobalProtect", + "children": [ + { + "complexOptions": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyConnectionName", + "descriptionResourceKey": "vPNPolicyConnectionDescription", + "emptyValueResourceKey": "vPNConnectionExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "connectionName", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyServerDescriptionName", + "descriptionResourceKey": "vPNPolicyServerDescriptionDescription", + "emptyValueResourceKey": "vPNServerExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "description", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyServerIPAddressOrFQDNName", + "descriptionResourceKey": "vPNPolicyServerIPAddressOrFQDNDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "address", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyDefaultServerName", + "descriptionResourceKey": "vPNPolicyDefaultServerDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "trueOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "falseOption", + "value": false, + "enabled": true + } + ], + "entityKey": "isDefaultServer", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyServersName", + "descriptionResourceKey": "vPNPolicyServersDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyDNSRegistrationName", + "descriptionResourceKey": "vPNPolicyDNSRegistrationDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableDnsRegistration", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + }, + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyEnableAlwaysOnName", + "descriptionResourceKey": "vPNPolicyEnableAlwaysOnDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableAlwaysOn", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + }, + { + "dataType": 16, + "category": 120, + "nameResourceKey": "authenticationMethodName", + "descriptionResourceKey": "vPNAuthMethodDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "selectAnAuthenticationMethod", + "enabled": true + }, + { + "nameResourceKey": "certificatesOption", + "value": "certificate", + "children": [ + { + "complexOptions": [ + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": false + }, + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": false + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "authenticationCertificate", + "descriptionResourceKey": "clientCertForClientAuthenticationDescription", + "emptyValueResourceKey": "selectCertificate", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + }, + { + "nameResourceKey": "usernameAndPasswordOption", + "value": "usernameAndPassword", + "enabled": true + }, + { + "nameResourceKey": "derivedCredentialsOption", + "value": "derivedCredential", + "children": [ + { + "dataType": 9, + "category": 120, + "childSettings": [ + { + "dataType": 10, + "category": 120, + "nameResourceKey": "derivedCredentialsSearchingForTenantLevel", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 10, + "category": 120, + "nameResourceKey": "derivedCredentialsTenantLevelNotConfigured", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + + ], + "entityKey": "derivedCredentialSettings@odata.bind", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": false + } + ], + "entityKey": "authenticationMethod", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 0, + "category": 120, + "nameResourceKey": "vPNPolicyRememberCredentialsName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "rememberUserCredentials", + "booleanActions": 2, + "policyType": 89, + "enabled": true + }, + { + "dataType": 12, + "category": 120, + "nameResourceKey": "vPNPolicyCustomXMLName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "customXml", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "vpn", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 16, + "category": 120, + "nameResourceKey": "vPNWipOrAppsName", + "descriptionResourceKey": "vPNWipOrAppsDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "value": 0, + "enabled": true + }, + { + "nameResourceKey": "wipOption", + "value": 1, + "children": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "wipName", + "descriptionResourceKey": "wipDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "windowsInformationProtectionDomain", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + }, + { + "nameResourceKey": "associateAppsOption", + "value": 2, + "children": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyOnlyTheseAppsCanUseVPNName", + "descriptionResourceKey": "vPNPolicyOnlyTheseAppsCanUseVPNDescription", + "childSettings": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "appIdentifierName", + "descriptionResourceKey": "appIdentifierDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identifier", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 16, + "category": 120, + "nameResourceKey": "eDPPolicyNetworkLocationsListTypeName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "enabled": true + }, + { + "nameResourceKey": "desktopOption", + "value": "desktop", + "enabled": true + }, + { + "nameResourceKey": "universalOption", + "value": "universal", + "enabled": true + } + ], + "entityKey": "appType", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyAssociatedAppsName", + "descriptionResourceKey": "vPNPolicyAssociatedAppsDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "associatedApps", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "onlyAssociatedAppsCanUseConnection", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + } + ], + "entityKey": "syntheticWipOrApps", + "booleanActions": 0, + "defaultValue": 0, + "unconfiguredValue": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "ruleName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 16, + "category": 120, + "nameResourceKey": "trafficRuleRoutingPolicyTypeName", + "descriptionResourceKey": "trafficRuleRoutingPolicyTypeDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "noneOption", + "value": "none", + "enabled": true + }, + { + "nameResourceKey": "splitTunnelOption", + "value": "splitTunnel", + "enabled": true + }, + { + "nameResourceKey": "forceTunnelOption", + "value": "forceTunnel", + "enabled": true + } + ], + "entityKey": "routingPolicyType", + "booleanActions": 0, + "defaultValue": "none", + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "protocolsName", + "descriptionResourceKey": "empty", + "childSettings": [ + { + "columns": [ + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "lowerPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "upperPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "localPortRangesName", + "descriptionResourceKey": "localPortRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "localPortRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "lowerPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "upperPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "remotePortRangesName", + "descriptionResourceKey": "remotePortRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "remotePortRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + + ], + "entityKey": "protocols", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "trafficRuleAppName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "appId", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 16, + "category": 120, + "nameResourceKey": "trafficRuleAppTypeName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "desktopOption", + "value": "desktop", + "enabled": true + }, + { + "nameResourceKey": "universalOption", + "value": "universal", + "enabled": true + } + ], + "entityKey": "appType", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "lowerIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "upperIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "localAddressRangesName", + "descriptionResourceKey": "localAddressRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "localAddressRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "lowerIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "upperIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "remoteAddressRangesName", + "descriptionResourceKey": "remoteAddressRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "remoteAddressRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyNetworkTrafficRulesName", + "descriptionResourceKey": "vPNPolicyNetworkTrafficRulesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trafficRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "AppsAndTrafficRules", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "enableConditionalAccessName", + "descriptionResourceKey": "enableConditionalAccessDescription", + "childSettings": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "enableSingleSignOnName", + "descriptionResourceKey": "enableSingleSignOnDescription", + "childSettings": [ + { + "complexOptions": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "eDPPolicyAppsListNameName", + "descriptionResourceKey": "eDPPolicyAppsListNameDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 20, + "category": 120, + "nameResourceKey": "sCEPPolicyObjectIdentifierColumnName", + "descriptionResourceKey": "sCEPPolicyObjectIdentifierColumnDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "objectIdentifier", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 6, + "category": 120, + "nameResourceKey": "sCEPPolicyExtendedKeyUsageName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "singleSignOnEku", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 20, + "category": 120, + "nameResourceKey": "issuerHashName", + "descriptionResourceKey": "issuerHashDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "singleSignOnIssuerHash", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableSingleSignOnWithAlternateCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableConditionalAccess", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "ConditionalAccess", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyDNSSuffixesName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "dNSSuffixExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyDNSSuffixSearchListName", + "descriptionResourceKey": "vPNPolicyDNSSuffixSearchListDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsSuffixes", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSName", + "descriptionResourceKey": "dNSNameDescription1809", + "emptyValueResourceKey": "dNSNameExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "dNSServerDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "enterOnlyOneForDns", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "proxy", + "descriptionResourceKey": "vPNProxyDescription1809", + "emptyValueResourceKey": "proxyDNSExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServerUri", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNDnsAutoTriggerName", + "descriptionResourceKey": "vPNDnsAutoTriggerDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enabledOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "notConfigured", + "value": false, + "enabled": true + } + ], + "entityKey": "autoTrigger", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNDnsPersistentName", + "descriptionResourceKey": "vPNDnsPersistentDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enabledOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "notConfigured", + "value": false, + "enabled": true + } + ], + "entityKey": "persistent", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyNameResolutionPolicyTableRulesName", + "descriptionResourceKey": "vPNPolicyNameResolutionPolicyTableRulesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "vPNPolicyNameResolutionPolicyTableRulesName", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSName", + "descriptionResourceKey": "dNSNameDescription1809", + "emptyValueResourceKey": "dNSNameExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "enterOnlyOneForDns", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "dNSServerDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "proxy", + "descriptionResourceKey": "vPNProxyDescription1809", + "emptyValueResourceKey": "proxyDNSExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServerUri", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyNameResolutionPolicyTableRulesName", + "descriptionResourceKey": "vPNPolicyNameResolutionPolicyTableRulesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": false + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSName", + "descriptionResourceKey": "dNSNameDescription", + "emptyValueResourceKey": "dNSNameExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "enterOnlyOneForDns", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "dNSServerDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "proxy", + "emptyValueResourceKey": "proxyDNSExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServerUri", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyDNSNamesAndServersName", + "descriptionResourceKey": "vPNPolicyDNSNamesAndServersName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": false + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "DNSSettings", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "vPNPolicyUseProxyServerName", + "descriptionResourceKey": "vPNPolicyUseProxyServerDescription", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyAutomaticConfigurationScriptName", + "descriptionResourceKey": "vPNPolicyAutomaticConfigurationScriptDescription", + "emptyValueResourceKey": "vPNScriptExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "automaticConfigurationScriptUrl", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyAddressName", + "descriptionResourceKey": "vPNPolicyAddressDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "address", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 14, + "category": 120, + "nameResourceKey": "vPNPolicyPortNumberName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "port", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 16, + "category": 120, + "nameResourceKey": "vPNPolicyBypassProxySettingsForLocalAddressesName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "enabled": true + }, + { + "nameResourceKey": "enableOption", + "value": "true", + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": "false", + "enabled": true + } + ], + "entityKey": "bypassProxyServerForLocalAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 6, + "category": 120, + "nameResourceKey": "vPNPolicyUseProxyServerName", + "descriptionResourceKey": "vPNPolicyUseProxyServerDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServer", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "Proxy", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicySendAllNetworkTrafficThroughVPNName", + "descriptionResourceKey": "vPNPolicySendAllNetworkTrafficThroughVPNDescription", + "childSettings": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyDestinationPrefixName", + "descriptionResourceKey": "vPNPolicyDestinationPrefixName", + "emptyValueResourceKey": "proxyAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "destinationPrefix", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "vPNPolicyPrefixSizeName", + "descriptionResourceKey": "vPNPolicyPrefixSizeName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "prefixSize", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyRoutesForThisConnectionName", + "descriptionResourceKey": "vPNPolicyRoutesForThisConnectionDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "routes", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableSplitTunneling", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "VPNPolicySendAllNetworkTrafficThroughVPNName", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyTrustedNetworkDomainColumnName", + "descriptionResourceKey": "", + "emptyValueResourceKey": "VPNPolicyTrustedNetworkDomainExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trustedNetworkDomains", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyTrustedNetworkDomainName", + "descriptionResourceKey": "vPNPolicyTrustedNetworkDomainDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trustedNetworkDomains", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "VPNPolicyTrustedNetworkDetectionEnabledName", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + }, + { + "nameResourceKey": "pulseSecureOption", + "value": "pulseSecure", + "children": [ + { + "complexOptions": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyConnectionName", + "descriptionResourceKey": "vPNPolicyConnectionDescription", + "emptyValueResourceKey": "vPNConnectionExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "connectionName", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyServerDescriptionName", + "descriptionResourceKey": "vPNPolicyServerDescriptionDescription", + "emptyValueResourceKey": "vPNServerExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "description", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyServerIPAddressOrFQDNName", + "descriptionResourceKey": "vPNPolicyServerIPAddressOrFQDNDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "address", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyDefaultServerName", + "descriptionResourceKey": "vPNPolicyDefaultServerDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "trueOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "falseOption", + "value": false, + "enabled": true + } + ], + "entityKey": "isDefaultServer", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyServersName", + "descriptionResourceKey": "vPNPolicyServersDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyDNSRegistrationName", + "descriptionResourceKey": "vPNPolicyDNSRegistrationDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableDnsRegistration", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + }, + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyEnableAlwaysOnName", + "descriptionResourceKey": "vPNPolicyEnableAlwaysOnDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableAlwaysOn", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + }, + { + "dataType": 16, + "category": 120, + "nameResourceKey": "authenticationMethodName", + "descriptionResourceKey": "vPNAuthMethodDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "selectAnAuthenticationMethod", + "enabled": true + }, + { + "nameResourceKey": "certificatesOption", + "value": "certificate", + "children": [ + { + "complexOptions": [ + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": false + }, + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": false + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "authenticationCertificate", + "descriptionResourceKey": "clientCertForClientAuthenticationDescription", + "emptyValueResourceKey": "selectCertificate", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + }, + { + "nameResourceKey": "usernameAndPasswordOption", + "value": "usernameAndPassword", + "enabled": true + }, + { + "nameResourceKey": "derivedCredentialsOption", + "value": "derivedCredential", + "children": [ + { + "dataType": 9, + "category": 120, + "childSettings": [ + { + "dataType": 10, + "category": 120, + "nameResourceKey": "derivedCredentialsSearchingForTenantLevel", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 10, + "category": 120, + "nameResourceKey": "derivedCredentialsTenantLevelNotConfigured", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + + ], + "entityKey": "derivedCredentialSettings@odata.bind", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": false + } + ], + "entityKey": "authenticationMethod", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 0, + "category": 120, + "nameResourceKey": "vPNPolicyRememberCredentialsName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "rememberUserCredentials", + "booleanActions": 2, + "policyType": 89, + "enabled": true + }, + { + "dataType": 12, + "category": 120, + "nameResourceKey": "vPNPolicyCustomXMLName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "customXml", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "vpn", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 16, + "category": 120, + "nameResourceKey": "vPNWipOrAppsName", + "descriptionResourceKey": "vPNWipOrAppsDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "value": 0, + "enabled": true + }, + { + "nameResourceKey": "wipOption", + "value": 1, + "children": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "wipName", + "descriptionResourceKey": "wipDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "windowsInformationProtectionDomain", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + }, + { + "nameResourceKey": "associateAppsOption", + "value": 2, + "children": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyOnlyTheseAppsCanUseVPNName", + "descriptionResourceKey": "vPNPolicyOnlyTheseAppsCanUseVPNDescription", + "childSettings": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "appIdentifierName", + "descriptionResourceKey": "appIdentifierDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identifier", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 16, + "category": 120, + "nameResourceKey": "eDPPolicyNetworkLocationsListTypeName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "enabled": true + }, + { + "nameResourceKey": "desktopOption", + "value": "desktop", + "enabled": true + }, + { + "nameResourceKey": "universalOption", + "value": "universal", + "enabled": true + } + ], + "entityKey": "appType", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyAssociatedAppsName", + "descriptionResourceKey": "vPNPolicyAssociatedAppsDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "associatedApps", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "onlyAssociatedAppsCanUseConnection", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + } + ], + "entityKey": "syntheticWipOrApps", + "booleanActions": 0, + "defaultValue": 0, + "unconfiguredValue": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "ruleName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 16, + "category": 120, + "nameResourceKey": "trafficRuleRoutingPolicyTypeName", + "descriptionResourceKey": "trafficRuleRoutingPolicyTypeDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "noneOption", + "value": "none", + "enabled": true + }, + { + "nameResourceKey": "splitTunnelOption", + "value": "splitTunnel", + "enabled": true + }, + { + "nameResourceKey": "forceTunnelOption", + "value": "forceTunnel", + "enabled": true + } + ], + "entityKey": "routingPolicyType", + "booleanActions": 0, + "defaultValue": "none", + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "protocolsName", + "descriptionResourceKey": "empty", + "childSettings": [ + { + "columns": [ + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "lowerPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "upperPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "localPortRangesName", + "descriptionResourceKey": "localPortRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "localPortRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "lowerPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "upperPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "remotePortRangesName", + "descriptionResourceKey": "remotePortRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "remotePortRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + + ], + "entityKey": "protocols", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "trafficRuleAppName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "appId", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 16, + "category": 120, + "nameResourceKey": "trafficRuleAppTypeName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "desktopOption", + "value": "desktop", + "enabled": true + }, + { + "nameResourceKey": "universalOption", + "value": "universal", + "enabled": true + } + ], + "entityKey": "appType", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "lowerIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "upperIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "localAddressRangesName", + "descriptionResourceKey": "localAddressRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "localAddressRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "lowerIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "upperIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "remoteAddressRangesName", + "descriptionResourceKey": "remoteAddressRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "remoteAddressRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyNetworkTrafficRulesName", + "descriptionResourceKey": "vPNPolicyNetworkTrafficRulesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trafficRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "AppsAndTrafficRules", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "enableConditionalAccessName", + "descriptionResourceKey": "enableConditionalAccessDescription", + "childSettings": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "enableSingleSignOnName", + "descriptionResourceKey": "enableSingleSignOnDescription", + "childSettings": [ + { + "complexOptions": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "eDPPolicyAppsListNameName", + "descriptionResourceKey": "eDPPolicyAppsListNameDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 20, + "category": 120, + "nameResourceKey": "sCEPPolicyObjectIdentifierColumnName", + "descriptionResourceKey": "sCEPPolicyObjectIdentifierColumnDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "objectIdentifier", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 6, + "category": 120, + "nameResourceKey": "sCEPPolicyExtendedKeyUsageName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "singleSignOnEku", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 20, + "category": 120, + "nameResourceKey": "issuerHashName", + "descriptionResourceKey": "issuerHashDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "singleSignOnIssuerHash", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableSingleSignOnWithAlternateCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableConditionalAccess", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "ConditionalAccess", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyDNSSuffixesName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "dNSSuffixExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyDNSSuffixSearchListName", + "descriptionResourceKey": "vPNPolicyDNSSuffixSearchListDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsSuffixes", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSName", + "descriptionResourceKey": "dNSNameDescription1809", + "emptyValueResourceKey": "dNSNameExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "dNSServerDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "enterOnlyOneForDns", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "proxy", + "descriptionResourceKey": "vPNProxyDescription1809", + "emptyValueResourceKey": "proxyDNSExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServerUri", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNDnsAutoTriggerName", + "descriptionResourceKey": "vPNDnsAutoTriggerDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enabledOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "notConfigured", + "value": false, + "enabled": true + } + ], + "entityKey": "autoTrigger", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNDnsPersistentName", + "descriptionResourceKey": "vPNDnsPersistentDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enabledOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "notConfigured", + "value": false, + "enabled": true + } + ], + "entityKey": "persistent", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyNameResolutionPolicyTableRulesName", + "descriptionResourceKey": "vPNPolicyNameResolutionPolicyTableRulesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "vPNPolicyNameResolutionPolicyTableRulesName", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSName", + "descriptionResourceKey": "dNSNameDescription1809", + "emptyValueResourceKey": "dNSNameExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "enterOnlyOneForDns", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "dNSServerDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "proxy", + "descriptionResourceKey": "vPNProxyDescription1809", + "emptyValueResourceKey": "proxyDNSExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServerUri", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyNameResolutionPolicyTableRulesName", + "descriptionResourceKey": "vPNPolicyNameResolutionPolicyTableRulesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": false + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSName", + "descriptionResourceKey": "dNSNameDescription", + "emptyValueResourceKey": "dNSNameExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "enterOnlyOneForDns", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "dNSServerDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "proxy", + "emptyValueResourceKey": "proxyDNSExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServerUri", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyDNSNamesAndServersName", + "descriptionResourceKey": "vPNPolicyDNSNamesAndServersName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": false + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "DNSSettings", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "vPNPolicyUseProxyServerName", + "descriptionResourceKey": "vPNPolicyUseProxyServerDescription", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyAutomaticConfigurationScriptName", + "descriptionResourceKey": "vPNPolicyAutomaticConfigurationScriptDescription", + "emptyValueResourceKey": "vPNScriptExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "automaticConfigurationScriptUrl", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyAddressName", + "descriptionResourceKey": "vPNPolicyAddressDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "address", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 14, + "category": 120, + "nameResourceKey": "vPNPolicyPortNumberName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "port", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 16, + "category": 120, + "nameResourceKey": "vPNPolicyBypassProxySettingsForLocalAddressesName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "enabled": true + }, + { + "nameResourceKey": "enableOption", + "value": "true", + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": "false", + "enabled": true + } + ], + "entityKey": "bypassProxyServerForLocalAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 6, + "category": 120, + "nameResourceKey": "vPNPolicyUseProxyServerName", + "descriptionResourceKey": "vPNPolicyUseProxyServerDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServer", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "Proxy", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicySendAllNetworkTrafficThroughVPNName", + "descriptionResourceKey": "vPNPolicySendAllNetworkTrafficThroughVPNDescription", + "childSettings": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyDestinationPrefixName", + "descriptionResourceKey": "vPNPolicyDestinationPrefixName", + "emptyValueResourceKey": "proxyAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "destinationPrefix", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "vPNPolicyPrefixSizeName", + "descriptionResourceKey": "vPNPolicyPrefixSizeName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "prefixSize", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyRoutesForThisConnectionName", + "descriptionResourceKey": "vPNPolicyRoutesForThisConnectionDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "routes", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableSplitTunneling", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "VPNPolicySendAllNetworkTrafficThroughVPNName", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyTrustedNetworkDomainColumnName", + "descriptionResourceKey": "", + "emptyValueResourceKey": "VPNPolicyTrustedNetworkDomainExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trustedNetworkDomains", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyTrustedNetworkDomainName", + "descriptionResourceKey": "vPNPolicyTrustedNetworkDomainDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trustedNetworkDomains", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "VPNPolicyTrustedNetworkDetectionEnabledName", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + }, + { + "nameResourceKey": "dellSoniceWallMobileConnectOption", + "value": "dellSonicWallMobileConnect", + "children": [ + { + "complexOptions": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyConnectionName", + "descriptionResourceKey": "vPNPolicyConnectionDescription", + "emptyValueResourceKey": "vPNConnectionExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "connectionName", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyServerDescriptionName", + "descriptionResourceKey": "vPNPolicyServerDescriptionDescription", + "emptyValueResourceKey": "vPNServerExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "description", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyServerIPAddressOrFQDNName", + "descriptionResourceKey": "vPNPolicyServerIPAddressOrFQDNDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "address", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyDefaultServerName", + "descriptionResourceKey": "vPNPolicyDefaultServerDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "trueOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "falseOption", + "value": false, + "enabled": true + } + ], + "entityKey": "isDefaultServer", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyServersName", + "descriptionResourceKey": "vPNPolicyServersDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyDNSRegistrationName", + "descriptionResourceKey": "vPNPolicyDNSRegistrationDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableDnsRegistration", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + }, + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyEnableAlwaysOnName", + "descriptionResourceKey": "vPNPolicyEnableAlwaysOnDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableAlwaysOn", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + }, + { + "dataType": 16, + "category": 120, + "nameResourceKey": "authenticationMethodName", + "descriptionResourceKey": "vPNAuthMethodDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "selectAnAuthenticationMethod", + "enabled": true + }, + { + "nameResourceKey": "certificatesOption", + "value": "certificate", + "children": [ + { + "complexOptions": [ + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": false + }, + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "vPNPolicySelectAClientCertificateDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": false + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "authenticationCertificate", + "descriptionResourceKey": "clientCertForClientAuthenticationDescription", + "emptyValueResourceKey": "selectCertificate", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + }, + { + "nameResourceKey": "usernameAndPasswordOption", + "value": "usernameAndPassword", + "enabled": true + }, + { + "nameResourceKey": "derivedCredentialsOption", + "value": "derivedCredential", + "children": [ + { + "dataType": 9, + "category": 120, + "childSettings": [ + { + "dataType": 10, + "category": 120, + "nameResourceKey": "derivedCredentialsSearchingForTenantLevel", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 10, + "category": 120, + "nameResourceKey": "derivedCredentialsTenantLevelNotConfigured", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + + ], + "entityKey": "derivedCredentialSettings@odata.bind", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": false + } + ], + "entityKey": "authenticationMethod", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 0, + "category": 120, + "nameResourceKey": "vPNPolicyRememberCredentialsName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "rememberUserCredentials", + "booleanActions": 2, + "policyType": 89, + "enabled": true + }, + { + "dataType": 12, + "category": 120, + "nameResourceKey": "vPNPolicyCustomXMLName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "customXml", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "vpn", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 16, + "category": 120, + "nameResourceKey": "vPNWipOrAppsName", + "descriptionResourceKey": "vPNWipOrAppsDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "value": 0, + "enabled": true + }, + { + "nameResourceKey": "wipOption", + "value": 1, + "children": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "wipName", + "descriptionResourceKey": "wipDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "windowsInformationProtectionDomain", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + }, + { + "nameResourceKey": "associateAppsOption", + "value": 2, + "children": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyOnlyTheseAppsCanUseVPNName", + "descriptionResourceKey": "vPNPolicyOnlyTheseAppsCanUseVPNDescription", + "childSettings": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "appIdentifierName", + "descriptionResourceKey": "appIdentifierDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identifier", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 16, + "category": 120, + "nameResourceKey": "eDPPolicyNetworkLocationsListTypeName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "enabled": true + }, + { + "nameResourceKey": "desktopOption", + "value": "desktop", + "enabled": true + }, + { + "nameResourceKey": "universalOption", + "value": "universal", + "enabled": true + } + ], + "entityKey": "appType", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyAssociatedAppsName", + "descriptionResourceKey": "vPNPolicyAssociatedAppsDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "associatedApps", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "onlyAssociatedAppsCanUseConnection", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + } + ], + "entityKey": "syntheticWipOrApps", + "booleanActions": 0, + "defaultValue": 0, + "unconfiguredValue": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "ruleName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 16, + "category": 120, + "nameResourceKey": "trafficRuleRoutingPolicyTypeName", + "descriptionResourceKey": "trafficRuleRoutingPolicyTypeDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "noneOption", + "value": "none", + "enabled": true + }, + { + "nameResourceKey": "splitTunnelOption", + "value": "splitTunnel", + "enabled": true + }, + { + "nameResourceKey": "forceTunnelOption", + "value": "forceTunnel", + "enabled": true + } + ], + "entityKey": "routingPolicyType", + "booleanActions": 0, + "defaultValue": "none", + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "protocolsName", + "descriptionResourceKey": "empty", + "childSettings": [ + { + "columns": [ + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "lowerPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "upperPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "localPortRangesName", + "descriptionResourceKey": "localPortRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "localPortRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "lowerPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "upperPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "remotePortRangesName", + "descriptionResourceKey": "remotePortRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "remotePortRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + + ], + "entityKey": "protocols", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "trafficRuleAppName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "appId", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 16, + "category": 120, + "nameResourceKey": "trafficRuleAppTypeName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "desktopOption", + "value": "desktop", + "enabled": true + }, + { + "nameResourceKey": "universalOption", + "value": "universal", + "enabled": true + } + ], + "entityKey": "appType", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "lowerIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "upperIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "localAddressRangesName", + "descriptionResourceKey": "localAddressRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "localAddressRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "lowerIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "upperIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "remoteAddressRangesName", + "descriptionResourceKey": "remoteAddressRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "remoteAddressRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyNetworkTrafficRulesName", + "descriptionResourceKey": "vPNPolicyNetworkTrafficRulesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trafficRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "AppsAndTrafficRules", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "enableConditionalAccessName", + "descriptionResourceKey": "enableConditionalAccessDescription", + "childSettings": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "enableSingleSignOnName", + "descriptionResourceKey": "enableSingleSignOnDescription", + "childSettings": [ + { + "complexOptions": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "eDPPolicyAppsListNameName", + "descriptionResourceKey": "eDPPolicyAppsListNameDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 20, + "category": 120, + "nameResourceKey": "sCEPPolicyObjectIdentifierColumnName", + "descriptionResourceKey": "sCEPPolicyObjectIdentifierColumnDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "objectIdentifier", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 6, + "category": 120, + "nameResourceKey": "sCEPPolicyExtendedKeyUsageName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "singleSignOnEku", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 20, + "category": 120, + "nameResourceKey": "issuerHashName", + "descriptionResourceKey": "issuerHashDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "singleSignOnIssuerHash", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableSingleSignOnWithAlternateCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableConditionalAccess", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "ConditionalAccess", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyDNSSuffixesName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "dNSSuffixExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyDNSSuffixSearchListName", + "descriptionResourceKey": "vPNPolicyDNSSuffixSearchListDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsSuffixes", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSName", + "descriptionResourceKey": "dNSNameDescription1809", + "emptyValueResourceKey": "dNSNameExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "dNSServerDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "enterOnlyOneForDns", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "proxy", + "descriptionResourceKey": "vPNProxyDescription1809", + "emptyValueResourceKey": "proxyDNSExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServerUri", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNDnsAutoTriggerName", + "descriptionResourceKey": "vPNDnsAutoTriggerDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enabledOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "notConfigured", + "value": false, + "enabled": true + } + ], + "entityKey": "autoTrigger", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNDnsPersistentName", + "descriptionResourceKey": "vPNDnsPersistentDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enabledOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "notConfigured", + "value": false, + "enabled": true + } + ], + "entityKey": "persistent", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyNameResolutionPolicyTableRulesName", + "descriptionResourceKey": "vPNPolicyNameResolutionPolicyTableRulesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "vPNPolicyNameResolutionPolicyTableRulesName", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSName", + "descriptionResourceKey": "dNSNameDescription1809", + "emptyValueResourceKey": "dNSNameExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "enterOnlyOneForDns", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "dNSServerDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "proxy", + "descriptionResourceKey": "vPNProxyDescription1809", + "emptyValueResourceKey": "proxyDNSExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServerUri", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyNameResolutionPolicyTableRulesName", + "descriptionResourceKey": "vPNPolicyNameResolutionPolicyTableRulesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": false + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSName", + "descriptionResourceKey": "dNSNameDescription", + "emptyValueResourceKey": "dNSNameExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "enterOnlyOneForDns", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "dNSServerDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "proxy", + "emptyValueResourceKey": "proxyDNSExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServerUri", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyDNSNamesAndServersName", + "descriptionResourceKey": "vPNPolicyDNSNamesAndServersName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": false + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "DNSSettings", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "vPNPolicyUseProxyServerName", + "descriptionResourceKey": "vPNPolicyUseProxyServerDescription", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyAutomaticConfigurationScriptName", + "descriptionResourceKey": "vPNPolicyAutomaticConfigurationScriptDescription", + "emptyValueResourceKey": "vPNScriptExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "automaticConfigurationScriptUrl", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyAddressName", + "descriptionResourceKey": "vPNPolicyAddressDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "address", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 14, + "category": 120, + "nameResourceKey": "vPNPolicyPortNumberName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "port", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 16, + "category": 120, + "nameResourceKey": "vPNPolicyBypassProxySettingsForLocalAddressesName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "enabled": true + }, + { + "nameResourceKey": "enableOption", + "value": "true", + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": "false", + "enabled": true + } + ], + "entityKey": "bypassProxyServerForLocalAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 6, + "category": 120, + "nameResourceKey": "vPNPolicyUseProxyServerName", + "descriptionResourceKey": "vPNPolicyUseProxyServerDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServer", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "Proxy", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicySendAllNetworkTrafficThroughVPNName", + "descriptionResourceKey": "vPNPolicySendAllNetworkTrafficThroughVPNDescription", + "childSettings": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyDestinationPrefixName", + "descriptionResourceKey": "vPNPolicyDestinationPrefixName", + "emptyValueResourceKey": "proxyAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "destinationPrefix", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "vPNPolicyPrefixSizeName", + "descriptionResourceKey": "vPNPolicyPrefixSizeName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "prefixSize", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyRoutesForThisConnectionName", + "descriptionResourceKey": "vPNPolicyRoutesForThisConnectionDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "routes", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableSplitTunneling", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "VPNPolicySendAllNetworkTrafficThroughVPNName", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyTrustedNetworkDomainColumnName", + "descriptionResourceKey": "", + "emptyValueResourceKey": "VPNPolicyTrustedNetworkDomainExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trustedNetworkDomains", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyTrustedNetworkDomainName", + "descriptionResourceKey": "vPNPolicyTrustedNetworkDomainDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trustedNetworkDomains", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "VPNPolicyTrustedNetworkDetectionEnabledName", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + }, + { + "nameResourceKey": "automaticOptionNativeType", + "value": "automatic", + "children": [ + { + "complexOptions": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyConnectionName", + "descriptionResourceKey": "vPNPolicyConnectionDescription", + "emptyValueResourceKey": "vPNConnectionExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "connectionName", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyServerDescriptionName", + "descriptionResourceKey": "vPNPolicyServerDescriptionDescription", + "emptyValueResourceKey": "vPNServerExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "description", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyServerIPAddressOrFQDNName", + "descriptionResourceKey": "vPNPolicyServerIPAddressOrFQDNDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "address", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyDefaultServerName", + "descriptionResourceKey": "vPNPolicyDefaultServerDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "trueOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "falseOption", + "value": false, + "enabled": true + } + ], + "entityKey": "isDefaultServer", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyServersName", + "descriptionResourceKey": "vPNPolicyServersDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyDNSRegistrationName", + "descriptionResourceKey": "vPNPolicyDNSRegistrationDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableDnsRegistration", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + }, + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyEnableAlwaysOnName", + "descriptionResourceKey": "vPNPolicyEnableAlwaysOnDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableAlwaysOn", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + }, + { + "dataType": 0, + "category": 120, + "nameResourceKey": "vPNPolicyRememberCredentialsName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "rememberUserCredentials", + "booleanActions": 2, + "policyType": 89, + "enabled": true + }, + { + "dataType": 16, + "category": 120, + "nameResourceKey": "authenticationMethodName", + "descriptionResourceKey": "vPNAuthMethodDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "selectAnAuthenticationMethod", + "enabled": true + }, + { + "nameResourceKey": "certificatesOption", + "value": "customEapXml", + "children": [ + { + "complexOptions": [ + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "clientCertForEapXmlClientAuthenticationDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "authenticationCertificate", + "descriptionResourceKey": "clientCertForEapXmlClientAuthenticationDescription", + "emptyValueResourceKey": "selectCertificate", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + }, + { + "nameResourceKey": "derivedCredentialsOption", + "value": "derivedCredential", + "enabled": true + } + ], + "entityKey": "authenticationMethod", + "booleanActions": 0, + "policyType": 89, + "enabled": false + }, + { + "value": "customEapXml", + "dataType": 9, + "category": 120, + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "authenticationMethod", + "booleanActions": 0, + "policyType": 89, + "enabled": false + }, + { + "complexOptions": [ + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "clientCertForEapXmlClientAuthenticationDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "authenticationCertificate", + "descriptionResourceKey": "clientCertForEapXmlClientAuthenticationDescription", + "emptyValueResourceKey": "selectCertificate", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": false + }, + { + "dataType": 12, + "category": 120, + "nameResourceKey": "eAPXmlName", + "descriptionResourceKey": "vPNEAPXMLDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "eapXml", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "vpn", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 16, + "category": 120, + "nameResourceKey": "vPNWipOrAppsName", + "descriptionResourceKey": "vPNWipOrAppsDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "value": 0, + "enabled": true + }, + { + "nameResourceKey": "wipOption", + "value": 1, + "children": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "wipName", + "descriptionResourceKey": "wipDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "windowsInformationProtectionDomain", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + }, + { + "nameResourceKey": "associateAppsOption", + "value": 2, + "children": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyOnlyTheseAppsCanUseVPNName", + "descriptionResourceKey": "vPNPolicyOnlyTheseAppsCanUseVPNDescription", + "childSettings": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "appIdentifierName", + "descriptionResourceKey": "appIdentifierDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identifier", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 16, + "category": 120, + "nameResourceKey": "eDPPolicyNetworkLocationsListTypeName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "enabled": true + }, + { + "nameResourceKey": "desktopOption", + "value": "desktop", + "enabled": true + }, + { + "nameResourceKey": "universalOption", + "value": "universal", + "enabled": true + } + ], + "entityKey": "appType", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyAssociatedAppsName", + "descriptionResourceKey": "vPNPolicyAssociatedAppsDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "associatedApps", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "onlyAssociatedAppsCanUseConnection", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + } + ], + "entityKey": "syntheticWipOrApps", + "booleanActions": 0, + "defaultValue": 0, + "unconfiguredValue": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "ruleName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 16, + "category": 120, + "nameResourceKey": "trafficRuleRoutingPolicyTypeName", + "descriptionResourceKey": "trafficRuleRoutingPolicyTypeDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "noneOption", + "value": "none", + "enabled": true + }, + { + "nameResourceKey": "splitTunnelOption", + "value": "splitTunnel", + "enabled": true + }, + { + "nameResourceKey": "forceTunnelOption", + "value": "forceTunnel", + "enabled": true + } + ], + "entityKey": "routingPolicyType", + "booleanActions": 0, + "defaultValue": "none", + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "protocolsName", + "descriptionResourceKey": "empty", + "childSettings": [ + { + "columns": [ + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "lowerPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "upperPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "localPortRangesName", + "descriptionResourceKey": "localPortRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "localPortRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "lowerPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "upperPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "remotePortRangesName", + "descriptionResourceKey": "remotePortRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "remotePortRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + + ], + "entityKey": "protocols", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "trafficRuleAppName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "appId", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 16, + "category": 120, + "nameResourceKey": "trafficRuleAppTypeName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "desktopOption", + "value": "desktop", + "enabled": true + }, + { + "nameResourceKey": "universalOption", + "value": "universal", + "enabled": true + } + ], + "entityKey": "appType", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "lowerIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "upperIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "localAddressRangesName", + "descriptionResourceKey": "localAddressRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "localAddressRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "lowerIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "upperIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "remoteAddressRangesName", + "descriptionResourceKey": "remoteAddressRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "remoteAddressRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyNetworkTrafficRulesName", + "descriptionResourceKey": "vPNPolicyNetworkTrafficRulesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trafficRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "AppsAndTrafficRules", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "enableConditionalAccessName", + "descriptionResourceKey": "enableConditionalAccessDescription", + "childSettings": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "enableSingleSignOnName", + "descriptionResourceKey": "enableSingleSignOnDescription", + "childSettings": [ + { + "complexOptions": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "eDPPolicyAppsListNameName", + "descriptionResourceKey": "eDPPolicyAppsListNameDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 20, + "category": 120, + "nameResourceKey": "sCEPPolicyObjectIdentifierColumnName", + "descriptionResourceKey": "sCEPPolicyObjectIdentifierColumnDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "objectIdentifier", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 6, + "category": 120, + "nameResourceKey": "sCEPPolicyExtendedKeyUsageName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "singleSignOnEku", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 20, + "category": 120, + "nameResourceKey": "issuerHashName", + "descriptionResourceKey": "issuerHashDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "singleSignOnIssuerHash", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableSingleSignOnWithAlternateCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableConditionalAccess", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "ConditionalAccess", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyDNSSuffixesName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "dNSSuffixExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyDNSSuffixSearchListName", + "descriptionResourceKey": "vPNPolicyDNSSuffixSearchListDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsSuffixes", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSName", + "descriptionResourceKey": "dNSNameDescription1809", + "emptyValueResourceKey": "dNSNameExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "dNSServerDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "enterOnlyOneForDns", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "proxy", + "descriptionResourceKey": "vPNProxyDescription1809", + "emptyValueResourceKey": "proxyDNSExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServerUri", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNDnsAutoTriggerName", + "descriptionResourceKey": "vPNDnsAutoTriggerDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enabledOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "notConfigured", + "value": false, + "enabled": true + } + ], + "entityKey": "autoTrigger", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNDnsPersistentName", + "descriptionResourceKey": "vPNDnsPersistentDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enabledOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "notConfigured", + "value": false, + "enabled": true + } + ], + "entityKey": "persistent", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyNameResolutionPolicyTableRulesName", + "descriptionResourceKey": "vPNPolicyNameResolutionPolicyTableRulesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "vPNPolicyNameResolutionPolicyTableRulesName", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSName", + "descriptionResourceKey": "dNSNameDescription1809", + "emptyValueResourceKey": "dNSNameExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "enterOnlyOneForDns", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "dNSServerDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "proxy", + "descriptionResourceKey": "vPNProxyDescription1809", + "emptyValueResourceKey": "proxyDNSExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServerUri", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyNameResolutionPolicyTableRulesName", + "descriptionResourceKey": "vPNPolicyNameResolutionPolicyTableRulesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": false + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSName", + "descriptionResourceKey": "dNSNameDescription", + "emptyValueResourceKey": "dNSNameExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "enterOnlyOneForDns", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "dNSServerDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "proxy", + "emptyValueResourceKey": "proxyDNSExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServerUri", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyDNSNamesAndServersName", + "descriptionResourceKey": "vPNPolicyDNSNamesAndServersName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": false + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "DNSSettings", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "vPNPolicyUseProxyServerName", + "descriptionResourceKey": "vPNPolicyUseProxyServerDescription", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyAutomaticConfigurationScriptName", + "descriptionResourceKey": "vPNPolicyAutomaticConfigurationScriptDescription", + "emptyValueResourceKey": "vPNScriptExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "automaticConfigurationScriptUrl", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyAddressName", + "descriptionResourceKey": "vPNPolicyAddressDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "address", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 14, + "category": 120, + "nameResourceKey": "vPNPolicyPortNumberName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "port", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 16, + "category": 120, + "nameResourceKey": "vPNPolicyBypassProxySettingsForLocalAddressesName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "enabled": true + }, + { + "nameResourceKey": "enableOption", + "value": "true", + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": "false", + "enabled": true + } + ], + "entityKey": "bypassProxyServerForLocalAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 6, + "category": 120, + "nameResourceKey": "vPNPolicyUseProxyServerName", + "descriptionResourceKey": "vPNPolicyUseProxyServerDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServer", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "Proxy", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicySendAllNetworkTrafficThroughVPNName", + "descriptionResourceKey": "vPNPolicySendAllNetworkTrafficThroughVPNDescription", + "childSettings": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyDestinationPrefixName", + "descriptionResourceKey": "vPNPolicyDestinationPrefixName", + "emptyValueResourceKey": "proxyAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "destinationPrefix", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "vPNPolicyPrefixSizeName", + "descriptionResourceKey": "vPNPolicyPrefixSizeName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "prefixSize", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyRoutesForThisConnectionName", + "descriptionResourceKey": "vPNPolicyRoutesForThisConnectionDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "routes", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableSplitTunneling", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "VPNPolicySendAllNetworkTrafficThroughVPNName", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyTrustedNetworkDomainColumnName", + "descriptionResourceKey": "", + "emptyValueResourceKey": "VPNPolicyTrustedNetworkDomainExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trustedNetworkDomains", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyTrustedNetworkDomainName", + "descriptionResourceKey": "vPNPolicyTrustedNetworkDomainDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trustedNetworkDomains", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "VPNPolicyTrustedNetworkDetectionEnabledName", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + }, + { + "nameResourceKey": "iKEOptionNativeType", + "value": "ikEv2", + "children": [ + { + "complexOptions": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyConnectionName", + "descriptionResourceKey": "vPNPolicyConnectionDescription", + "emptyValueResourceKey": "vPNConnectionExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "connectionName", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyServerDescriptionName", + "descriptionResourceKey": "vPNPolicyServerDescriptionDescription", + "emptyValueResourceKey": "vPNServerExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "description", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyServerIPAddressOrFQDNName", + "descriptionResourceKey": "vPNPolicyServerIPAddressOrFQDNDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "address", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyDefaultServerName", + "descriptionResourceKey": "vPNPolicyDefaultServerDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "trueOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "falseOption", + "value": false, + "enabled": true + } + ], + "entityKey": "isDefaultServer", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyServersName", + "descriptionResourceKey": "vPNPolicyServersDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyDNSRegistrationName", + "descriptionResourceKey": "vPNPolicyDNSRegistrationDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableDnsRegistration", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + }, + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyEnableAlwaysOnName", + "descriptionResourceKey": "vPNPolicyEnableAlwaysOnDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableAlwaysOn", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + }, + { + "dataType": 0, + "category": 120, + "nameResourceKey": "vPNPolicyRememberCredentialsName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "rememberUserCredentials", + "booleanActions": 2, + "policyType": 89, + "enabled": true + }, + { + "dataType": 16, + "category": 120, + "nameResourceKey": "authenticationMethodName", + "descriptionResourceKey": "authenticationMethodIKEv2Description", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "selectAnAuthenticationMethod", + "enabled": true + }, + { + "nameResourceKey": "eAPName", + "value": "customEapXml", + "children": [ + { + "complexOptions": [ + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "clientCertForEapXmlClientAuthenticationDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "authenticationCertificate", + "descriptionResourceKey": "clientCertForEapXmlClientAuthenticationDescription", + "emptyValueResourceKey": "selectCertificate", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 12, + "category": 120, + "nameResourceKey": "eAPXmlName", + "descriptionResourceKey": "vPNEAPXMLDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "eapXml", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + }, + { + "nameResourceKey": "machineCertificatesName", + "value": "certificate", + "children": [ + { + "complexOptions": [ + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "clientCertForEapXmlClientAuthenticationDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "authenticationCertificate", + "descriptionResourceKey": "clientCertForEapXmlClientAuthenticationDescription", + "emptyValueResourceKey": "selectCertificate", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + }, + { + "nameResourceKey": "derivedCredentialsOption", + "value": "derivedCredential", + "children": [ + { + "dataType": 12, + "category": 120, + "nameResourceKey": "eAPXmlName", + "descriptionResourceKey": "vPNEAPXMLDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "eapXml", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": false + } + ], + "entityKey": "authenticationMethod", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyEnableDeviceTunnelName", + "descriptionResourceKey": "vPNPolicyEnableDeviceTunnelDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableDeviceTunnel", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": false + }, + { + "complexOptions": [ + { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "iKESecurityAssociationParamName", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": false + }, + { + "dataType": 16, + "category": 120, + "nameResourceKey": "encryptionMethodName", + "descriptionResourceKey": "encryptionMethodDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "enabled": true + }, + { + "nameResourceKey": "dES", + "value": "des", + "enabled": true + }, + { + "nameResourceKey": "threeDES", + "value": "tripleDes", + "enabled": true + }, + { + "nameResourceKey": "aES128", + "value": "aes128", + "enabled": true + }, + { + "nameResourceKey": "aES192", + "value": "aes192", + "enabled": true + }, + { + "nameResourceKey": "aES256", + "value": "aes256", + "enabled": true + }, + { + "nameResourceKey": "authenticationTransformConstantsGCMAES128", + "value": "aes128Gcm", + "enabled": true + }, + { + "nameResourceKey": "authenticationTransformConstantsGCMAES256", + "value": "aes256Gcm", + "enabled": true + } + ], + "entityKey": "encryptionMethod", + "booleanActions": 0, + "policyType": 89, + "enabled": false + }, + { + "dataType": 16, + "category": 120, + "nameResourceKey": "integrityCheckMethodName", + "descriptionResourceKey": "integrityCheckMethodDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "enabled": true + }, + { + "nameResourceKey": "mD5", + "value": "md5", + "enabled": true + }, + { + "nameResourceKey": "sHA196", + "value": "sha1_96", + "enabled": true + }, + { + "nameResourceKey": "sHA2256", + "value": "sha2_256", + "enabled": true + }, + { + "nameResourceKey": "sHA2384", + "value": "sha2_384", + "enabled": true + } + ], + "entityKey": "integrityCheckMethod", + "booleanActions": 0, + "policyType": 89, + "enabled": false + }, + { + "dataType": 16, + "category": 120, + "nameResourceKey": "dHGroupName", + "descriptionResourceKey": "dHGroupDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "enabled": true + }, + { + "displayText": "1", + "value": "group1", + "enabled": true + }, + { + "displayText": "2", + "value": "group2", + "enabled": true + }, + { + "displayText": "14", + "value": "group14", + "enabled": true + }, + { + "displayText": "19", + "value": "ecp256", + "enabled": true + }, + { + "displayText": "20", + "value": "ecp384", + "enabled": true + }, + { + "displayText": "24", + "value": "group24", + "enabled": true + } + ], + "entityKey": "dhGroup", + "booleanActions": 0, + "policyType": 89, + "enabled": false + }, + { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "childSecurityAssociationParamName", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": false + }, + { + "dataType": 16, + "category": 120, + "nameResourceKey": "cipherTransformAlgorithmName", + "descriptionResourceKey": "cipherTransformAlgorithmDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "enabled": true + }, + { + "nameResourceKey": "cipherTransformConstantsDES", + "value": "des", + "enabled": true + }, + { + "nameResourceKey": "cipherTransformConstants3DES", + "value": "tripleDes", + "enabled": true + }, + { + "nameResourceKey": "cipherTransformConstantsAES128", + "value": "aes128", + "enabled": true + }, + { + "nameResourceKey": "cipherTransformConstantsAES192", + "value": "aes192", + "enabled": true + }, + { + "nameResourceKey": "cipherTransformConstantsAES256", + "value": "aes256", + "enabled": true + }, + { + "nameResourceKey": "authenticationTransformConstantsGCMAES128", + "value": "aes128Gcm", + "enabled": true + }, + { + "nameResourceKey": "authenticationTransformConstantsGCMAES192", + "value": "aes192Gcm", + "enabled": true + }, + { + "nameResourceKey": "authenticationTransformConstantsGCMAES256", + "value": "aes256Gcm", + "enabled": true + } + ], + "entityKey": "cipherTransformConstants", + "booleanActions": 0, + "policyType": 89, + "enabled": false + }, + { + "dataType": 16, + "category": 120, + "nameResourceKey": "authenticationTransformAlgorithmName", + "descriptionResourceKey": "authenticationTransformAlgorithmDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "enabled": true + }, + { + "nameResourceKey": "authenticationTransformConstantsMD596", + "value": "md5_96", + "enabled": true + }, + { + "nameResourceKey": "authenticationTransformConstantsSHA196", + "value": "sha1_96", + "enabled": true + }, + { + "nameResourceKey": "authenticationTransformConstantsSHA256128", + "value": "sha_256_128", + "enabled": true + }, + { + "nameResourceKey": "authenticationTransformConstantsGCMAES128", + "value": "aes128Gcm", + "enabled": true + }, + { + "nameResourceKey": "authenticationTransformConstantsGCMAES192", + "value": "aes192Gcm", + "enabled": true + }, + { + "nameResourceKey": "authenticationTransformConstantsGCMAES256", + "value": "aes256Gcm", + "enabled": true + } + ], + "entityKey": "authenticationTransformConstants", + "booleanActions": 0, + "policyType": 89, + "enabled": false + }, + { + "dataType": 16, + "category": 120, + "nameResourceKey": "pFSGroupName", + "descriptionResourceKey": "pFSGroupDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "enabled": true + }, + { + "nameResourceKey": "pFSMMDescription", + "value": "pfsMM", + "enabled": true + }, + { + "displayText": "1", + "value": "pfs1", + "enabled": true + }, + { + "displayText": "2", + "value": "pfs2", + "enabled": true + }, + { + "displayText": "14", + "value": "pfs2048", + "enabled": true + }, + { + "displayText": "19", + "value": "ecp256", + "enabled": true + }, + { + "displayText": "20", + "value": "ecp384", + "enabled": true + }, + { + "displayText": "24", + "value": "pfs24", + "enabled": true + } + ], + "entityKey": "pfsGroup", + "booleanActions": 0, + "policyType": 89, + "enabled": false + } + ], + "dataType": 6, + "category": 120, + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "cryptographySuite", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "vpn", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 16, + "category": 120, + "nameResourceKey": "vPNWipOrAppsName", + "descriptionResourceKey": "vPNWipOrAppsDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "value": 0, + "enabled": true + }, + { + "nameResourceKey": "wipOption", + "value": 1, + "children": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "wipName", + "descriptionResourceKey": "wipDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "windowsInformationProtectionDomain", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + }, + { + "nameResourceKey": "associateAppsOption", + "value": 2, + "children": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyOnlyTheseAppsCanUseVPNName", + "descriptionResourceKey": "vPNPolicyOnlyTheseAppsCanUseVPNDescription", + "childSettings": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "appIdentifierName", + "descriptionResourceKey": "appIdentifierDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identifier", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 16, + "category": 120, + "nameResourceKey": "eDPPolicyNetworkLocationsListTypeName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "enabled": true + }, + { + "nameResourceKey": "desktopOption", + "value": "desktop", + "enabled": true + }, + { + "nameResourceKey": "universalOption", + "value": "universal", + "enabled": true + } + ], + "entityKey": "appType", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyAssociatedAppsName", + "descriptionResourceKey": "vPNPolicyAssociatedAppsDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "associatedApps", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "onlyAssociatedAppsCanUseConnection", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + } + ], + "entityKey": "syntheticWipOrApps", + "booleanActions": 0, + "defaultValue": 0, + "unconfiguredValue": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "ruleName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 16, + "category": 120, + "nameResourceKey": "trafficRuleRoutingPolicyTypeName", + "descriptionResourceKey": "trafficRuleRoutingPolicyTypeDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "noneOption", + "value": "none", + "enabled": true + }, + { + "nameResourceKey": "splitTunnelOption", + "value": "splitTunnel", + "enabled": true + }, + { + "nameResourceKey": "forceTunnelOption", + "value": "forceTunnel", + "enabled": true + } + ], + "entityKey": "routingPolicyType", + "booleanActions": 0, + "defaultValue": "none", + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "protocolsName", + "descriptionResourceKey": "empty", + "childSettings": [ + { + "columns": [ + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "lowerPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "upperPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "localPortRangesName", + "descriptionResourceKey": "localPortRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "localPortRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "lowerPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "upperPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "remotePortRangesName", + "descriptionResourceKey": "remotePortRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "remotePortRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + + ], + "entityKey": "protocols", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "trafficRuleAppName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "appId", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 16, + "category": 120, + "nameResourceKey": "trafficRuleAppTypeName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "desktopOption", + "value": "desktop", + "enabled": true + }, + { + "nameResourceKey": "universalOption", + "value": "universal", + "enabled": true + } + ], + "entityKey": "appType", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "lowerIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "upperIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "localAddressRangesName", + "descriptionResourceKey": "localAddressRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "localAddressRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "lowerIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "upperIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "remoteAddressRangesName", + "descriptionResourceKey": "remoteAddressRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "remoteAddressRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyNetworkTrafficRulesName", + "descriptionResourceKey": "vPNPolicyNetworkTrafficRulesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trafficRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "AppsAndTrafficRules", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "enableConditionalAccessName", + "descriptionResourceKey": "enableConditionalAccessDescription", + "childSettings": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "enableSingleSignOnName", + "descriptionResourceKey": "enableSingleSignOnDescription", + "childSettings": [ + { + "complexOptions": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "eDPPolicyAppsListNameName", + "descriptionResourceKey": "eDPPolicyAppsListNameDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 20, + "category": 120, + "nameResourceKey": "sCEPPolicyObjectIdentifierColumnName", + "descriptionResourceKey": "sCEPPolicyObjectIdentifierColumnDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "objectIdentifier", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 6, + "category": 120, + "nameResourceKey": "sCEPPolicyExtendedKeyUsageName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "singleSignOnEku", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 20, + "category": 120, + "nameResourceKey": "issuerHashName", + "descriptionResourceKey": "issuerHashDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "singleSignOnIssuerHash", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableSingleSignOnWithAlternateCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableConditionalAccess", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "ConditionalAccess", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyDNSSuffixesName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "dNSSuffixExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyDNSSuffixSearchListName", + "descriptionResourceKey": "vPNPolicyDNSSuffixSearchListDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsSuffixes", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSName", + "descriptionResourceKey": "dNSNameDescription1809", + "emptyValueResourceKey": "dNSNameExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "dNSServerDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "enterOnlyOneForDns", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "proxy", + "descriptionResourceKey": "vPNProxyDescription1809", + "emptyValueResourceKey": "proxyDNSExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServerUri", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNDnsAutoTriggerName", + "descriptionResourceKey": "vPNDnsAutoTriggerDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enabledOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "notConfigured", + "value": false, + "enabled": true + } + ], + "entityKey": "autoTrigger", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNDnsPersistentName", + "descriptionResourceKey": "vPNDnsPersistentDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enabledOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "notConfigured", + "value": false, + "enabled": true + } + ], + "entityKey": "persistent", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyNameResolutionPolicyTableRulesName", + "descriptionResourceKey": "vPNPolicyNameResolutionPolicyTableRulesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "vPNPolicyNameResolutionPolicyTableRulesName", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSName", + "descriptionResourceKey": "dNSNameDescription1809", + "emptyValueResourceKey": "dNSNameExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "enterOnlyOneForDns", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "dNSServerDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "proxy", + "descriptionResourceKey": "vPNProxyDescription1809", + "emptyValueResourceKey": "proxyDNSExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServerUri", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyNameResolutionPolicyTableRulesName", + "descriptionResourceKey": "vPNPolicyNameResolutionPolicyTableRulesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": false + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSName", + "descriptionResourceKey": "dNSNameDescription", + "emptyValueResourceKey": "dNSNameExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "enterOnlyOneForDns", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "dNSServerDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "proxy", + "emptyValueResourceKey": "proxyDNSExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServerUri", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyDNSNamesAndServersName", + "descriptionResourceKey": "vPNPolicyDNSNamesAndServersName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": false + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "DNSSettings", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "vPNPolicyUseProxyServerName", + "descriptionResourceKey": "vPNPolicyUseProxyServerDescription", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyAutomaticConfigurationScriptName", + "descriptionResourceKey": "vPNPolicyAutomaticConfigurationScriptDescription", + "emptyValueResourceKey": "vPNScriptExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "automaticConfigurationScriptUrl", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyAddressName", + "descriptionResourceKey": "vPNPolicyAddressDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "address", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 14, + "category": 120, + "nameResourceKey": "vPNPolicyPortNumberName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "port", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 16, + "category": 120, + "nameResourceKey": "vPNPolicyBypassProxySettingsForLocalAddressesName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "enabled": true + }, + { + "nameResourceKey": "enableOption", + "value": "true", + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": "false", + "enabled": true + } + ], + "entityKey": "bypassProxyServerForLocalAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 6, + "category": 120, + "nameResourceKey": "vPNPolicyUseProxyServerName", + "descriptionResourceKey": "vPNPolicyUseProxyServerDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServer", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "Proxy", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicySendAllNetworkTrafficThroughVPNName", + "descriptionResourceKey": "vPNPolicySendAllNetworkTrafficThroughVPNDescription", + "childSettings": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyDestinationPrefixName", + "descriptionResourceKey": "vPNPolicyDestinationPrefixName", + "emptyValueResourceKey": "proxyAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "destinationPrefix", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "vPNPolicyPrefixSizeName", + "descriptionResourceKey": "vPNPolicyPrefixSizeName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "prefixSize", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyRoutesForThisConnectionName", + "descriptionResourceKey": "vPNPolicyRoutesForThisConnectionDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "routes", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableSplitTunneling", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "VPNPolicySendAllNetworkTrafficThroughVPNName", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyTrustedNetworkDomainColumnName", + "descriptionResourceKey": "", + "emptyValueResourceKey": "VPNPolicyTrustedNetworkDomainExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trustedNetworkDomains", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyTrustedNetworkDomainName", + "descriptionResourceKey": "vPNPolicyTrustedNetworkDomainDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trustedNetworkDomains", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "VPNPolicyTrustedNetworkDetectionEnabledName", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + }, + { + "nameResourceKey": "lTPOptionNativeType", + "value": "l2tp", + "children": [ + { + "complexOptions": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyConnectionName", + "descriptionResourceKey": "vPNPolicyConnectionDescription", + "emptyValueResourceKey": "vPNConnectionExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "connectionName", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyServerDescriptionName", + "descriptionResourceKey": "vPNPolicyServerDescriptionDescription", + "emptyValueResourceKey": "vPNServerExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "description", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyServerIPAddressOrFQDNName", + "descriptionResourceKey": "vPNPolicyServerIPAddressOrFQDNDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "address", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyDefaultServerName", + "descriptionResourceKey": "vPNPolicyDefaultServerDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "trueOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "falseOption", + "value": false, + "enabled": true + } + ], + "entityKey": "isDefaultServer", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyServersName", + "descriptionResourceKey": "vPNPolicyServersDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyDNSRegistrationName", + "descriptionResourceKey": "vPNPolicyDNSRegistrationDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableDnsRegistration", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + }, + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyEnableAlwaysOnName", + "descriptionResourceKey": "vPNPolicyEnableAlwaysOnDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableAlwaysOn", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + }, + { + "dataType": 0, + "category": 120, + "nameResourceKey": "vPNPolicyRememberCredentialsName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "rememberUserCredentials", + "booleanActions": 2, + "policyType": 89, + "enabled": true + }, + { + "dataType": 16, + "category": 120, + "nameResourceKey": "authenticationMethodName", + "descriptionResourceKey": "vPNAuthMethodDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "selectAnAuthenticationMethod", + "enabled": true + }, + { + "nameResourceKey": "certificatesOption", + "value": "customEapXml", + "children": [ + { + "complexOptions": [ + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "clientCertForEapXmlClientAuthenticationDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "authenticationCertificate", + "descriptionResourceKey": "clientCertForEapXmlClientAuthenticationDescription", + "emptyValueResourceKey": "selectCertificate", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + }, + { + "nameResourceKey": "derivedCredentialsOption", + "value": "derivedCredential", + "enabled": true + } + ], + "entityKey": "authenticationMethod", + "booleanActions": 0, + "policyType": 89, + "enabled": false + }, + { + "value": "customEapXml", + "dataType": 9, + "category": 120, + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "authenticationMethod", + "booleanActions": 0, + "policyType": 89, + "enabled": false + }, + { + "complexOptions": [ + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "clientCertForEapXmlClientAuthenticationDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "authenticationCertificate", + "descriptionResourceKey": "clientCertForEapXmlClientAuthenticationDescription", + "emptyValueResourceKey": "selectCertificate", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": false + }, + { + "dataType": 12, + "category": 120, + "nameResourceKey": "eAPXmlName", + "descriptionResourceKey": "vPNEAPXMLDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "eapXml", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "vpn", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 16, + "category": 120, + "nameResourceKey": "vPNWipOrAppsName", + "descriptionResourceKey": "vPNWipOrAppsDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "value": 0, + "enabled": true + }, + { + "nameResourceKey": "wipOption", + "value": 1, + "children": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "wipName", + "descriptionResourceKey": "wipDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "windowsInformationProtectionDomain", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + }, + { + "nameResourceKey": "associateAppsOption", + "value": 2, + "children": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyOnlyTheseAppsCanUseVPNName", + "descriptionResourceKey": "vPNPolicyOnlyTheseAppsCanUseVPNDescription", + "childSettings": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "appIdentifierName", + "descriptionResourceKey": "appIdentifierDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identifier", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 16, + "category": 120, + "nameResourceKey": "eDPPolicyNetworkLocationsListTypeName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "enabled": true + }, + { + "nameResourceKey": "desktopOption", + "value": "desktop", + "enabled": true + }, + { + "nameResourceKey": "universalOption", + "value": "universal", + "enabled": true + } + ], + "entityKey": "appType", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyAssociatedAppsName", + "descriptionResourceKey": "vPNPolicyAssociatedAppsDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "associatedApps", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "onlyAssociatedAppsCanUseConnection", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + } + ], + "entityKey": "syntheticWipOrApps", + "booleanActions": 0, + "defaultValue": 0, + "unconfiguredValue": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "ruleName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 16, + "category": 120, + "nameResourceKey": "trafficRuleRoutingPolicyTypeName", + "descriptionResourceKey": "trafficRuleRoutingPolicyTypeDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "noneOption", + "value": "none", + "enabled": true + }, + { + "nameResourceKey": "splitTunnelOption", + "value": "splitTunnel", + "enabled": true + }, + { + "nameResourceKey": "forceTunnelOption", + "value": "forceTunnel", + "enabled": true + } + ], + "entityKey": "routingPolicyType", + "booleanActions": 0, + "defaultValue": "none", + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "protocolsName", + "descriptionResourceKey": "empty", + "childSettings": [ + { + "columns": [ + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "lowerPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "upperPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "localPortRangesName", + "descriptionResourceKey": "localPortRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "localPortRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "lowerPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "upperPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "remotePortRangesName", + "descriptionResourceKey": "remotePortRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "remotePortRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + + ], + "entityKey": "protocols", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "trafficRuleAppName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "appId", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 16, + "category": 120, + "nameResourceKey": "trafficRuleAppTypeName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "desktopOption", + "value": "desktop", + "enabled": true + }, + { + "nameResourceKey": "universalOption", + "value": "universal", + "enabled": true + } + ], + "entityKey": "appType", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "lowerIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "upperIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "localAddressRangesName", + "descriptionResourceKey": "localAddressRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "localAddressRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "lowerIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "upperIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "remoteAddressRangesName", + "descriptionResourceKey": "remoteAddressRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "remoteAddressRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyNetworkTrafficRulesName", + "descriptionResourceKey": "vPNPolicyNetworkTrafficRulesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trafficRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "AppsAndTrafficRules", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "enableConditionalAccessName", + "descriptionResourceKey": "enableConditionalAccessDescription", + "childSettings": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "enableSingleSignOnName", + "descriptionResourceKey": "enableSingleSignOnDescription", + "childSettings": [ + { + "complexOptions": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "eDPPolicyAppsListNameName", + "descriptionResourceKey": "eDPPolicyAppsListNameDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 20, + "category": 120, + "nameResourceKey": "sCEPPolicyObjectIdentifierColumnName", + "descriptionResourceKey": "sCEPPolicyObjectIdentifierColumnDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "objectIdentifier", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 6, + "category": 120, + "nameResourceKey": "sCEPPolicyExtendedKeyUsageName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "singleSignOnEku", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 20, + "category": 120, + "nameResourceKey": "issuerHashName", + "descriptionResourceKey": "issuerHashDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "singleSignOnIssuerHash", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableSingleSignOnWithAlternateCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableConditionalAccess", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "ConditionalAccess", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyDNSSuffixesName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "dNSSuffixExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyDNSSuffixSearchListName", + "descriptionResourceKey": "vPNPolicyDNSSuffixSearchListDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsSuffixes", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSName", + "descriptionResourceKey": "dNSNameDescription1809", + "emptyValueResourceKey": "dNSNameExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "dNSServerDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "enterOnlyOneForDns", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "proxy", + "descriptionResourceKey": "vPNProxyDescription1809", + "emptyValueResourceKey": "proxyDNSExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServerUri", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNDnsAutoTriggerName", + "descriptionResourceKey": "vPNDnsAutoTriggerDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enabledOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "notConfigured", + "value": false, + "enabled": true + } + ], + "entityKey": "autoTrigger", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNDnsPersistentName", + "descriptionResourceKey": "vPNDnsPersistentDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enabledOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "notConfigured", + "value": false, + "enabled": true + } + ], + "entityKey": "persistent", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyNameResolutionPolicyTableRulesName", + "descriptionResourceKey": "vPNPolicyNameResolutionPolicyTableRulesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "vPNPolicyNameResolutionPolicyTableRulesName", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSName", + "descriptionResourceKey": "dNSNameDescription1809", + "emptyValueResourceKey": "dNSNameExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "enterOnlyOneForDns", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "dNSServerDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "proxy", + "descriptionResourceKey": "vPNProxyDescription1809", + "emptyValueResourceKey": "proxyDNSExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServerUri", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyNameResolutionPolicyTableRulesName", + "descriptionResourceKey": "vPNPolicyNameResolutionPolicyTableRulesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": false + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSName", + "descriptionResourceKey": "dNSNameDescription", + "emptyValueResourceKey": "dNSNameExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "enterOnlyOneForDns", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "dNSServerDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "proxy", + "emptyValueResourceKey": "proxyDNSExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServerUri", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyDNSNamesAndServersName", + "descriptionResourceKey": "vPNPolicyDNSNamesAndServersName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": false + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "DNSSettings", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "vPNPolicyUseProxyServerName", + "descriptionResourceKey": "vPNPolicyUseProxyServerDescription", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyAutomaticConfigurationScriptName", + "descriptionResourceKey": "vPNPolicyAutomaticConfigurationScriptDescription", + "emptyValueResourceKey": "vPNScriptExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "automaticConfigurationScriptUrl", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyAddressName", + "descriptionResourceKey": "vPNPolicyAddressDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "address", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 14, + "category": 120, + "nameResourceKey": "vPNPolicyPortNumberName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "port", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 16, + "category": 120, + "nameResourceKey": "vPNPolicyBypassProxySettingsForLocalAddressesName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "enabled": true + }, + { + "nameResourceKey": "enableOption", + "value": "true", + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": "false", + "enabled": true + } + ], + "entityKey": "bypassProxyServerForLocalAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 6, + "category": 120, + "nameResourceKey": "vPNPolicyUseProxyServerName", + "descriptionResourceKey": "vPNPolicyUseProxyServerDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServer", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "Proxy", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicySendAllNetworkTrafficThroughVPNName", + "descriptionResourceKey": "vPNPolicySendAllNetworkTrafficThroughVPNDescription", + "childSettings": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyDestinationPrefixName", + "descriptionResourceKey": "vPNPolicyDestinationPrefixName", + "emptyValueResourceKey": "proxyAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "destinationPrefix", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "vPNPolicyPrefixSizeName", + "descriptionResourceKey": "vPNPolicyPrefixSizeName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "prefixSize", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyRoutesForThisConnectionName", + "descriptionResourceKey": "vPNPolicyRoutesForThisConnectionDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "routes", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableSplitTunneling", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "VPNPolicySendAllNetworkTrafficThroughVPNName", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyTrustedNetworkDomainColumnName", + "descriptionResourceKey": "", + "emptyValueResourceKey": "VPNPolicyTrustedNetworkDomainExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trustedNetworkDomains", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyTrustedNetworkDomainName", + "descriptionResourceKey": "vPNPolicyTrustedNetworkDomainDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trustedNetworkDomains", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "VPNPolicyTrustedNetworkDetectionEnabledName", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + }, + { + "nameResourceKey": "pPTPOptionNativeType", + "value": "pptp", + "children": [ + { + "complexOptions": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyConnectionName", + "descriptionResourceKey": "vPNPolicyConnectionDescription", + "emptyValueResourceKey": "vPNConnectionExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "connectionName", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyServerDescriptionName", + "descriptionResourceKey": "vPNPolicyServerDescriptionDescription", + "emptyValueResourceKey": "vPNServerExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "description", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyServerIPAddressOrFQDNName", + "descriptionResourceKey": "vPNPolicyServerIPAddressOrFQDNDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "address", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyDefaultServerName", + "descriptionResourceKey": "vPNPolicyDefaultServerDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "trueOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "falseOption", + "value": false, + "enabled": true + } + ], + "entityKey": "isDefaultServer", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyServersName", + "descriptionResourceKey": "vPNPolicyServersDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyDNSRegistrationName", + "descriptionResourceKey": "vPNPolicyDNSRegistrationDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableDnsRegistration", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + }, + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyEnableAlwaysOnName", + "descriptionResourceKey": "vPNPolicyEnableAlwaysOnDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableAlwaysOn", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + }, + { + "dataType": 0, + "category": 120, + "nameResourceKey": "vPNPolicyRememberCredentialsName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "rememberUserCredentials", + "booleanActions": 2, + "policyType": 89, + "enabled": true + }, + { + "dataType": 16, + "category": 120, + "nameResourceKey": "authenticationMethodName", + "descriptionResourceKey": "vPNAuthMethodDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "selectAnAuthenticationMethod", + "enabled": true + }, + { + "nameResourceKey": "certificatesOption", + "value": "customEapXml", + "children": [ + { + "complexOptions": [ + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "clientCertForEapXmlClientAuthenticationDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "authenticationCertificate", + "descriptionResourceKey": "clientCertForEapXmlClientAuthenticationDescription", + "emptyValueResourceKey": "selectCertificate", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + }, + { + "nameResourceKey": "derivedCredentialsOption", + "value": "derivedCredential", + "enabled": true + } + ], + "entityKey": "authenticationMethod", + "booleanActions": 0, + "policyType": 89, + "enabled": false + }, + { + "value": "customEapXml", + "dataType": 9, + "category": 120, + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "authenticationMethod", + "booleanActions": 0, + "policyType": 89, + "enabled": false + }, + { + "complexOptions": [ + { + "dataType": 4, + "category": 120, + "nameResourceKey": "vPNPolicySelectAClientCertificateName", + "descriptionResourceKey": "clientCertForEapXmlClientAuthenticationDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identityCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "authenticationCertificate", + "descriptionResourceKey": "clientCertForEapXmlClientAuthenticationDescription", + "emptyValueResourceKey": "selectCertificate", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": false + }, + { + "dataType": 12, + "category": 120, + "nameResourceKey": "eAPXmlName", + "descriptionResourceKey": "vPNEAPXMLDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "eapXml", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "vpn", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 16, + "category": 120, + "nameResourceKey": "vPNWipOrAppsName", + "descriptionResourceKey": "vPNWipOrAppsDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "value": 0, + "enabled": true + }, + { + "nameResourceKey": "wipOption", + "value": 1, + "children": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "wipName", + "descriptionResourceKey": "wipDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "windowsInformationProtectionDomain", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + }, + { + "nameResourceKey": "associateAppsOption", + "value": 2, + "children": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicyOnlyTheseAppsCanUseVPNName", + "descriptionResourceKey": "vPNPolicyOnlyTheseAppsCanUseVPNDescription", + "childSettings": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "appIdentifierName", + "descriptionResourceKey": "appIdentifierDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "identifier", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 16, + "category": 120, + "nameResourceKey": "eDPPolicyNetworkLocationsListTypeName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "enabled": true + }, + { + "nameResourceKey": "desktopOption", + "value": "desktop", + "enabled": true + }, + { + "nameResourceKey": "universalOption", + "value": "universal", + "enabled": true + } + ], + "entityKey": "appType", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyAssociatedAppsName", + "descriptionResourceKey": "vPNPolicyAssociatedAppsDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "associatedApps", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "onlyAssociatedAppsCanUseConnection", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + } + ], + "entityKey": "syntheticWipOrApps", + "booleanActions": 0, + "defaultValue": 0, + "unconfiguredValue": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "ruleName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 16, + "category": 120, + "nameResourceKey": "trafficRuleRoutingPolicyTypeName", + "descriptionResourceKey": "trafficRuleRoutingPolicyTypeDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "noneOption", + "value": "none", + "enabled": true + }, + { + "nameResourceKey": "splitTunnelOption", + "value": "splitTunnel", + "enabled": true + }, + { + "nameResourceKey": "forceTunnelOption", + "value": "forceTunnel", + "enabled": true + } + ], + "entityKey": "routingPolicyType", + "booleanActions": 0, + "defaultValue": "none", + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "protocolsName", + "descriptionResourceKey": "empty", + "childSettings": [ + { + "columns": [ + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "lowerPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "upperPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "localPortRangesName", + "descriptionResourceKey": "localPortRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "localPortRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "lowerPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "upperPortName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperNumber", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "remotePortRangesName", + "descriptionResourceKey": "remotePortRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "remotePortRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + + ], + "entityKey": "protocols", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "trafficRuleAppName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "appId", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 16, + "category": 120, + "nameResourceKey": "trafficRuleAppTypeName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "desktopOption", + "value": "desktop", + "enabled": true + }, + { + "nameResourceKey": "universalOption", + "value": "universal", + "enabled": true + } + ], + "entityKey": "appType", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "lowerIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "upperIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "localAddressRangesName", + "descriptionResourceKey": "localAddressRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "localAddressRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "lowerIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "lowerAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "upperIPv4AddressName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyAddressExampleUpper", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "upperAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "remoteAddressRangesName", + "descriptionResourceKey": "remoteAddressRangesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "remoteAddressRanges", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyNetworkTrafficRulesName", + "descriptionResourceKey": "vPNPolicyNetworkTrafficRulesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trafficRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "AppsAndTrafficRules", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "enableConditionalAccessName", + "descriptionResourceKey": "enableConditionalAccessDescription", + "childSettings": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "enableSingleSignOnName", + "descriptionResourceKey": "enableSingleSignOnDescription", + "childSettings": [ + { + "complexOptions": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "eDPPolicyAppsListNameName", + "descriptionResourceKey": "eDPPolicyAppsListNameDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 20, + "category": 120, + "nameResourceKey": "sCEPPolicyObjectIdentifierColumnName", + "descriptionResourceKey": "sCEPPolicyObjectIdentifierColumnDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "objectIdentifier", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 6, + "category": 120, + "nameResourceKey": "sCEPPolicyExtendedKeyUsageName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "singleSignOnEku", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 20, + "category": 120, + "nameResourceKey": "issuerHashName", + "descriptionResourceKey": "issuerHashDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "singleSignOnIssuerHash", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableSingleSignOnWithAlternateCertificate", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableConditionalAccess", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "ConditionalAccess", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyDNSSuffixesName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "dNSSuffixExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyDNSSuffixSearchListName", + "descriptionResourceKey": "vPNPolicyDNSSuffixSearchListDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsSuffixes", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSName", + "descriptionResourceKey": "dNSNameDescription1809", + "emptyValueResourceKey": "dNSNameExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "dNSServerDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "enterOnlyOneForDns", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "proxy", + "descriptionResourceKey": "vPNProxyDescription1809", + "emptyValueResourceKey": "proxyDNSExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServerUri", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNDnsAutoTriggerName", + "descriptionResourceKey": "vPNDnsAutoTriggerDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enabledOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "notConfigured", + "value": false, + "enabled": true + } + ], + "entityKey": "autoTrigger", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNDnsPersistentName", + "descriptionResourceKey": "vPNDnsPersistentDescription", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "enabledOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "notConfigured", + "value": false, + "enabled": true + } + ], + "entityKey": "persistent", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyNameResolutionPolicyTableRulesName", + "descriptionResourceKey": "vPNPolicyNameResolutionPolicyTableRulesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": true + }, + { + "columns": [ + { + "metadata": { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "vPNPolicyNameResolutionPolicyTableRulesName", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSName", + "descriptionResourceKey": "dNSNameDescription1809", + "emptyValueResourceKey": "dNSNameExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "enterOnlyOneForDns", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "dNSServerDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "proxy", + "descriptionResourceKey": "vPNProxyDescription1809", + "emptyValueResourceKey": "proxyDNSExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServerUri", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyNameResolutionPolicyTableRulesName", + "descriptionResourceKey": "vPNPolicyNameResolutionPolicyTableRulesDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": false + }, + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSName", + "descriptionResourceKey": "dNSNameDescription", + "emptyValueResourceKey": "dNSNameExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "name", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "enterOnlyOneForDns", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "dNSServerDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "unusedForSingleItems", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "dNSServer", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "servers", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "proxy", + "emptyValueResourceKey": "proxyDNSExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServerUri", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyDNSNamesAndServersName", + "descriptionResourceKey": "vPNPolicyDNSNamesAndServersName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "dnsRules", + "booleanActions": 0, + "defaultValue": false, + "policyType": 89, + "enabled": false + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "DNSSettings", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "isSettingDescription": false, + "showAsSectionHeader": false, + "dataType": 8, + "category": 120, + "nameResourceKey": "vPNPolicyUseProxyServerName", + "descriptionResourceKey": "vPNPolicyUseProxyServerDescription", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyAutomaticConfigurationScriptName", + "descriptionResourceKey": "vPNPolicyAutomaticConfigurationScriptDescription", + "emptyValueResourceKey": "vPNScriptExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "automaticConfigurationScriptUrl", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyAddressName", + "descriptionResourceKey": "vPNPolicyAddressDescription", + "emptyValueResourceKey": "vPNAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "address", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 14, + "category": 120, + "nameResourceKey": "vPNPolicyPortNumberName", + "descriptionResourceKey": "empty", + "emptyValueResourceKey": "proxyPortExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "port", + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "dataType": 16, + "category": 120, + "nameResourceKey": "vPNPolicyBypassProxySettingsForLocalAddressesName", + "descriptionResourceKey": "empty", + "childSettings": [ + + ], + "options": [ + { + "nameResourceKey": "notConfigured", + "enabled": true + }, + { + "nameResourceKey": "enableOption", + "value": "true", + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": "false", + "enabled": true + } + ], + "entityKey": "bypassProxyServerForLocalAddress", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 6, + "category": 120, + "nameResourceKey": "vPNPolicyUseProxyServerName", + "descriptionResourceKey": "vPNPolicyUseProxyServerDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "proxyServer", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "Proxy", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "dataType": 19, + "category": 120, + "nameResourceKey": "vPNPolicySendAllNetworkTrafficThroughVPNName", + "descriptionResourceKey": "vPNPolicySendAllNetworkTrafficThroughVPNDescription", + "childSettings": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyDestinationPrefixName", + "descriptionResourceKey": "vPNPolicyDestinationPrefixName", + "emptyValueResourceKey": "proxyAddressExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "destinationPrefix", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + }, + { + "metadata": { + "dataType": 14, + "category": 120, + "nameResourceKey": "vPNPolicyPrefixSizeName", + "descriptionResourceKey": "vPNPolicyPrefixSizeName", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "prefixSize", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyRoutesForThisConnectionName", + "descriptionResourceKey": "vPNPolicyRoutesForThisConnectionDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "routes", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "options": [ + { + "nameResourceKey": "enableOption", + "value": true, + "enabled": true + }, + { + "nameResourceKey": "disableOption", + "value": false, + "enabled": true + } + ], + "entityKey": "enableSplitTunneling", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "VPNPolicySendAllNetworkTrafficThroughVPNName", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + }, + { + "complexOptions": [ + { + "columns": [ + { + "metadata": { + "dataType": 20, + "category": 120, + "nameResourceKey": "vPNPolicyTrustedNetworkDomainColumnName", + "descriptionResourceKey": "", + "emptyValueResourceKey": "VPNPolicyTrustedNetworkDomainExample", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trustedNetworkDomains", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + } + ], + "dataType": 21, + "category": 120, + "nameResourceKey": "vPNPolicyTrustedNetworkDomainName", + "descriptionResourceKey": "vPNPolicyTrustedNetworkDomainDescription", + "childSettings": [ + + ], + "options": [ + + ], + "entityKey": "trustedNetworkDomains", + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "dataType": 5, + "category": 120, + "nameResourceKey": "VPNPolicyTrustedNetworkDetectionEnabledName", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 89, + "enabled": true + } + ], + "enabled": true + } + ], + "entityKey": "connectionType", + "booleanActions": 0, + "unconfiguredValue": "selectAConnectionType", + "policyType": 89, + "enabled": true + } + ], + "enabled": true + } + ], + "entityKey": "profileTarget", + "booleanActions": 0, + "defaultValue": "user", + "unconfiguredValue": "selectAConnectionType", + "policyType": 89, + "enabled": true + } } diff --git a/Documentation/ObjectInfo/vpn_windowsphonevpn.json b/Documentation/ObjectInfo/vpn_windowsphonevpn.json index 328c927..f36cc00 100644 --- a/Documentation/ObjectInfo/vpn_windowsphonevpn.json +++ b/Documentation/ObjectInfo/vpn_windowsphonevpn.json @@ -95,6 +95,49 @@ { "nameResourceKey": "derivedCredentialsOption", "value": "derivedCredential", + "children": [ + { + "dataType": 9, + "category": 120, + "childSettings": [ + { + "dataType": 10, + "category": 120, + "nameResourceKey": "derivedCredentialsSearchingForTenantLevel", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 105, + "enabled": true + }, + { + "dataType": 10, + "category": 120, + "nameResourceKey": "derivedCredentialsTenantLevelNotConfigured", + "childSettings": [ + + ], + "options": [ + + ], + "booleanActions": 0, + "policyType": 105, + "enabled": true + } + ], + "options": [ + + ], + "entityKey": "derivedCredentialSettings@odata.bind", + "booleanActions": 0, + "policyType": 105, + "enabled": true + } + ], "enabled": false } ], diff --git a/Documentation/ObjectInfo/wifi_androidforworkwifi.json b/Documentation/ObjectInfo/wifi_androidforworkwifi.json index d9088e4..dac76cb 100644 --- a/Documentation/ObjectInfo/wifi_androidforworkwifi.json +++ b/Documentation/ObjectInfo/wifi_androidforworkwifi.json @@ -3304,8 +3304,8 @@ ], "dataType": 21, "category": 112, - "nameResourceKey": "trustedServerCertificateNamesName", - "descriptionResourceKey": "trustedServerCertificateNamesDescription", + "nameResourceKey": "androidTrustedServerCertificateNamesName", + "descriptionResourceKey": "androidTrustedServerCertificateNamesDescription", "childSettings": [ ], @@ -3515,8 +3515,8 @@ ], "dataType": 21, "category": 112, - "nameResourceKey": "trustedServerCertificateNamesName", - "descriptionResourceKey": "trustedServerCertificateNamesDescription", + "nameResourceKey": "androidTrustedServerCertificateNamesName", + "descriptionResourceKey": "androidTrustedServerCertificateNamesDescription", "childSettings": [ ], @@ -3795,8 +3795,8 @@ ], "dataType": 21, "category": 112, - "nameResourceKey": "trustedServerCertificateNamesName", - "descriptionResourceKey": "trustedServerCertificateNamesDescription", + "nameResourceKey": "androidTrustedServerCertificateNamesName", + "descriptionResourceKey": "androidTrustedServerCertificateNamesDescription", "childSettings": [ ], @@ -4187,8 +4187,8 @@ ], "dataType": 21, "category": 112, - "nameResourceKey": "trustedServerCertificateNamesName", - "descriptionResourceKey": "trustedServerCertificateNamesDescription", + "nameResourceKey": "androidTrustedServerCertificateNamesName", + "descriptionResourceKey": "androidTrustedServerCertificateNamesDescription", "childSettings": [ ], @@ -4398,8 +4398,8 @@ ], "dataType": 21, "category": 112, - "nameResourceKey": "trustedServerCertificateNamesName", - "descriptionResourceKey": "trustedServerCertificateNamesDescription", + "nameResourceKey": "androidTrustedServerCertificateNamesName", + "descriptionResourceKey": "androidTrustedServerCertificateNamesDescription", "childSettings": [ ], @@ -4678,8 +4678,8 @@ ], "dataType": 21, "category": 112, - "nameResourceKey": "trustedServerCertificateNamesName", - "descriptionResourceKey": "trustedServerCertificateNamesDescription", + "nameResourceKey": "androidTrustedServerCertificateNamesName", + "descriptionResourceKey": "androidTrustedServerCertificateNamesDescription", "childSettings": [ ], diff --git a/Documentation/ObjectInfo/wifi_androidwifi.json b/Documentation/ObjectInfo/wifi_androidwifi.json index 1602a34..f166e5f 100644 --- a/Documentation/ObjectInfo/wifi_androidwifi.json +++ b/Documentation/ObjectInfo/wifi_androidwifi.json @@ -167,8 +167,8 @@ ], "dataType": 21, "category": 112, - "nameResourceKey": "trustedServerCertificateNamesName", - "descriptionResourceKey": "trustedServerCertificateNamesDescription", + "nameResourceKey": "androidTrustedServerCertificateNamesName", + "descriptionResourceKey": "androidTrustedServerCertificateNamesDescription", "childSettings": [ ], @@ -378,8 +378,8 @@ ], "dataType": 21, "category": 112, - "nameResourceKey": "trustedServerCertificateNamesName", - "descriptionResourceKey": "trustedServerCertificateNamesDescription", + "nameResourceKey": "androidTrustedServerCertificateNamesName", + "descriptionResourceKey": "androidTrustedServerCertificateNamesDescription", "childSettings": [ ], @@ -663,8 +663,8 @@ ], "dataType": 21, "category": 112, - "nameResourceKey": "trustedServerCertificateNamesName", - "descriptionResourceKey": "trustedServerCertificateNamesDescription", + "nameResourceKey": "androidTrustedServerCertificateNamesName", + "descriptionResourceKey": "androidTrustedServerCertificateNamesDescription", "childSettings": [ ], diff --git a/Documentation/Strings-cs.json b/Documentation/Strings-cs.json index a16a06d..928c49e 100644 Binary files a/Documentation/Strings-cs.json and b/Documentation/Strings-cs.json differ diff --git a/Documentation/Strings-de.json b/Documentation/Strings-de.json index 7490b7d..4b50ab6 100644 Binary files a/Documentation/Strings-de.json and b/Documentation/Strings-de.json differ diff --git a/Documentation/Strings-en.json b/Documentation/Strings-en.json index 38ebd18..360f961 100644 Binary files a/Documentation/Strings-en.json and b/Documentation/Strings-en.json differ diff --git a/Documentation/Strings-es.json b/Documentation/Strings-es.json index 02a874d..2dbbfc9 100644 Binary files a/Documentation/Strings-es.json and b/Documentation/Strings-es.json differ diff --git a/Documentation/Strings-fr.json b/Documentation/Strings-fr.json index d5738c7..cc876fa 100644 Binary files a/Documentation/Strings-fr.json and b/Documentation/Strings-fr.json differ diff --git a/Documentation/Strings-hu.json b/Documentation/Strings-hu.json index b3c52ee..ba219ee 100644 Binary files a/Documentation/Strings-hu.json and b/Documentation/Strings-hu.json differ diff --git a/Documentation/Strings-it.json b/Documentation/Strings-it.json index d8b3279..4d909a3 100644 Binary files a/Documentation/Strings-it.json and b/Documentation/Strings-it.json differ diff --git a/Documentation/Strings-ja.json b/Documentation/Strings-ja.json index de69305..71c3927 100644 Binary files a/Documentation/Strings-ja.json and b/Documentation/Strings-ja.json differ diff --git a/Documentation/Strings-ko.json b/Documentation/Strings-ko.json index 5660692..8c49c99 100644 Binary files a/Documentation/Strings-ko.json and b/Documentation/Strings-ko.json differ diff --git a/Documentation/Strings-nl.json b/Documentation/Strings-nl.json index db1064f..e8b5293 100644 Binary files a/Documentation/Strings-nl.json and b/Documentation/Strings-nl.json differ diff --git a/Documentation/Strings-pl.json b/Documentation/Strings-pl.json index af8a8b7..abb980a 100644 Binary files a/Documentation/Strings-pl.json and b/Documentation/Strings-pl.json differ diff --git a/Documentation/Strings-pt.json b/Documentation/Strings-pt.json index 2f11810..360f961 100644 Binary files a/Documentation/Strings-pt.json and b/Documentation/Strings-pt.json differ diff --git a/Documentation/Strings-ru.json b/Documentation/Strings-ru.json index 3a6b5f5..a9db613 100644 Binary files a/Documentation/Strings-ru.json and b/Documentation/Strings-ru.json differ diff --git a/Documentation/Strings-sv.json b/Documentation/Strings-sv.json index 5904ee5..82e34ce 100644 Binary files a/Documentation/Strings-sv.json and b/Documentation/Strings-sv.json differ diff --git a/Documentation/Strings-tr.json b/Documentation/Strings-tr.json index 9eb88c3..17d25d1 100644 Binary files a/Documentation/Strings-tr.json and b/Documentation/Strings-tr.json differ diff --git a/Documentation/Strings-zh-chs.json b/Documentation/Strings-zh-chs.json index 2f11810..360f961 100644 Binary files a/Documentation/Strings-zh-chs.json and b/Documentation/Strings-zh-chs.json differ diff --git a/Documentation/Strings-zh-cht.json b/Documentation/Strings-zh-cht.json index 2f11810..360f961 100644 Binary files a/Documentation/Strings-zh-cht.json and b/Documentation/Strings-zh-cht.json differ diff --git a/Documentation/Strings-zh-hans.json b/Documentation/Strings-zh-hans.json index fc673a4..940b254 100644 Binary files a/Documentation/Strings-zh-hans.json and b/Documentation/Strings-zh-hans.json differ diff --git a/Documentation/Strings-zh-hant.json b/Documentation/Strings-zh-hant.json index 6245d20..d5eb26e 100644 Binary files a/Documentation/Strings-zh-hant.json and b/Documentation/Strings-zh-hant.json differ diff --git a/Documentation/Strings-zh.json b/Documentation/Strings-zh.json index 2f11810..360f961 100644 Binary files a/Documentation/Strings-zh.json and b/Documentation/Strings-zh.json differ diff --git a/Extensions/Documentation.psm1 b/Extensions/Documentation.psm1 index f1d11bd..050df7e 100644 --- a/Extensions/Documentation.psm1 +++ b/Extensions/Documentation.psm1 @@ -20,7 +20,7 @@ $global:documentationProviders = @() function Get-ModuleVersion { - '1.0.8' + '1.1.0' } function Invoke-InitializeModule @@ -628,12 +628,21 @@ function Add-ScopeTagStrings if(($obj.roleScopeTagIds | measure).Count -gt 0) { foreach($scopeTagId in $obj.roleScopeTagIds) - { - $scopeTagObj = $script:scopeTags | Where Id -eq $scopeTagId - if($scopeTagObj) + { + $scopeTagName = $scopeTagId + if($scopeTagId -eq "0") { - $objScopeTags += $scopeTagObj.displayName + $scopeTagName = (Get-LanguageString "SettingDetails.default") } + elseif($script:scopeTags) + { + $scopeTagObj = $script:scopeTags | Where Id -eq $scopeTagId + if($scopeTagObj.displayName) + { + $scopeTagName = $scopeTagObj.displayName + } + } + $objScopeTags += $scopeTagName } } if($objScopeTags.Count -gt 0) @@ -1793,7 +1802,11 @@ function Invoke-TranslateSection elseif($rawValue -eq $null -and ![String]::IsNullOrEmpty($prop.defaultValue) -and $global:chkSetDefaultValue.IsChecked) { $propValue = $prop.defaultValue - } + } + elseif($rawValue -eq $null -and ![String]::IsNullOrEmpty($prop.emptyValueResourceKey) -and $global:chkSetDefaultValue.IsChecked) + { + $propValue = Get-LanguageString $prop.emptyValueResourceKey + } else { $propValue = $rawValue @@ -1834,6 +1847,11 @@ function Invoke-TranslateSection } $rawValue = $value } + elseif($script:currentObject.'@ObjectFromFile' -eq $true) + { + $value = "##TBD - Linked Certificate" + $rawValue = $value + } } elseif($prop.dataType -eq 200) # Multi option based on boolean value { @@ -2064,6 +2082,8 @@ function Add-PropertyInfo } $script:objectSettingsData += Get-PropertyInfo $prop $value $originalValue $jsonValue + + Invoke-CustomPostAddValue $prop } function Add-PropertyInfoObject @@ -2110,6 +2130,15 @@ function Get-PropertyInfo $jsonValue = $rawValue | ConvertTo-Json -Depth 10 -Compress } + if($prop.emptyValueResourceKey) + { + $defValue = Get-LanguageString $prop.emptyValueResourceKey + } + else + { + $defValue = $prop.defaultValue + } + return New-Object PSObject -Property @{ Name=$name Description=$description @@ -2121,7 +2150,7 @@ function Get-PropertyInfo DataType=$prop.dataType RawValue=$originalValue RawJsonValue=$jsonValue - DefaultValue=$prop.defaultValue + DefaultValue=$defValue UnconfiguredValue=$prop.unconfiguredValue Enabled=$prop.Enabled EntityKey=$prop.EntityKey @@ -2156,6 +2185,23 @@ function Get-CustomProfileValue } } +function Invoke-CustomPostAddValue +{ + param($prop) + + foreach($docProvider in ($global:documentationProviders | Sort -Property Priority)) + { + if($docProvider.PostAddValue) + { + $retObj = & $docProvider.PostAddValue $script:currentObject $prop $script:propertySeparator $script:objectSeparator + if($retObj -ne $null) + { + return $retObj + } + } + } +} + function Get-CustomPropertyObject { param($obj, $prop) @@ -2852,6 +2898,8 @@ function Invoke-TranslateAssignments } } + $groupInfo = $null + if($groupIds.Count -gt 0) { $ht = @{} @@ -2861,6 +2909,12 @@ function Invoke-TranslateAssignments $groupInfo = (Invoke-GraphRequest -Url "/directoryObjects/getByIds?`$select=displayName,id" -Content $body -Method "Post").Value } + + if(($null -eq $groupInfo -or ($groupInfo | measure).Count -eq 0) -and $obj."@ObjectFromFile" -eq $true -and $script:migTable) + { + ### Get group info from mig table when documenting from file if there's no access to the environment + $groupInfo = $script:migTable.Objects | Where Type -eq "Group" + } if($filterIds.Count -gt 0) { @@ -3152,7 +3206,10 @@ function Show-DocumentationForm $objectTypes, [Switch] [Parameter(Mandatory=$false,ParameterSetName = "Objects")] - $SelectedDocuments) + $SelectedDocuments, + [Switch] + $ShowFolderSource + ) $objectList = @() @@ -3226,6 +3283,22 @@ function Show-DocumentationForm $global:btnAddToDocumentationList.Visibility = "Collapsed" } + if($ShowFolderSource -ne $true) + { + $global:grdDocumentFromFolder.Visibility = "Collapsed" + $global:spDocumentFromFolder.Visibility = "Collapsed" + } + else + { + Add-XamlEvent $script:docForm "browseDocumentFromFolder" "add_click" { + $folder = Get-Folder (Get-XamlProperty $script:docForm "txtDocumentFromFolder" "Text") "Select root folder for export files" + if($folder) + { + Set-XamlProperty $script:docForm "txtDocumentFromFolder" "Text" $folder + } + } + } + $column = Get-GridCheckboxColumn "IsSelected" $global:grdDocumentObjects.Columns.Add($column) @@ -3316,6 +3389,11 @@ function Show-DocumentationForm $txtDocumentationRawData.Text = "" + $loadExportedInfo = $true + $script:migTable = $null + $script:scopeTags = $null + + $diSource = $nul $global:intentCategories = $null $global:catRecommendedSettings = $null $global:intentCategoryDefs = $null @@ -3374,6 +3452,19 @@ function Show-DocumentationForm } elseif($global:grdDocumentObjects.Tag -eq "ObjectTypes") { + $fromExportFolder = $false + if($global:txtDocumentFromFolder.Text) + { + $diSource = [IO.DirectoryInfo]$global:txtDocumentFromFolder.Text + if($diSource.Exists -eq $false) + { + [System.Windows.MessageBox]::Show("Source folder not found:`n`n$($diSource.FullName)", "Documentation", "OK", "Error") + Write-Status "" + return + } + $fromExportFolder = $true + } + $sourceList = @() foreach($objGroup in ($global:grdDocumentObjects.ItemsSource | Where IsSelected -eq $true)) { @@ -3382,11 +3473,25 @@ function Show-DocumentationForm { Write-Status "Get $($objectType.Title) objects" - $graphObjects = @(Get-GraphObjects -property $objectType.ViewProperties -objectType $objectType) - - if($objectType.PostListCommand) + if($fromExportFolder -eq $false) { - $graphObjects = & $objectType.PostListCommand $graphObjects $objectType + $graphObjects = @(Get-GraphObjects -property $objectType.ViewProperties -objectType $objectType) + + if($objectType.PostListCommand) + { + $graphObjects = & $objectType.PostListCommand $graphObjects $objectType + } + } + else + { + $objectPath = [IO.Path]::Combine($diSource.FullName,$objectType.ID) + if([IO.Directory]::Exists($objectPath) -eq $false) + { + Write-Log "Object path for $($objectType.Title) ($($objectType.ID)) not found. Skipping object type" 2 + continue + } + $graphObjects = Get-GraphFileObjects $objectPath -ObjectType $objectType + $graphObjects | ForEach-Object { $_.Object | Add-Member Noteproperty -Name "@ObjectFromFile" -Value $true -Force } } $groupSourceList += $graphObjects } @@ -3412,6 +3517,39 @@ function Show-DocumentationForm return } + if($fromExportFolder -eq $true -and $diSource -and $loadExportedInfo -eq $true) + { + $loadExportedInfo = $false + + $migFileName = [IO.Path]::Combine($diSource.FullName,"MigrationTable.json") + if([IO.File]::Exists($migFileName) -eq $false) + { + Write-Log "MigrationTable not found. Groups will be documented with GroupId" 2 + } + else + { + Write-Log "Load Migration table from $migFileName" + $script:migTable = ConvertFrom-Json (Get-Content $migFileName -Raw) + } + + $scopeTagObjectType = $global:currentViewObject.ViewItems | Where Id -eq "ScopeTags" + + if($scopeTagObjectType) + { + $scopePath = [IO.Path]::Combine($diSource.FullName,$scopeTagObjectType.Id) + if([IO.Directory]::Exists($scopePath) -eq $false) + { + Write-Log "Object path for Scope (Tags) ($($scopePath)) not found" 2 + } + else + { + + $scopeTagObjects = Get-GraphFileObjects $scopePath -ObjectType $scopeTagObjectType + $script:scopeTags = @(($scopeTagObjects | Select Object)) + } + } + } + if($global:cbDocumentationType.SelectedItem.PreProcess) { Write-Status "Run PreProcess for $($global:cbDocumentationType.SelectedItem.Name)" @@ -3436,7 +3574,14 @@ function Show-DocumentationForm } } - $obj = Get-GraphObject $tmpObj.Object $tmpObj.ObjectType + if($tmpObj.Object."@ObjectFromFile" -eq $true) + { + $obj = $tmpObj + } + else + { + $obj = Get-GraphObject $tmpObj.Object $tmpObj.ObjectType + } if($obj) { @@ -3669,7 +3814,7 @@ function Set-OutputOptionsTabStatus function Invoke-DocumentObjectTypes { - Show-DocumentationForm -objectTypes $global:currentViewObject.ViewItems + Show-DocumentationForm -objectTypes $global:currentViewObject.ViewItems -ShowFolderSource } function Invoke-DocumentSelectedObjects diff --git a/Extensions/DocumentationCustom.psm1 b/Extensions/DocumentationCustom.psm1 index a31f29d..36cb0c2 100644 --- a/Extensions/DocumentationCustom.psm1 +++ b/Extensions/DocumentationCustom.psm1 @@ -10,7 +10,7 @@ This module will also document some objects based on PowerShell functions function Get-ModuleVersion { - '1.0.6' + '1.1.0' } function Invoke-InitializeModule @@ -23,6 +23,7 @@ function Invoke-InitializeModule GetCustomChildObject = { Get-CDDocumentCustomChildObjet @args } GetCustomPropertyObject = { Get-CDDocumentCustomPropertyObject @args } AddCustomProfileProperty = { Add-CDDocumentCustomProfileProperty @args } + PostAddValue = { Invoke-CDDocumentCustomPostAdd @args } }) } @@ -92,6 +93,13 @@ function Invoke-CDDocumentObject return [PSCustomObject]@{ Properties = @("Name","Value","Category","SubCategory") } + } + elseif($type -eq '#microsoft.graph.deviceAndAppManagementAssignmentFilter') + { + Invoke-CDDocumentAssignmentFilter $documentationObj + return [PSCustomObject]@{ + Properties = @("Name","Value") + } } } @@ -169,6 +177,73 @@ Property separator character Object separator character #> +function Invoke-CDDocumentCustomPostAdd +{ + param($obj, $prop, $propSeparator, $objSeparator) + + if($obj.'@OData.Type' -eq "#microsoft.graph.windowsUpdateForBusinessConfiguration") + { + if($prop.EntityKey -eq "featureUpdatesDeferralPeriodInDays") + { + # Inject Windows 11 update setting. Not included in the file + $tmpProp = [PSCustomObject]@{ + nameResourceKey = "allowWindows11UpgradeName" + descriptionResourceKey = "allowWindows11UpgradeDescription" + entityKey = "allowWindows11Upgrade" + dataType = 0 + booleanActions = 109 + category = $prop.Category + } + $propValue = Invoke-TranslateBoolean $obj $tmpProp + + $script:UpdateCategory = $prop.Category + + Add-PropertyInfo $tmpProp $propValue -originalValue $obj.allowWindows11Upgrade + } + + if($prop.EntityKey -eq "featureUpdatesRollbackWindowInDays") + { + if($obj.businessReadyUpdatesOnly -eq "businessReadyOnly") + { + $propValue = Get-LanguageString "BooleanActions.notConfigured" + } + else + { + $propValue = Get-LanguageString "BooleanActions.enable" + } + + # Inject Pre-release setting. Not included in the file + $tmpProp = [PSCustomObject]@{ + nameResourceKey = "preReleaseBuilds" + descriptionResourceKey = "preReleaseBuildsDescription" + entityKey = "preReleaseEnabled" # Not a class property! + dataType = 0 + booleanActions = 2 + category = $prop.Category + } + + Add-PropertyInfo $tmpProp $propValue -originalValue $obj.businessReadyUpdatesOnly + + if($obj.businessReadyUpdatesOnly -ne "businessReadyOnly") + { + # Pre-release channel selected. Inject info + $propValue = Get-LanguageString "SettingDetails.$($obj.businessReadyUpdatesOnly)Option" + + $tmpProp = [PSCustomObject]@{ + nameResourceKey = "preReleaseChannel" + descriptionResourceKey = "preReleaseBuildsDescription" + entityKey = "businessReadyUpdatesOnly" + dataType = 0 + booleanActions = 2 + category = $prop.Category + } + + Add-PropertyInfo $tmpProp $propValue -originalValue $obj.businessReadyUpdatesOnly + } + } + } +} + function Add-CDDocumentCustomProfileValue { param($obj, $prop, $topObj, $propSeparator, $objSeparator) @@ -318,7 +393,19 @@ function Add-CDDocumentCustomProfileValue $propValue = [System.Text.Encoding]::UTF8.GetString([System.Convert]::FromBase64String($obj.eapXml)) Add-PropertyInfo $prop $propValue -originalValue $propValue return $false - } + } + } + elseif($obj.'@OData.Type' -eq "#microsoft.graph.windowsUpdateForBusinessConfiguration") + { + if($prop.EntityKey -eq "businessReadyUpdatesOnly" -or + $prop.EntityKey -eq "autoRestartNotificationDismissal" -or + $prop.EntityKey -eq "scheduleRestartWarningInHours" -or + $prop.EntityKey -eq "scheduleImminentRestartWarningInMinutes" -or + $prop.EntityKey -eq "deliveryOptimizationMode") + { + # Not used anymore + return $false + } } } @@ -695,6 +782,11 @@ function Add-CDDocumentCustomProfileProperty } $obj | Add-Member Noteproperty -Name "syntheticWipOrApps" -Value $syntheticWipOrApps -Force + if($null -eq $obj.profileTarget) + { + $obj.profileTarget = "user" + } + $retValue = $true } elseif($obj.'@OData.Type' -like "#microsoft.graph.iosDeviceFeaturesConfiguration") @@ -872,6 +964,29 @@ function Add-CDDocumentCustomProfileProperty $obj | Add-Member Noteproperty -Name "featureUpdateDisplayName" -Value $verInfoTxt + if($obj.rolloutSettings.offerStartDateTimeInUTC -and + $obj.rolloutSettings.offerEndDateTimeInUTC) + { + $featureUpdateRolloutOption = "gradualRollout" + $obj | Add-Member Noteproperty -Name "featureUpdateRolloutStartDate" -Value ((Get-Date $obj.rolloutSettings.offerStartDateTimeInUTC).ToLongDateString()) + $obj | Add-Member Noteproperty -Name "featureUpdateRolloutEndDate" -Value ((Get-Date $obj.rolloutSettings.offerEndDateTimeInUTC).ToLongDateString()) + if($null -ne $obj.rolloutSettings.offerIntervalInDays) + { + $obj | Add-Member Noteproperty -Name "featureUpdateRolloutInterval" -Value ($obj.rolloutSettings.offerIntervalInDays) + } + } + elseif($obj.rolloutSettings.offerStartDateTimeInUTC) + { + $featureUpdateRolloutOption = "startDateOnly" + $obj | Add-Member Noteproperty -Name "featureUpdateRolloutStartDate" -Value ((Get-Date $obj.rolloutSettings.offerStartDateTimeInUTC).ToLongDateString()) + } + else + { + $featureUpdateRolloutOption = "immediateStart" + } + + $obj | Add-Member Noteproperty -Name "featureUpdateRolloutOption" -Value $featureUpdateRolloutOption + $retValue = $true } elseif($obj.'@OData.Type' -eq "#microsoft.graph.iosUpdateConfiguration") @@ -2500,4 +2615,44 @@ function Invoke-CDDocumentNotification }) } } +#endregion + +#region +function Invoke-CDDocumentAssignmentFilter +{ + param($documentationObj) + + $obj = $documentationObj.Object + $objectType = $documentationObj.ObjectType + + $script:objectSeparator = ?? $global:cbDocumentationObjectSeparator.SelectedValue ([System.Environment]::NewLine) + $script:propertySeparator = ?? $global:cbDocumentationPropertySeparator.SelectedValue "," + + ################################################### + # Basic info + ################################################### + + Add-BasicDefaultValues $obj $objectType + + # "Filters" is not in the translation file + Add-BasicPropertyValue (Get-LanguageString "TableHeaders.configurationType") "Filters" + Add-BasicPropertyValue (Get-LanguageString "Inputs.platformLabel") (Get-LanguageString "Platform.$($obj.platform)") + + ################################################### + # Settings + ################################################### + + $label = Get-LanguageString "ApplicabilityRules.GridLabel.rule" + + # "Rules" is not in the translation file + $category = "Rules" + + Add-CustomSettingObject ([PSCustomObject]@{ + Name = $label + Value = $obj.rule + EntityKey = "rule" + Category = $category + SubCategory = $null + }) +} #endregion \ No newline at end of file diff --git a/Extensions/DocumentationWord.psm1 b/Extensions/DocumentationWord.psm1 index ab520aa..bea7288 100644 --- a/Extensions/DocumentationWord.psm1 +++ b/Extensions/DocumentationWord.psm1 @@ -3,7 +3,7 @@ #https://docs.microsoft.com/en-us/office/vba/api/overview/word function Get-ModuleVersion { - '1.0.7' + '1.1.0' } function Invoke-InitializeModule @@ -70,6 +70,14 @@ function Add-WordOptionsControl $global:spWordCustomProperties.Visibility = (?: ($global:cbWordDocumentationProperties.SelectedValue -ne "custom") "Collapsed" "Visible") $global:txtWordCustomProperties.Visibility = (?: ($global:cbWordDocumentationProperties.SelectedValue -ne "custom") "Collapsed" "Visible") + $global:cbWordDocumentationLevel.ItemsSource = ("[ { Name: `"Full`",Value: `"full`" }, { Name: `"Limited`",Value: `"limited`" }, { Name: `"Basic`",Value: `"basic`" }]" | ConvertFrom-Json) + $global:cbWordDocumentationLevel.SelectedValue = (Get-Setting "Documentation" "WordDocumentationLevel" "full") + + $global:gdWordDocumentationLimitOptions.Visibility = (?: ($global:cbWordDocumentationLevel.SelectedValue -ne "limited") "Collapsed" "Visible") + $global:txtWordDocumentationLimitMaxLength.Text = Get-Setting "Documentation" "WordDocumentationLimitMaxLength" "" + $global:txtWordDocumentationLimitTruncateLength.Text = Get-Setting "Documentation" "WordDocumentationLimitTruncateLength" "" + $global:chkWordDocumentationLimitAttatch.IsChecked = ((Get-Setting "Documentation" "WordDocumentationLimitAttatch" "true") -ne "false") + $global:txtWordDocumentTemplate.Text = Get-Setting "Documentation" "WordDocumentTemplate" "" $global:txtWordDocumentName.Text = (Get-Setting "Documentation" "WordDocumentName" "%MyDocuments%\%Organization%-%Date%.docx") @@ -88,6 +96,8 @@ function Add-WordOptionsControl $global:chkWordIncludeScripts.IsChecked = ((Get-Setting "Documentation" "WordIncludeScripts" "true") -ne "false") $global:chkWordExcludeScriptSignature.IsChecked = ((Get-Setting "Documentation" "WordExcludeScriptSignature" "false") -ne "false") + $global:chkWordAttatchJsonFile.IsChecked = ((Get-Setting "Documentation" "WordAttatchJsonFile" "false") -ne "false") + $global:txtWordScriptTableStyle.Text = Get-Setting "Documentation" "WordScriptTableStyle" "" $global:txtWordScriptStyle.Text = Get-Setting "Documentation" "WordScriptStyle" @@ -109,6 +119,10 @@ function Add-WordOptionsControl $global:txtWordCustomProperties.Visibility = (?: ($this.SelectedValue -ne "custom") "Collapsed" "Visible") } + Add-XamlEvent $script:wordForm "cbWordDocumentationLevel" "add_selectionChanged" { + $global:gdWordDocumentationLimitOptions.Visibility = (?: ($this.SelectedValue -ne "limited") "Collapsed" "Visible") + } + $script:wordForm } function Invoke-WordActivate @@ -123,6 +137,11 @@ function Invoke-WordPreProcessItems Save-Setting "Documentation" "WordDocumentTemplate" $global:txtWordDocumentTemplate.Text Save-Setting "Documentation" "WordDocumentName" $global:txtWordDocumentName.Text + Save-Setting "Documentation" "WordDocumentationLevel" $global:cbWordDocumentationLevel.SelectedValue + Save-Setting "Documentation" "WordDocumentationLimitMaxLength" $global:txtWordDocumentationLimitMaxLength.Text + Save-Setting "Documentation" "WordDocumentationLimitTruncateLength" $global:txtWordDocumentationLimitTruncateLength.Text + Save-Setting "Documentation" "WordDocumentationLimitAttatch" $global:chkWordDocumentationLimitAttatch.IsChecked + Save-Setting "Documentation" "WordAddCategories" $global:chkWordAddCategories.IsChecked Save-Setting "Documentation" "WordAddSubCategories" $global:chkWordAddSubCategories.IsChecked Save-Setting "Documentation" "WordOpenDocument" $global:chkWordOpenDocument.IsChecked @@ -139,9 +158,58 @@ function Invoke-WordPreProcessItems Save-Setting "Documentation" "WordIncludeScripts" $global:chkWordIncludeScripts.IsChecked Save-Setting "Documentation" "WordExcludeScriptSignature" $global:chkWordExcludeScriptSignature.IsChecked + Save-Setting "Documentation" "WordAttatchJsonFile" $global:chkWordAttatchJsonFile.IsChecked + Save-Setting "Documentation" "WordScriptTableStyle" $global:txtWordScriptTableStyle.Text Save-Setting "Documentation" "WordScriptStyle" $global:txtWordScriptStyle.Text + $script:limitMaxValue = 100 + $script:truncateValueLength = $script:limitMaxValue + + if($global:cbWordDocumentationLevel.SelectedValue -eq "limited") + { + if($global:txtWordDocumentationLimitMaxLength.Text) + { + try + { + $script:limitMaxValue = [int]::Parse($global:txtWordDocumentationLimitMaxLength.Text) + } + catch + { + Write-LogError "Failed to parse $($global:txtWordDocumentationLimitMaxLength.Text) to int. Max value length will be set to 100." $_.Exception + } + } + + if($global:txtWordDocumentationLimitTruncateLength.Text) + { + try + { + $script:truncateValueLength = [int]::Parse($global:txtWordDocumentationLimitTruncateLength.Text) + } + catch + { + Write-LogError "Failed to parse $($global:txtWordDocumentationLimitTruncateLength.Text) to int. Truncat length will be set to $script:limitMaxValue." $_.Exception + } + } + + if($script:limitMaxValue -lt 20) + { + Write-Log "Max value length must be 20 or more. Changed to 20" 2 + $script:limitMaxValue = 0 + } + + if($script:truncateValueLength -lt 0) + { + Write-Log "Truncate length must be 0 or more. Changed to 0" 2 + $script:truncateValueLength = 0 + } + elseif($script:truncateValueLength -gt $script:limitMaxValue) + { + Write-Log "Truncate length cannot be larger than Max value length. Canged to: $($script:limitMaxValue)" 2 + $script:truncateValueLength = $script:limitMaxValue + } + } + try { $script:wordApp = New-Object -ComObject Word.Application @@ -284,6 +352,17 @@ function Invoke-WordPreProcessItems } } } + else + { + if(($script:doc.TablesOfContents | measure).Count -eq 0) + { + # Where should it be added? + # $script:doc.TablesOfContents.Add($script:wordApp.Selection.Range) | out-null + } + + Invoke-DocGoToEnd + $script:wordApp.Selection.InsertNewPage() + } } function Invoke-WordPostProcessItems @@ -459,30 +538,39 @@ function Invoke-WordProcessItem { $properties = (?? $documentedObj.DefaultDocumentationProperties (@("Name","Value"))) } + + if($global:cbWordDocumentationLevel.SelectedValue -eq "basic" -and $tableType -ne "BasicInfo") + { + continue + } $lngId = ?: ($tableType -eq "BasicInfo") "SettingDetails.basics" "TableHeaders.settings" -AddCategories Add-DocTableItems $obj $objectType ($documentedObj.$tableType) $properties $lngId ` -AddCategories:($global:chkWordAddCategories.IsChecked -eq $true) ` - -AddSubcategories:($global:chkWordAddSubCategories.IsChecked -eq $true) + -AddSubcategories:($global:chkWordAddSubCategories.IsChecked -eq $true) ` + -ForceFullValue:($tableType -eq "BasicInfo") } - if(($documentedObj.ComplianceActions | measure).Count -gt 0) + if($global:cbWordDocumentationLevel.SelectedValue -ne "basic") { - $properties = @("Action","Schedule","MessageTemplate","EmailCC") + if(($documentedObj.ComplianceActions | measure).Count -gt 0) + { + $properties = @("Action","Schedule","MessageTemplate","EmailCC") - Add-DocTableItems $obj $objectType $documentedObj.ComplianceActions $properties "Category.complianceActionsLabel" + Add-DocTableItems $obj $objectType $documentedObj.ComplianceActions $properties "Category.complianceActionsLabel" + } + + if(($documentedObj.ApplicabilityRules | measure).Count -gt 0) + { + $properties = @("Rule","Property","Value") + + Add-DocTableItems $obj $objectType $documentedObj.ApplicabilityRules $properties "SettingDetails.applicabilityRules" + } + + Add-DocObjectSettings $obj $objectType $documentedObj } - if(($documentedObj.ApplicabilityRules | measure).Count -gt 0) - { - $properties = @("Rule","Property","Value") - - Add-DocTableItems $obj $objectType $documentedObj.ApplicabilityRules $properties "SettingDetails.applicabilityRules" - } - - Add-DocObjectSettings $obj $objectType $documentedObj - if(($documentedObj.Assignments | measure).Count -gt 0) { $params = @{} @@ -523,6 +611,20 @@ function Invoke-WordProcessItem Add-DocTableItems $obj $objectType $documentedObj.Assignments $properties "TableHeaders.assignments" @params } + + if($global:chkWordAttatchJsonFile.IsChecked -eq $true) + { + $fileName = Export-GraphObject $obj $objectType ([IO.Path]::GetTempPath()) -IsFullObject -PassThru -SkipAddID + if($fileName) + { + $fi = [IO.FileInfo]$fileName + if($fi.Exists) + { + $script:doc.Application.Selection.InlineShapes.AddOLEObject("",$fi.FullName,$false,$true,"$($env:WinDir)\System32\Notepad.exe",0,$fi.Name) + try { $fi.Delete() } catch {} # Cleanup + } + } + } } catch { @@ -606,7 +708,7 @@ function Set-WordColumnHeaderLanguageId function Add-DocTableItems { - param($obj, $objectType, $items, $properties, $lngId, [switch]$AddCategories, [switch]$AddSubcategories, $captionOverride) + param($obj, $objectType, $items, $properties, $lngId, [switch]$AddCategories, [switch]$AddSubcategories, $captionOverride, [switch]$forceFullValue) $tblHeaderStyle = $global:txtWordTableHeaderStyle.Text $tblCategoryStyle = $global:txtWordCategoryHeaderStyle.Text @@ -665,7 +767,48 @@ function Add-DocTableItems { $tmpObj = $tmpObj."$($propArr[$x])" } - $script:docTable.Cell($row, $i).Range.Text = "$($tmpObj.$propName)" + $propValue = "$($tmpObj.$propName)" + $propValueFull = $null + + if($forceFullValue -ne $true -and $global:cbWordDocumentationLevel.SelectedValue -eq "limited" -and $propValue.Length -gt $script:limitMaxValue) + { + $propValueFull = $propValue + if($script:truncateValueLength -gt 0) + { + $propValue = ($propValue.Substring(0, $script:truncateValueLength) + "...") + if($global:chkWordDocumentationLimitAttatch.IsChecked -eq $true) + { + $propValue = ("`r`n" + $propValue) + } + } + else + { + $propValue = $null + } + } + + if($null -ne $propValue) + { + $script:docTable.Cell($row, $i).Range.Text = $propValue + } + + if($propValueFull -and $global:chkWordDocumentationLimitAttatch.IsChecked -eq $true) + { + if($null -ne $propValue) + { + #$script:doc.Application.Selection.TypeParagraph() + } + + $tmpName = "$((Get-GraphObjectName $obj $objectType))-$propName" + + $tmpFile = [System.IO.Path]::Combine([System.IO.Path]::GetTempPath(), "$($tmpName).txt") + $tmpFile = Remove-InvalidFileNameChars $tmpFile + $propValueFull | Out-File -LiteralPath $tmpFile -Force + $fi = [IO.FileInfo]$tmpFile + [void]$script:docTable.Cell($row, $i).Range.InlineShapes.AddOLEObject("",$fi.FullName,$false,$true,"$($env:WinDir)\System32\Notepad.exe",0,"Full value") + #$script:doc.Application.Selection.InlineShapes.AddOLEObject("",$fi.FullName,$false,$true,"$($env:WinDir)\System32\Notepad.exe",0,"Full value", $script:docTable.Cell($row, $i).Range) + try { $fi.Delete() } catch {} + } } catch { diff --git a/Extensions/EndpointManager.psm1 b/Extensions/EndpointManager.psm1 index 3231a27..5a7a416 100644 --- a/Extensions/EndpointManager.psm1 +++ b/Extensions/EndpointManager.psm1 @@ -11,7 +11,7 @@ This module is for the Endpoint Manager/Intune View. It manages Export/Import/Co #> function Get-ModuleVersion { - '3.1.14' + '3.4.0' } function Invoke-InitializeModule @@ -239,8 +239,9 @@ function Invoke-InitializeModule PreReplaceCommand = { Start-PreReplaceEnrollmentRestrictions @args } # Note: Uses same PreReplaceCommand as restrictions PostReplaceCommand = { Start-PostReplaceEnrollmentRestrictions @args } # Note: Uses same PostReplaceCommand as restrictions PreFilesImportCommand = { Start-PreFilesImportEnrollmentRestrictions @args } # Note: Uses same PreFilesImportCommand as restrictions + PostListCommand = { Start-PostListESP @args } #PreUpdateCommand = { Start-PreUpdateEnrollmentRestrictions @args } # Note: Uses same PreUpdateCommand as restrictions - QUERYLIST = "`$filter=endsWith(id,'Windows10EnrollmentCompletionPageConfiguration')" + #QUERYLIST = "`$filter=endsWith(id,'Windows10EnrollmentCompletionPageConfiguration')" Permissons=@("DeviceManagementServiceConfig.ReadWrite.All") SkipRemoveProperties = @('Id') AssignmentsType = "enrollmentConfigurationAssignments" @@ -253,19 +254,21 @@ function Invoke-InitializeModule Id = "EnrollmentRestrictions" API = "/deviceManagement/deviceEnrollmentConfigurations" ViewID = "IntuneGraphAPI" - QUERYLIST = "`$filter=not endsWith(id,'Windows10EnrollmentCompletionPageConfiguration')" + #QUERYLIST = "`$filter=not endsWith(id,'Windows10EnrollmentCompletionPageConfiguration')" PostExportCommand = { Start-PostExportEnrollmentRestrictions @args } PreImportCommand = { Start-PreImportEnrollmentRestrictions @args } PreDeleteCommand = { Start-PreDeleteEnrollmentRestrictions @args } PreReplaceCommand = { Start-PreReplaceEnrollmentRestrictions @args } PostReplaceCommand = { Start-PostReplaceEnrollmentRestrictions @args } PreFilesImportCommand = { Start-PreFilesImportEnrollmentRestrictions @args } + PostListCommand = { Start-PostListEnrollmentRestrictions @args } #PreUpdateCommand = { Start-PreUpdateEnrollmentRestrictions @args } PropertiesToRemoveForUpdate = @('priority') Permissons=@("DeviceManagementServiceConfig.ReadWrite.All") SkipRemoveProperties = @('Id') AssignmentsType = "enrollmentConfigurationAssignments" GroupId = "EnrollmentRestrictions" + ViewProperties = @("displayName","platformType","description","Id") }) Add-ViewItem (New-Object PSObject -Property @{ @@ -405,8 +408,10 @@ function Invoke-InitializeModule Expand="categories,assignments" # ODataMetadata is set to minimal so assignments can't be autodetected ODataMetadata="minimal" # categories property not supported with ODataMetadata full PostFileImportCommand = { Start-PostFileImportApplications @args } + PostCopyCommand = { Start-PostCopyApplications @args } PreUpdateCommand = { Start-PreUpdateApplication @args } PreImportCommand = { Start-PreImportCommandApplication @args } + DetailExtension = { Add-DetailExtensionApplications @args } GroupId = "Apps" }) @@ -1322,19 +1327,24 @@ function Add-ScriptExportExtensions { param($form, $buttonPanel, $index = 0) - $xaml = @" + $ctrl = $form.FindName("chkExportScript") + if(-not $ctrl) + { + $xaml = @" "@ - $label = [Windows.Markup.XamlReader]::Parse($xaml) + $label = [Windows.Markup.XamlReader]::Parse($xaml) - $global:chkExportScript = [System.Windows.Controls.CheckBox]::new() - $global:chkExportScript.IsChecked = $true - $global:chkExportScript.VerticalAlignment = "Center" + $global:chkExportScript = [System.Windows.Controls.CheckBox]::new() + $global:chkExportScript.IsChecked = $true + $global:chkExportScript.VerticalAlignment = "Center" + $global:chkExportScript.Name = "chkExportScript" - @($label, $global:chkExportScript) + @($label, $global:chkExportScript) + } } function Start-PostExportScripts @@ -1672,40 +1682,60 @@ function Start-PreImportAssignmentsAppConfiguration #endregon #region Applications + +function Start-PostCopyApplications +{ + param($objCopyFrom, $objNew, $objectType) + + Start-ImportApp $objNew + Write-Status "" +} + function Start-PostFileImportApplications { param($obj, $objectType, $file) - + $tmpObj = Get-Content -LiteralPath $file | ConvertFrom-Json - if(-not $tmpObj.'@odata.type') { return } - - $pkgPath = Get-SettingValue "EMIntuneAppPackages" - - if(-not $pkgPath -or [IO.Directory]::Exists($pkgPath) -eq $false) - { - Write-LogDebug "Package source directory is either missing or does not exist" 2 - return - } - - $packageFile = "$($pkgPath)\$($obj.fileName)" - - if([IO.File]::Exists($packageFile) -eq $false) - { - Write-LogDebug "Package source file $packageFile not found" 2 - return - } - - Write-Status "Import appliction package file $($obj.fileName)" - Write-Log "Import application file '$($packageFile)' for $($obj.displayName)" - if(-not ($obj.PSObject.Properties | Where Name -eq '@odata.type')) { # Add @odata.type property if it is missing. Required by app package import - $obj | Add-Member -MemberType NoteProperty -Name '@odata.type' -Value $tmpObj.'@odata.type' + $obj | Add-Member -MemberType NoteProperty -Name '@odata.type' -Value $objectType.'@odata.type' + } + + Start-ImportApp $obj +} + +function local:Start-ImportApp +{ + param($obj, $packageFile = $null) + + if(-not $obj.'@odata.type') { return } + + if($null -eq $packageFile) + { + $pkgPath = Get-SettingValue "EMIntuneAppPackages" + + if(-not $pkgPath -or [IO.Directory]::Exists($pkgPath) -eq $false) + { + Write-LogDebug "Package source directory is either missing or does not exist" 2 + return + } + + $packageFile = "$($pkgPath)\$($obj.fileName)" + } + $fi = [IO.FileInfo]$packageFile + + if($fi.Exists -eq $false) + { + Write-LogDebug "Package source file $($fi.FullName) not found" 2 + return } - $appType = $tmpObj.'@odata.type'.Trim('#') + Write-Status "Import appliction package file $($fi.FullName)" + Write-Log "Import application file '$($($fi.FullName))' for $($obj.displayName)" + + $appType = $obj.'@odata.type'.Trim('#') if($appType -eq "microsoft.graph.win32LobApp") { @@ -1760,6 +1790,55 @@ function Start-PreImportCommandApplication } } +function Add-DetailExtensionApplications +{ + param($form, $buttonPanel, $index = 0) + + $btnUpload = New-Object System.Windows.Controls.Button + $btnUpload.Content = 'Upload' + $btnUpload.Name = 'btnUploadAppfile' + $btnUpload.Margin = "0,0,5,0" + $btnUpload.Width = "100" + + $btnUpload.Add_Click({ + if($global:dgObjects.SelectedItem.Object.publishingState -ne "notPublished") + { + # Only allow upload of not published apps + # Use portal to replace app file... + if(([System.Windows.MessageBox]::Show("Are you sure you want to upload a new file for the app?`n`nApplication:`n$($global:dgObjects.SelectedItem.Object.displayName)", "Update app file?", "YesNo", "Warning")) -ne "Yes") + { + return + } + } + + $pkgPath = Get-SettingValue "EMIntuneAppPackages" + + $of = [System.Windows.Forms.OpenFileDialog]::new() + $of.FileName = $global:dgObjects.SelectedItem.Object.fileName + $of.DefaultExt = "*.intunewin" + $of.Filter = "Intune Win32 (*.intunewin)|*.*" + $of.Multiselect = $false + + if($pkgPath -and [IO.Directory]::Exists($pkgPath)) + { + $of.InitialDirectory = $pkgPath + } + + if($of.ShowDialog() -eq "OK") + { + Write-Status "Import $($global:dgObjects.SelectedItem.Object.displayName) file" + Start-ImportApp $global:dgObjects.SelectedItem.Object $of.FileName + Write-Status "" + } + }) + + $tmp = $form.FindName($buttonPanel) + if($tmp) + { + $tmp.Children.Insert($index, $btnUpload) + } + +} #endregion #region Group Policy/Administrative Templates functions @@ -2241,6 +2320,14 @@ function Start-PostExportESP Save-EMDefaultPolicy $obj $objectType $path } } + +function Start-PostListESP +{ + param($objList, $objectType) + + # endswith not working so filter them out + $objList | Where { $_.Object.'@OData.Type' -eq '#microsoft.graph.windows10EnrollmentCompletionPageConfiguration' } +} #endregion #region Enrollment Restriction functions @@ -2326,6 +2413,19 @@ function Start-PreUpdateEnrollmentRestrictions Remove-Property $obj "priority" } +function Start-PostListEnrollmentRestrictions +{ + param($objList, $objectType) + + # endswith not working so filter them out + $objList | Where { + ($_.Object.'@OData.Type' -eq '#microsoft.graph.deviceEnrollmentPlatformRestrictionConfiguration' -or + $_.Object.'@OData.Type' -eq '#microsoft.graph.deviceEnrollmentLimitConfiguration' -or + $_.Object.'@OData.Type' -eq '#microsoft.graph.deviceEnrollmentPlatformRestrictionsConfiguration') -and + $_.Object.id -notlike "*_PlatformRestrictions" -and $_.Object.platformType -ne "WindowsPhone" -and $_.Object.platformType -ne "AndroidAosp" + } +} + #endregion #region ScopeTags @@ -2596,6 +2696,7 @@ function Add-ConditionalAccessImportExtensions $global:cbImportCAState.Margin="0,5,0,0" $global:cbImportCAState.HorizontalAlignment="Left" $global:cbImportCAState.Width=250 + $global:cbImportCAState.Name = "cbImportCAState" @($label, $global:cbImportCAState) } diff --git a/Extensions/IntuneAppManagement.psm1 b/Extensions/IntuneAppManagement.psm1 index 346d350..a9230d0 100644 --- a/Extensions/IntuneAppManagement.psm1 +++ b/Extensions/IntuneAppManagement.psm1 @@ -10,7 +10,7 @@ This module manages Application objects in Intune e.g. uploading application fil #> function Get-ModuleVersion { - '3.1.2' + '3.4.0' } ######################################################################################### @@ -209,6 +209,8 @@ function Copy-Win32LOBPackage Remove-Item -Path $tmpFile + $fi = [IO.FileInfo]$intunewinFile + # Get encryption info from detection.xml and build encryptionInfo object $encryptionInfo = @{} @@ -222,7 +224,7 @@ function Copy-Win32LOBPackage $tmpIntunewinPath = ([IO.Path]::GetTempPath() + [Guid]::NewGuid().ToString("n")) mkdir $tmpIntunewinPath | Out-Null - $tmpIntunewinFile = $tmpIntunewinPath + "\" + $DetectionXML.ApplicationInfo.FileName + $tmpIntunewinFile = $tmpIntunewinPath + "\" + $fi.Name # Extract the encrypted file from the intunewin file Export-IntunewinFileObject $intunewinFile $DetectionXML.ApplicationInfo.FileName $tmpIntunewinFile @@ -250,8 +252,8 @@ function Add-FileToIntuneApp { param($appId, $appType, $appFile, $fileBody) - $contentVersion = Invoke-GraphRequest -Url "/deviceAppManagement/mobileApps/$appId/$appType/contentVersions" - $contentVersionId = $contentVersion.value[0].id + $contentVersion = Invoke-GraphRequest -Url "/deviceAppManagement/mobileApps/$appId/$appType/contentVersions" -HttpMethod POST -Content "{}" + $contentVersionId = $contentVersion.id $fileObj = Invoke-GraphRequest -Url "/deviceAppManagement/mobileApps/$appId/$appType/contentVersions/$contentVersionId/files" -HttpMethod POST -Content (ConvertTo-Json $fileBody -Depth 5) if(-not $fileObj) @@ -274,10 +276,12 @@ function Add-FileToIntuneApp Wait-IntuneFileState "/deviceAppManagement/mobileApps/$appId/$appType/contentVersions/$contentVersionId/files/$($fileObj.Id)" "CommitFile" + $fiUpload = [IO.FileInfo]$appFile # Commit the content version $commitAppBody = @{ "@odata.type" = "#$appType" committedContentVersion = $contentVersionId + fileName = $fiUpload.Name } $reponse = Invoke-GraphRequest -Url "/deviceAppManagement/mobileApps/$appId" -HttpMethod PATCH -Content (ConvertTo-Json $commitAppBody -Depth 5) diff --git a/Extensions/MSALAuthentication.psm1 b/Extensions/MSALAuthentication.psm1 index 129d7e3..bb66d77 100644 --- a/Extensions/MSALAuthentication.psm1 +++ b/Extensions/MSALAuthentication.psm1 @@ -10,7 +10,7 @@ This module manages Authentication for the application with MSAL. It is also res #> function Get-ModuleVersion { - '3.3.2' + '3.4.0' } $global:msalAuthenticator = $null @@ -234,7 +234,7 @@ function Get-MSALUserInfo { Write-Log "Get current user" $tmpMe = MSGraph\Invoke-GraphRequest -Url "ME" -SkipAuthentication -ODataMetadata "Skip" - if($tmpMe.creationType -ne "Invitation") + if($null -ne $tmpMe -and $tmpMe.creationType -ne "Invitation") { ### Only get user info from home tenant $global:Me = $tmpMe @@ -342,6 +342,12 @@ function Install-MSALDependencyModule { param($moduleToInstall, $button) + if($global:hideUI -eq $true) + { + Write-Log "Cannot install MSAL module in Silent mode" + return + } + $forceUserInstallation = $false if($global:chkCurrentUser.IsChecked -eq $false -and (Get-IsAdmin) -eq $false) @@ -541,6 +547,38 @@ function Add-MSALPrereq } } +function Connect-MSALClientApp +{ + param($clientId, $tenantId, $secret, $Certificate) + $scopes = [String[]]".default" + + if(-not $script:MSALApp) + { + $authority = "https://login.microsoftonline.com/$tenantId" + #$redirectUri = "http://localhost" + + if($secret) + { + $ClientApplicationBuilder = [Microsoft.Identity.Client.ConfidentialClientApplicationBuilder]::Create($clientId).WithClientSecret($ClientSecret).WithAuthority([URI]::new($authority)) #.WithRedirectUri($redirectUri) + } + elseif($Certificate) + { + $ClientApplicationBuilder = [Microsoft.Identity.Client.ConfidentialClientApplicationBuilder]::Create($clientId).WithCertificate($ClientSecret).WithAuthority([URI]::new($authority)) #.WithRedirectUri($redirectUri) + } + else + { + return + } + $script:MSALApp = $ClientApplicationBuilder.Build() + } + + if($script:MSALApp) + { + $accessTokenRequest = $script:MSALApp.AcquireTokenForClient($scopes) + $global:MSALToken = Get-MsalAuthenticationToken $accessTokenRequest + } +} + function Get-MsalAuthenticationToken { param($aquireTokenObj) @@ -689,6 +727,9 @@ function Connect-MSALUser [switch] $Interactive, + [switch] + $ClientApp, + $Account, $Tenant @@ -697,6 +738,24 @@ function Connect-MSALUser # No login during first time the app is started if($global:FirstTimeRunning -and $global:MainAppStarted -eq $false) { return } + if($global:hideUI -eq $true) + { + if($global:AzureAppId -and $global:ClientSecret -and $global:TenantId) + { + Connect-MSALClientApp $global:AzureAppId $global:TenantId -secret $global:ClientSecret + } + elseif($global:AzureAppId -and $global:ClientCert -and $global:TenantId) + { + Connect-MSALClientApp $global:AzureAppId $global:TenantId -certificate $global:ClientCert + } + else + { + Write-Log "Azure AppId, Tenant Id and Sercret/Cert must be specified for batch login" 3 + } + + return + } + Write-LogDebug "Authenticate" if(-not $global:appObj.ClientId) diff --git a/Extensions/MSGraph.psm1 b/Extensions/MSGraph.psm1 index b7516db..364ea23 100644 --- a/Extensions/MSGraph.psm1 +++ b/Extensions/MSGraph.psm1 @@ -10,7 +10,7 @@ This module manages Microsoft Grap fuctions like calling APIs, managing graph ob #> function Get-ModuleVersion { - '3.1.10' + '3.4.0' } $global:MSGraphGlobalApps = @( @@ -55,6 +55,12 @@ function Invoke-InitializeModule Values = @() }) + $global:appSettingSections += (New-Object PSObject -Property @{ + Title = "Silent/Batch Job" + Id = "GraphSilent" + Values = @() + }) + Add-SettingsObject (New-Object PSObject -Property @{ Title = "Root folder" Key = "RootFolder" @@ -176,12 +182,43 @@ function Invoke-InitializeModule Description = "This will refresh all objects when after a copy. If this is disabled, the list must be refreshed manually to see the new objects. Default is true" }) "ImportExport" + Add-SettingsObject (New-Object PSObject -Property @{ + Title = "ApplicationId" + Key = "GraphAzureAppId" + Type = "String" + Description = "Azure App Id to use for log-in during silent operatons" + }) "GraphSilent" + + Add-SettingsObject (New-Object PSObject -Property @{ + Title = "Secret" + Key = "GraphAzureAppSecret" + Type = "String" + Description = "Secret for the Azure App" + }) "GraphSilent" + + Add-SettingsObject (New-Object PSObject -Property @{ + Title = "Certificate" + Key = "GraphAzureAppCert" + Type = "String" + Description = "Certificate for Azure App" + }) "GraphSilent" } function Get-GraphAppInfo { param($settingId, $defaultAppId, $prefix) + if($global:hideUI -eq $true) + { + # Set app info from custom settings + $appObj = New-Object PSObject -Property @{ + ClientId = Get-SettingValue "$($PreFix)CustomAppId" + TenantId = $global:silentTenantId + RedirectUri = Get-SettingValue "$($PreFix)CustomAppRedirect" + Authority = Get-SettingValue "$($PreFix)CustomAuthority" + } + } + $graphAppId = Get-SettingValue $settingId if($graphAppId) @@ -316,7 +353,7 @@ function Invoke-GraphRequest { $dirName = [IO.Path]::GetDirectoryName($Outfile) try { - [IO.Directory]::CreateDirectory($dirName) + [IO.Directory]::CreateDirectory($dirName) | Out-Null } catch { @@ -467,10 +504,7 @@ function Get-GraphObjects $script:nextGraphPage = $graphObjects.'@odata.nextLink' } - if($SingleObject -ne $true -and $objectType.PostListCommand) - { - $graphObjects = & $objectType.PostListCommand $graphObjects $objectType - } + if($graphObjects -and ($graphObjects | GM -Name Value -MemberType NoteProperty)) { @@ -481,7 +515,14 @@ function Get-GraphObjects $retObjects = $graphObjects } - return (Add-GraphObectProperties $retObjects $objectType $property $exclude $SortProperty) + $graphObjects = Add-GraphObectProperties $retObjects $objectType $property $exclude $SortProperty + + if($SingleObject -ne $true -and $objectType.PostListCommand) + { + $graphObjects = & $objectType.PostListCommand $graphObjects $objectType + } + + $graphObjects } function Add-GraphObectProperties @@ -963,6 +1004,302 @@ function Show-GraphExportForm Show-ModalForm "Export $($global:curObjectType.Title) objects" $script:exportForm -HideButtons } +function Invoke-InitSilentBatchJob +{ + $global:MSALToken = $null + + if(-not $global:TenantId) + { + Write-Log "Tenant Id is missing. Use -TenantId on the command line to run silent batch jobs" 3 + return + } + + if(-not $global:AzureAppId -or (-not $global:ClientSecret -and -not $global:ClientCert)) + { + # Get login info for silet job from settings + $global:AzureAppId = Get-SettingValue "GraphAzureAppId" -TenantID $global:TenantId + $global:ClientSecret = Get-SettingValue "GraphAzureAppSecret" -TenantID $global:TenantId + $global:ClientCert = Get-SettingValue "GraphAzureAppCert" -TenantID $global:TenantId + } + + if(-not $global:AzureAppId) + { + Write-Log "App Id is missing. Cannot run silent job without App Id. Either specify the AppId in Settings or Command Line (-AppId )" 3 + return + } + + if(-not $global:ClientSecret -and -not $global:ClientCert) + { + Write-Log "Secret or Certificate must be specified. Either specify Secret/Certificate in Settings or Command Line" 3 + return + } + Connect-MSALUser | Out-Null + if(-not $global:MSALToken) + { + Write-Log "Not autheticated. Batch job will be skipped" 3 + } + else + { + $accessToken = Get-JWTtoken $global:MSALToken.AccessToken + if($accessToken) + { + $global:Organization = (MSGraph\Invoke-GraphRequest -Url "Organization" -SkipAuthentication -ODataMetadata "Skip" -NoError).Value + if($global:Organization) + { + if($global:Organization -is [array]) { $global:Organization = $global:Organization[0]} + } + else + { + Write-Log "Could not get Organization info. Verify that the app has permission to read Organization info (at least Organization.Read.All). Organization name wil not be set" 2 + $global:Organization = [PSCustomObject]@{ + Id = $accessToken.Payload.tid + displayName = "" + } + } + if($global:Organization.displayName) + { + $tenantInfo = "$($global:Organization.displayName) ($($global:Organization.id))" + } + else + { + $tenantInfo = $accessToken.Payload.tid + } + + Write-Log "Successfully authenticated to tenant: $tenantInfo" + Write-Log "Azure App (for authentication): $($accessToken.Payload.app_displayname) ($($accessToken.Payload.appid))" + Write-Log "Permissions: $(($accessToken.Payload.roles -join ","))" + } + } +} + +function Invoke-SilentBatchJob +{ + param($settingsObj) + + if(-not $global:MSALToken) { return } # Skip if not authenticated + + if(-not $settingsObj -or (-not $settingsObj.BulkExport -and -not $settingsObj.BulkImport)) + { + return + } + + if($settingsObj.BulkExport) + { + Start-GraphSilentBulkExport $settingsObj + } + + if($settingsObj.BulkImport) + { + Start-GraphSilentBulkImport $settingsObj + } +} + +function Start-GraphSilentBulkExport +{ + param($settingsObj) + + $script:exportForm = Get-XamlObject ($global:AppRootFolder + "\Xaml\BulkExportForm.xaml") -AddVariables + if(-not $script:exportForm) { return } + + $script:exportObjects = Get-GraphBatchObjectTypes $settingsObj.BulkExport + + foreach($viewObj in $script:exportObjects) + { + if(-not $viewObj.Title) { continue } + + if($viewObj.ObjectType.ShowButtons -is [Object[]] -and $viewObj.ObjectType.ShowButtons -notcontains "Export") { continue } + + Add-GraphExportExtensions $script:exportForm 0 $viewObj.ObjectType + } + + Set-BatchProperties $settingsObj.BulkExport $script:exportForm + + $global:dgObjectsToExport.ItemsSource = @($script:exportObjects) + + <# + # Select ObjectTypes based on batch config + $objTypes = $settingsObj.BulkExport | Where Name -eq ObjectTypes + if($objTypes) + { + foreach($objTypeId in $objTypes.ObjectTypes) + { + $obj = $global:dgObjectsToExport.ItemsSource | Where { $_.ObjectType.Id -eq $objTypeId} + if($obj) + { + $obj.Selected = $true + } + else + { + Write-Log "No Object Type with id $objTypeId found" 2 + } + } + } + #> + + Start-GraphObjectExport +} + +function Start-GraphSilentBulkImport +{ + param($settingsObj) + + $script:importForm = Get-XamlObject ($global:AppRootFolder + "\Xaml\BulkImportForm.xaml") -AddVariables + if(-not $script:importForm) { return } + + # Get all objects but not selected + # This will allow dependencies + $script:importObjects = Get-GraphBatchObjectTypes $settingsObj.BulkImport -NotSelected -All + + $objTypes = $settingsObj.BulkImport | Where Name -eq ObjectTypes + if($objTypes) + { + # Select object types from the batch file + foreach($objTypeId in $objTypes.ObjectTypes) + { + $obj = $script:importObjects | Where { $_.ObjectType.Id -eq $objTypeId} + if($obj) + { + $obj.Selected = $true + } + else + { + Write-Log "No Object Type with id $objTypeId found" 2 + } + } + } + + foreach($viewObj in $script:importObjects) + { + if(-not $viewObj.Title) { continue } + + if($viewObj.ObjectType.ShowButtons -is [Object[]] -and $viewObj.ObjectType.ShowButtons -notcontains "Import") { continue } + + Add-GraphImportExtensions $script:importForm 0 $viewObj.ObjectType + } + + Set-BatchProperties $settingsObj.BulkImport $script:importForm + + $global:dgObjectsToImport.ItemsSource = @($script:importObjects) + + $importedObjects = Start-GraphObjectImport + + if($importedObjects -eq 0) + { + Write-Log "No objects were imported. Verify import batch file settings" 2 + }} + +function Get-GraphBatchObjectTypes +{ + param($settingsObj, [switch]$NotSelected, [switch]$All) + + $silentViewObjects = @() + + $intuneView = $global:viewObjects | Where { $_.ViewInfo.Id -eq "IntuneGraphAPI" } + if($All -ne $true) + { + $arrObjectTypes = ($settingsObj | Where Name -eq ObjectTypes).ObjectTypes + } + else + { + $arrObjectTypes = $intuneView.ViewItems.Id + } + + foreach($objTypeId in $arrObjectTypes) + { + $objType = $intuneView.ViewItems | Where Id -eq $objTypeId + if(-not $objType) + { + Write-Log "ViewObject with id $objTypeId not found" 2 + continue + } + + $silentViewObjects += New-Object PSObject -Property @{ + Title = $objType.Title + Selected = ($NotSelected.IsPresent -ne $true) + ObjectType = $objType + } + } + + $silentViewObjects +} + +function Start-GraphObjectExport +{ + Write-Status "Export objects" -Block + Write-Log "****************************************************************" + Write-Log "Start bulk export" + Write-Log "****************************************************************" + + $tmpFolder = Expand-FileName (Get-XamlProperty $script:exportForm "txtExportPath" "Text") + Write-Log "Export root folder: $tmpFolder" + + $global:AADObjectCache = $null + + foreach($item in $script:exportObjects) + { + if($item.Selected -ne $true) { continue } + + Write-Log "----------------------------------------------------------------" + Write-Log "Export $($item.ObjectType.Title) objects" + Write-Log "----------------------------------------------------------------" + + $txtNameFilter = $global:txtExportNameFilter.Text.Trim() + Save-Setting "" "ExportNameFilter" $txtNameFilter + if($txtNameFilter) { Write-Log "Name filter: $txtNameFilter" } + try + { + $folder = Get-GraphObjectFolder $item.ObjectType (Get-XamlProperty $script:exportForm "txtExportPath" "Text") (Get-XamlProperty $script:exportForm "chkAddObjectType" "IsChecked") (Get-XamlProperty $script:exportForm "chkAddCompanyName" "IsChecked") + + $folder = Expand-FileName $folder + + Write-Status "Get a list of all $($item.ObjectType.Title) objects" -SkipLog -Force + $objects = @(Get-GraphObjects -property $item.ObjectType.ViewProperties -objectType $item.ObjectType) + + if((Get-SettingValue "UseBatchAPI") -eq $true) + { + # Use batch to get details of each object + $batchObjects = Get-GraphBatchObjects $objects $txtNameFilter + $i = 1 + $total = ($batchObjects | measure).Count + foreach($batchResult in $batchObjects) + { + $objName = Get-GraphObjectName $batchResult.Object $batchResult.ObjectType + Write-Status "Export $($item.Title): $objName ($($i)/$($total))" -Force + Export-GraphObject $batchResult.Object $batchResult.ObjectType $folder -IsFullObject + $i++ + } + } + else + { + foreach($obj in $objects) + { + # Export objects one by one + $objName = Get-GraphObjectName $obj.Object $obj.ObjectType + + if($txtNameFilter -and $objName -notmatch [RegEx]::Escape($txtNameFilter)) + { + continue + } + + Write-Status "Export $($item.Title): $objName" -Force + Export-GraphObject $obj.Object $item.ObjectType $folder + } + } + Save-Setting "" "LastUsedFullPath" $folder + } + catch + { + Write-LogError "Failed when exporting $($item.Title) objects" $_.Exception + } + } + Save-Setting "" "LastUsedRoot" (Get-XamlProperty $script:exportForm "txtExportPath" "Text") + + Write-Log "****************************************************************" + Write-Log "Bulk export finished" + Write-Log "****************************************************************" + Write-Status "" +} + function Show-GraphBulkExportForm { $script:exportForm = Get-XamlObject ($global:AppRootFolder + "\Xaml\BulkExportForm.xaml") -AddVariables @@ -1024,82 +1361,109 @@ function Show-GraphBulkExportForm $script:exportForm = $null Show-ModalObject }) - + Add-XamlEvent $script:exportForm "btnExport" "add_click" ({ - Write-Status "Export objects" -Block - Write-Log "****************************************************************" - Write-Log "Start bulk export" - Write-Log "****************************************************************" - $global:AADObjectCache = $null + Start-GraphObjectExport + }) - foreach($item in $script:exportObjects) - { - if($item.Selected -ne $true) { continue } - - Write-Log "----------------------------------------------------------------" - Write-Log "Export $($item.ObjectType.Title) objects" - Write-Log "----------------------------------------------------------------" - - $txtNameFilter = $global:txtExportNameFilter.Text.Trim() - Save-Setting "" "ExportNameFilter" $txtNameFilter - if($txtNameFilter) { Write-Log "Name filter: $txtNameFilter" } - - try - { - $folder = Get-GraphObjectFolder $item.ObjectType (Get-XamlProperty $script:exportForm "txtExportPath" "Text") (Get-XamlProperty $script:exportForm "chkAddObjectType" "IsChecked") (Get-XamlProperty $script:exportForm "chkAddCompanyName" "IsChecked") - - Write-Status "Get a list of all $($item.ObjectType.Title) objects" -SkipLog -Force - $objects = @(Get-GraphObjects -property $item.ObjectType.ViewProperties -objectType $item.ObjectType) - - if((Get-SettingValue "UseBatchAPI") -eq $true) - { - # Use batch to get details of each object - $batchObjects = Get-GraphBatchObjects $objects $txtNameFilter - $i = 1 - $total = ($batchObjects | measure).Count - foreach($batchResult in $batchObjects) - { - $objName = Get-GraphObjectName $batchResult.Object $batchResult.ObjectType - Write-Status "Export $($item.Title): $objName ($($i)/$($total))" -Force - Export-GraphObject $batchResult.Object $batchResult.ObjectType $folder -IsFullObject - $i++ - } - } - else - { - foreach($obj in $objects) - { - # Export objects one by one - $objName = Get-GraphObjectName $obj.Object $obj.ObjectType - - if($txtNameFilter -and $objName -notmatch [RegEx]::Escape($txtNameFilter)) - { - continue - } - - Write-Status "Export $($item.Title): $objName" -Force - Export-GraphObject $obj.Object $item.ObjectType $folder - } - } - Save-Setting "" "LastUsedFullPath" $folder + Add-XamlEvent $script:exportForm "btnExportSettingsForSilentExport" "add_click" ({ + $sf = [System.Windows.Forms.SaveFileDialog]::new() + $sf.FileName = "BulkExport.json" + $sf.DefaultExt = "*.json" + $sf.Filter = "Json (*.json)|*.json|All files (*.*)|*.*" + if($sf.ShowDialog() -eq "OK") + { + $tmp = [PSCustomObject]@{ + Name = "ObjectTypes" + Type = "Custom" + ObjectTypes = @() } - catch + foreach($ot in ($script:exportObjects | Where Selected -eq $true)) { - Write-LogError "Failed when exporting $($item.Title) objects" $_.Exception + $tmp.ObjectTypes += $ot.ObjectType.Id } - } - Save-Setting "" "LastUsedRoot" (Get-XamlProperty $script:exportForm "txtExportPath" "Text") - - Write-Log "****************************************************************" - Write-Log "Bulk export finished" - Write-Log "****************************************************************" - Write-Status "" + Export-GraphBatchSettings $sf.FileName $script:exportForm "BulkExport" @($tmp) + } }) Show-ModalForm "Bulk Export" $script:exportForm -HideButtons } +function Export-GraphBatchSettings +{ + param($fileName, $form, $batchType, $customProps) + + $script:childObjects = @() + Get-XamlChildObjects $form + + $outputObj = [PSCustomObject]@{ + $batchType = @() + } + + if($script:childObjects.Count -gt 0) + { + foreach($ctrl in $script:childObjects) + { + if(-not $ctrl.Name) + { + Write-Log "Name not specified for a control with type: $(($ctrl.GetType().FullName)). Property skipped" 2 + continue + } + elseif($ctrl -is [System.Windows.Controls.TextBox]) + { + $value = $ctrl.Text + } + elseif($ctrl -is [System.Windows.Controls.CheckBox]) + { + $value = $ctrl.IsChecked + } + elseif($ctrl -is [System.Windows.Controls.ComboBox]) + { + $value = $ctrl.SelectedValue + } + else + { + Write-Log "Unsupported control type: $(($ctrl.GetType().FullName)). Property skipped" 2 + continue + } + #$focusable = $childObjects | Where Focusable -eq $true + $outputObj.$batchType += [PSCustomObject]@{ + Name = $ctrl.Name + Value = $value + } + } + } + + if(($customProps | measure).Count -gt 0) + { + $outputObj.$batchType += $customProps + } + + $json = $outputObj | ConvertTo-Json -Depth 20 + $json | Out-File -LiteralPath $fileName -Force +} + +function Get-XamlChildObjects +{ + param($parent) + + foreach($child in [System.Windows.LogicalTreeHelper]::GetChildren($parent)) + { + if($child -is [System.Windows.DependencyObject]) + { + if(($child.Focusable -eq $true) -and + ($child -is [System.Windows.Controls.TextBox] -or + $child -is [System.Windows.Controls.CheckBox] -or + $child -is [System.Windows.Controls.ComboBox])) + { + $script:childObjects += $child + } + Get-XamlChildObjects $child $collection + } + } +} + function Show-GraphImportForm { $script:importForm = Get-XamlObject ($global:AppRootFolder + "\Xaml\ImportForm.xaml") -AddVariables @@ -1295,77 +1659,9 @@ function Show-GraphBulkImportForm }) Add-XamlEvent $script:importForm "btnImport" "add_click" ({ - Write-Status "Import objects" -Block - Write-Log "****************************************************************" - Write-Log "Start bulk import" - Write-Log "****************************************************************" - Get-GraphDependencyDefaultObjects - $importedObjects = 0 - - $txtNameFilter = $global:txtImportNameFilter.Text.Trim() - Save-Setting "" "ImportNameFilter" $txtNameFilter - if($txtNameFilter) { Write-Log "Name filter: $txtNameFilter" } - - $allowUpdate = ((Get-SettingValue "AllowUpdate") -eq $true) - - foreach($item in ($script:importObjects | where Selected -eq $true | sort-object -property @{e={$_.ObjectType.ImportOrder}})) - { - Write-Status "Import $($item.ObjectType.Title) objects" -Force - Write-Log "----------------------------------------------------------------" - Write-Log "Import $($item.ObjectType.Title) objects" - Write-Log "----------------------------------------------------------------" - $folder = Get-GraphObjectFolder $item.ObjectType (Get-XamlProperty $script:importForm "txtImportPath" "Text") (Get-XamlProperty $script:importForm "chkAddObjectType" "IsChecked") - - $graphObjects = $null - - if($allowUpdate -and $global:cbImportType.SelectedValue -ne "alwaysImport") - { - try - { - Write-Status "Get $($item.Title) objects" -Force - $graphObjects = @(Get-GraphObjects -property $item.ObjectType.ViewProperties -objectType $item.ObjectType) - } - catch {} - } - - if([IO.Directory]::Exists($folder)) - { - $filesToImport = Get-GraphFileObjects $folder -ObjectType $item.ObjectType - if($item.ObjectType.PreFilesImportCommand) - { - $filesToImport = & $item.ObjectType.PreFilesImportCommand $item.ObjectType $filesToImport - } - foreach ($fileObj in @($filesToImport)) - { - $objName = Get-GraphObjectName $fileObj.Object $item.ObjectType + $importedObjects = Start-GraphObjectImport - if($txtNameFilter -and $objName -notmatch [RegEx]::Escape($txtNameFilter)) - { - continue - } - - if($allowUpdate -and $global:cbImportType.SelectedValue -ne "alwaysImport" -and $graphObjects -and (Reset-GraphObjet $fileObj $graphObjects)) - { - $importedObjects++ - continue - } - - Import-GraphFile $fileObj - $importedObjects++ - } - Save-Setting "" "LastUsedFullPath" $folder - } - else - { - Write-Log "Folder $folder not found. Skipping import" 2 - } - } - - Write-Log "****************************************************************" - Write-Log "Bulk import finished" - Write-Log "****************************************************************" - Write-Status "" if($importedObjects -eq 0) { [System.Windows.MessageBox]::Show("No objects were imported. Verify folder and exported files", "Error", "OK", "Error") @@ -1377,6 +1673,26 @@ function Show-GraphBulkImportForm } }) + Add-XamlEvent $script:importForm "btnExportSettingsForSilentImport" "add_click" ({ + $sf = [System.Windows.Forms.SaveFileDialog]::new() + $sf.FileName = "BulkImport.json" + $sf.DefaultExt = "*.json" + $sf.Filter = "Json (*.json)|*.json|All files (*.*)|*.*" + if($sf.ShowDialog() -eq "OK") + { + $tmp = [PSCustomObject]@{ + Name = "ObjectTypes" + Type = "Custom" + ObjectTypes = @() + } + foreach($ot in ($script:importObjects | Where Selected -eq $true)) + { + $tmp.ObjectTypes += $ot.ObjectType.Id + } + Export-GraphBatchSettings $sf.FileName $script:importForm "BulkImport" @($tmp) + } + }) + if((Get-XamlProperty $script:importForm "txtImportPath" "Text")) { Set-XamlProperty $script:importForm "lblMigrationTableInfo" "Content" (Get-MigrationTableInfo) @@ -1385,30 +1701,119 @@ function Show-GraphBulkImportForm Show-ModalForm "Bulk Import" $script:importForm -HideButtons } +function Start-GraphObjectImport +{ + + Write-Status "Import objects" -Block + Write-Log "****************************************************************" + Write-Log "Start bulk import" + Write-Log "****************************************************************" + + $tmpFolder = Expand-FileName (Get-XamlProperty $script:importForm "txtImportPath" "Text") + Write-Log "Import root folder: $tmpFolder" + + Get-GraphDependencyDefaultObjects + $importedObjects = 0 + + $txtNameFilter = $global:txtImportNameFilter.Text.Trim() + Save-Setting "" "ImportNameFilter" $txtNameFilter + if($txtNameFilter) { Write-Log "Name filter: $txtNameFilter" } + + $allowUpdate = ((Get-SettingValue "AllowUpdate") -eq $true) + + foreach($item in ($script:importObjects | where Selected -eq $true | sort-object -property @{e={$_.ObjectType.ImportOrder}})) + { + Write-Status "Import $($item.ObjectType.Title) objects" -Force + Write-Log "----------------------------------------------------------------" + Write-Log "Import $($item.ObjectType.Title) objects" + Write-Log "----------------------------------------------------------------" + $folder = Get-GraphObjectFolder $item.ObjectType (Get-XamlProperty $script:importForm "txtImportPath" "Text") (Get-XamlProperty $script:importForm "chkAddObjectType" "IsChecked") + + $folder = Expand-FileName $folder + + $graphObjects = $null + + if($allowUpdate -and $global:cbImportType.SelectedValue -ne "alwaysImport") + { + try + { + Write-Status "Get $($item.Title) objects" -Force + $graphObjects = @(Get-GraphObjects -property $item.ObjectType.ViewProperties -objectType $item.ObjectType) + } + catch {} + } + + if([IO.Directory]::Exists($folder)) + { + $filesToImport = Get-GraphFileObjects $folder -ObjectType $item.ObjectType + if($item.ObjectType.PreFilesImportCommand) + { + $filesToImport = & $item.ObjectType.PreFilesImportCommand $item.ObjectType $filesToImport + } + + foreach ($fileObj in @($filesToImport)) + { + $objName = Get-GraphObjectName $fileObj.Object $item.ObjectType + + if($txtNameFilter -and $objName -notmatch [RegEx]::Escape($txtNameFilter)) + { + continue + } + + if($allowUpdate -and $global:cbImportType.SelectedValue -ne "alwaysImport" -and $graphObjects -and (Reset-GraphObjet $fileObj $graphObjects)) + { + $importedObjects++ + continue + } + + Import-GraphFile $fileObj + $importedObjects++ + } + Save-Setting "" "LastUsedFullPath" $folder + } + else + { + Write-Log "Folder $folder not found. Skipping import" 2 + } + } + + Write-Log "****************************************************************" + Write-Log "Bulk import finished" + Write-Log "****************************************************************" + Write-Status "" + + $importedObjects +} + function Add-GraphExportExtensions { param($form, $buttonIndex = 0, $objectTypes) #$global:curObjectType + $grid = $form.FindName("grdExportProperties") + foreach($objectType in $objectTypes) { if($objectType.ExportExtension) - { - $grid = $form.FindName("grdExportProperties") + { $extraProperties = & $objectType.ExportExtension $form "spExportSubMenu" 1 for($i=0;($i + 1) -lt (($extraProperties) | measure).Count;$i ++) { $rd = [System.Windows.Controls.RowDefinition]::new() $rd.Height = [double]::NaN $grid.RowDefinitions.Add($rd) - $extraProperties[$i].SetValue([System.Windows.Controls.Grid]::RowProperty,$grid.RowDefinitions.Count) - $grid.Children.Add($extraProperties[$i]) + $extraProperties[$i].SetValue([System.Windows.Controls.Grid]::RowProperty,($grid.RowDefinitions.Count - 1)) + $grid.Children.Add($extraProperties[$i]) | Out-Null $i++ - $extraProperties[$i].SetValue([System.Windows.Controls.Grid]::RowProperty,$grid.RowDefinitions.Count) + $extraProperties[$i].SetValue([System.Windows.Controls.Grid]::RowProperty,($grid.RowDefinitions.Count - 1)) $extraProperties[$i].SetValue([System.Windows.Controls.Grid]::ColumnProperty,1) - $grid.Children.Add($extraProperties[$i]) - + $grid.Children.Add($extraProperties[$i]) | Out-Null + + if($extraProperties[$i].Name) + { + $form.RegisterName($extraProperties[$i].Name, $extraProperties[$i]) + } } } } @@ -1418,25 +1823,30 @@ function Add-GraphImportExtensions { param($form, $buttonIndex = 0, $objectTypes) + $grid = $form.FindName("grdImportProperties") + foreach($objectType in $objectTypes) { if($objectType.ImportExtension) - { - $grid = $form.FindName("grdImportProperties") - $extraProperties = & $objectType.ImportExtension $form "spExportSubMenu" 1 + { + $extraProperties = & $objectType.ImportExtension $form "spImportSubMenu" 1 for($i=0;($i + 1) -lt (($extraProperties) | measure).Count;$i ++) { $rd = [System.Windows.Controls.RowDefinition]::new() $rd.Height = [double]::NaN $grid.RowDefinitions.Add($rd) - $extraProperties[$i].SetValue([System.Windows.Controls.Grid]::RowProperty,$grid.RowDefinitions.Count) - $grid.Children.Add($extraProperties[$i]) + $extraProperties[$i].SetValue([System.Windows.Controls.Grid]::RowProperty,$grid.RowDefinitions.Count - 1) + $grid.Children.Add($extraProperties[$i]) | Out-Null $i++ - $extraProperties[$i].SetValue([System.Windows.Controls.Grid]::RowProperty,$grid.RowDefinitions.Count) + $extraProperties[$i].SetValue([System.Windows.Controls.Grid]::RowProperty,$grid.RowDefinitions.Count - 1) $extraProperties[$i].SetValue([System.Windows.Controls.Grid]::ColumnProperty,1) - $grid.Children.Add($extraProperties[$i]) - + $grid.Children.Add($extraProperties[$i]) | Out-Null + + if($extraProperties[$i].Name) + { + $form.RegisterName($extraProperties[$i].Name, $extraProperties[$i]) + } } } } @@ -2399,7 +2809,9 @@ function Export-GraphObject param($objToExport, $objectType, $exportFolder, - [switch]$IsFullObject) + [switch]$IsFullObject, + [switch]$SkipAddID, + [switch]$PassThru) if(-not $exportFolder) { return } @@ -2424,7 +2836,7 @@ function Export-GraphObject { if([IO.Directory]::Exists($exportFolder) -eq $false) { - [IO.Directory]::CreateDirectory($exportFolder) + [IO.Directory]::CreateDirectory($exportFolder) | Out-Null } if($chkExportAssignments.IsChecked -ne $true -and $obj.Assignments) @@ -2433,12 +2845,13 @@ function Export-GraphObject } $fileName = Get-GraphObjectName $obj $objectType - if((Get-SettingValue "AddIDToExportFile") -eq $true -and $obj.Id -and $objectType.SkipAddIDOnExport -ne $true) + if($SkipAddID -ne $true -and (Get-SettingValue "AddIDToExportFile") -eq $true -and $obj.Id -and $objectType.SkipAddIDOnExport -ne $true) { $fileName = ($fileName + "_" + $obj.Id) } - $obj | ConvertTo-Json -Depth 20 | Out-File -LiteralPath ([IO.Path]::Combine($exportFolder, (Remove-InvalidFileNameChars "$($fileName).json"))) -Force + $fullPath = ([IO.Path]::Combine($exportFolder, (Remove-InvalidFileNameChars "$($fileName).json"))) + $obj | ConvertTo-Json -Depth 20 | Out-File -LiteralPath $fullPath -Force if($objectType.PostExportCommand) { @@ -2446,6 +2859,11 @@ function Export-GraphObject } Add-GraphMigrationInfo $obj + + if($PassThru -eq $true) + { + $fullPath + } } catch { @@ -2768,6 +3186,8 @@ function Show-GraphObjectInfo $FormTitle = "", [switch]$NoLoadFull) + Add-ObjectColumnInfoClass + if(-not $global:dgObjects.SelectedItem) { return } if(-not $global:dgObjects.SelectedItem.Object) { return } @@ -2809,9 +3229,278 @@ function Show-GraphObjectInfo Write-Status "" }) + #Settings tab + + Set-XamlProperty $script:detailsForm "txtObjectName" "Text" (Get-GraphObjectName $global:dgObjects.SelectedItem.Object $global:dgObjects.SelectedItem.ObjectType) + + $descriptionProperty = $global:dgObjects.SelectedItem.Object | gm | Where { $_.Name -eq "Description" } + if($descriptionProperty) + { + Set-XamlProperty $script:detailsForm "txtObjectDescription" "Text" $descriptionProperty.Value + } + else + { + Set-XamlProperty $script:detailsForm "txtObjectDescription" "IsEnabled" $false + } + + Add-XamlEvent $script:detailsForm "btnObjectSettingsSave" "Add_Click" -scriptBlock ([scriptblock]{ + + $curObjectName = (Get-GraphObjectName $global:dgObjects.SelectedItem.Object $global:dgObjects.SelectedItem.ObjectType) + if(([System.Windows.MessageBox]::Show("Are you sure you want to upload object settings?`n`nCurrent name:`n$($curObjectName)", "Update object settings?", "YesNo", "Warning")) -ne "Yes") + { + return + } + + Write-Status "Update object settings for $curObjectName" + $nameValue = (Get-XamlProperty $script:detailsForm "txtObjectName" "Text") + if(-not $nameValue) + { + [System.Windows.MessageBox]::Show("Name property must not be empty!", "Error", "OK", "Error") + return + } + # Save settings here... + $nameProp = (?? $global:dgObjects.SelectedItem.Object.NameProperty "displayName") + $idProp = (?? $global:dgObjects.SelectedItem.Object.IDProperty "id") + + $updateObj = [PSCustomObject]@{ + $idProp = $global:dgObjects.SelectedItem.Object."$idProp" + $nameProp = $nameValue + } + + if(($global:dgObjects.SelectedItem.Object."@odata.type")) + { + $updateObj | Add-Member -NotePropertyName "@odata.type" -NotePropertyValue ($global:dgObjects.SelectedItem.Object."@odata.type") + } + + if((Get-XamlProperty $script:detailsForm "txtObjectDescription" "IsEnabled") -eq $true) + { + $updateObj | Add-Member -NotePropertyName "description" -NotePropertyValue (Get-XamlProperty $script:detailsForm "txtObjectDescription" "Text") + } + + $api = "$($global:dgObjects.SelectedItem.ObjectType.API)/$($global:dgObjects.SelectedItem.Object."$idProp")" + + $json = $updateObj | ConvertTo-Json -Depth 20 + + $ret = Invoke-GraphRequest $api -HttpMethod "PATCH" -Content $json + Write-Status "" + if($ret -ne $true) + { + [System.Windows.MessageBox]::Show("Object settings conld not be verified!`n`nCheck the log file", "Update arning", "OK", "Warning") + } + }) + + #Columns tab + $script:colObjectProperties = [System.Collections.ObjectModel.ObservableCollection[object]]::new() + Set-XamlProperty $script:detailsForm "lstObjectColumns" "ItemsSource" $script:colObjectProperties + + $objProps = @() + $nameProp = (?? $global:dgObjects.SelectedItem.Object.DisplayProperty "displayName") + foreach($prop in ($global:dgObjects.SelectedItem.Object | gm | Where MemberType -eq "NoteProperty")) + { + if($prop.Name.Contains('@') -or $prop.Name.Contains('#')) { continue } + $objProps += ([PSCustomObject]@{ Name=$prop.Name;Value=$prop }) + } + $objProps = $objProps | sort -Property Name + Set-XamlProperty $script:detailsForm "lstObjectProperties" "ItemsSource" $objProps + + Add-XamlEvent $script:detailsForm "btnObjectColumnsReset" "Add_Click" -scriptBlock ([scriptblock]{ + + $script:colObjectProperties.Clear() + + Show-ObjectDefaultColumnsSettings + }) + + Add-XamlEvent $script:detailsForm "lstObjectColumns" "Add_SelectionChanged" -scriptBlock ([scriptblock]{ + + Set-XamlProperty $script:detailsForm "grdObjectColumns" "DataContext" (Get-XamlProperty $script:detailsForm "lstObjectColumns" "SelectedItem") + }) + + Add-XamlEvent $script:detailsForm "btnObjectColumnsAdd" "Add_Click" -scriptBlock ([scriptblock]{ + + $selectedItem = Get-XamlProperty $script:detailsForm "lstObjectProperties" "SelectedItem" + if($selectedItem) + { + $script:colObjectProperties.Add(([ObjectColumnInfo]::new($selectedItem.Name, ""))) + } + }) + + Add-XamlEvent $script:detailsForm "btnObjectColumnsMoveUp" "Add_Click" -scriptBlock ([scriptblock]{ + + $selectedIndex = Get-XamlProperty $script:detailsForm "lstObjectColumns" "SelectedIndex" + if($selectedIndex -gt 0) + { + $tmpObj = $script:colObjectProperties[$selectedIndex] + $script:colObjectProperties.RemoveAt($selectedIndex) + $tmpObj = $script:colObjectProperties.Insert(($selectedIndex-1),$tmpObj) + Set-XamlProperty $script:detailsForm "lstObjectColumns" "SelectedIndex" ($selectedIndex-1) + } + }) + + Add-XamlEvent $script:detailsForm "btnObjectColumnsMoveDown" "Add_Click" -scriptBlock ([scriptblock]{ + + $selectedIndex = Get-XamlProperty $script:detailsForm "lstObjectColumns" "SelectedIndex" + if($selectedIndex -ge 0 -and $selectedIndex -lt ($script:colObjectProperties.Count-1)) + { + $tmpObj = $script:colObjectProperties[$selectedIndex] + $script:colObjectProperties.RemoveAt($selectedIndex) + $tmpObj = $script:colObjectProperties.Insert(($selectedIndex+1),$tmpObj) + Set-XamlProperty $script:detailsForm "lstObjectColumns" "SelectedIndex" ($selectedIndex+1) + } + }) + + Add-XamlEvent $script:detailsForm "btnObjectColumnsDelete" "Add_Click" -scriptBlock ([scriptblock]{ + + $selectedIndex = Get-XamlProperty $script:detailsForm "lstObjectColumns" "SelectedIndex" + if($selectedIndex -ge 0) + { + if(([System.Windows.MessageBox]::Show("Are you sure you want to remove selected column?", "Remove Columns?", "YesNo", "Warning")) -ne "Yes") + { + return + } + $script:colObjectProperties.Remove($tmpObj) + } + }) + + Add-XamlEvent $script:detailsForm "btnObjectColumnsClear" "Add_Click" -scriptBlock ([scriptblock]{ + + if(([System.Windows.MessageBox]::Show("Are you sure you want to clear custom column settings?", "Clear Custom Columns?", "YesNo", "Warning")) -ne "Yes") + { + return + } + $script:colObjectProperties.Clear() + }) + + Add-XamlEvent $script:detailsForm "btnObjectColumnsSave" "Add_Click" -scriptBlock ([scriptblock]{ + + if(([System.Windows.MessageBox]::Show("Are you sure you want to save custom column settings?", "Save Custom Columns?", "YesNo", "Warning")) -ne "Yes") + { + return + } + + if($script:colObjectProperties.Count -gt 0) + { + $arrCols = @() + if((Get-XamlProperty $script:detailsForm "chkObjectColumnOverride" "IsChecked") -eq $true) + { + $arrCols += "0" + } + + foreach($colProp in $script:colObjectProperties) + { + $tmp = $colProp.Property + if($colProp.Header -and $colProp.Header -cne $colProp.Property) + { + $tmp = "$($tmp)=$($colProp.Header)" + } + + $arrCols += $tmp + } + $strCols = $arrCols -join "," + + Save-Setting "EndpointManager\ObjectColumns" "$($global:curObjectType.Id)" $strCols + } + else + { + $strCols = $null + Remove-Setting "EndpointManager\ObjectColumns" "$($global:curObjectType.Id)" + } + + Show-ObjectDefaultColumnsSettings + }) + + Show-ObjectDefaultColumnsSettings + + # Show dialog Show-ModalForm $FormTitle $detailsForm } +function local:Add-ObjectColumnInfoClass +{ + if (("ObjectColumnInfo" -as [type])) + { + return + } + + $classDef = @" + using System.ComponentModel; + + public class ObjectColumnInfo : INotifyPropertyChanged + { + public string Property { get { return _property; } set { _property = value; NotifyPropertyChanged("Property"); } } + private string _property = null; + + public string Header { get { return _header; } set { _header = value; NotifyPropertyChanged("Header"); } } + private string _header = null; + + public ObjectColumnInfo(string Property, string Header) + { + _property = Property; + _header = Header; + } + + public event PropertyChangedEventHandler PropertyChanged; + + // This method is called by the Set accessor of each property. + // The CallerMemberName attribute that is applied to the optional propertyName + // parameter causes the property name of the caller to be substituted as an argument. + private void NotifyPropertyChanged(string propertyName = "") + { + if(PropertyChanged != null) { PropertyChanged.Invoke(this, new PropertyChangedEventArgs(propertyName)); } + } + } + +"@ + [Reflection.Assembly]::LoadWithPartialName("System.ComponentModel") | Out-Null + Add-Type -TypeDefinition $classDef -IgnoreWarnings -ReferencedAssemblies @('System.ComponentModel') +} + +function Local:Show-ObjectDefaultColumnsSettings +{ + $strColSettings = Get-Setting "EndpointManager\ObjectColumns" "$($global:curObjectType.Id)" + $script:colObjectProperties.Clear() + $defaultColumns = (?? $global:curObjectType.ViewProperties (@("displayName","description","id"))) + if($strColSettings) + { + $arrColSettings += $strColSettings.Split(@(',',';')) + + Set-XamlProperty $script:detailsForm "chkObjectColumnOverride" "IsChecked" ($arrColSettings.Count -gt 0 -and $arrColSettings[0] -eq "0") + Set-XamlProperty $script:detailsForm "lblObjectColumnsConfig" "Content" $strColSettings + + $start = 0 + if($arrColSettings.Count -gt 0 -and ($arrColSettings[0] -eq "0" -or $arrColSettings[0] -eq "1")) + { + $start++ + } + + $colArr = @() + + for($i = $start;$i -lt $arrColSettings.Count;$i++) + { + $colProp,$colHeader= $arrColSettings[$i].Split("=") + if(-not $colHeader) + { + $colHeader = $colProp + } + $script:colObjectProperties.Add([ObjectColumnInfo]::new($colProp,$colHeader)) + $colArr += $colProp + } + + if(($arrColSettings.Count -eq 0 -or $arrColSettings[0] -ne "0")) + { + $tmpArr = $defaultColumns + $tmpArr += $colArr + + $colArr = $tmpArr + } + + Set-XamlProperty $script:detailsForm "lblObjectColumnsConfig" "Content" ("$(($colArr-join ','))") + } + else + { + Set-XamlProperty $script:detailsForm "lblObjectColumnsConfig" "Content" "$(($defaultColumns -join ',')) (Default)" + } +} + function Get-GraphObjectName { param($obj, $objectType) diff --git a/README.md b/README.md index 574b9e8..1e6f94b 100644 --- a/README.md +++ b/README.md @@ -29,12 +29,48 @@ Before starting the app: Before logging on: -* The app will use the Intune PowerShell Azure Enterprise Application by default but request all permissions required by the script. The will most likely cause a consent prompt since it uses more permission than the Intune module. Enable **Use Default Permissions** in Settings to only request the current permissions granted to the Enterprise App. - **Note:** Using default permission might reduce functionality e.g. permissions for one or more object types might be missing +* The app will use the Intune PowerShell Azure Enterprise Application by default and only use the permissions granted to that appliction. Disable **Use Default Permissions** in Settings to request additional permissions. The will cause a consent prompt if one or more permissions are missing for the app. + **Note:** If the app has not been approved for the organization, a consent prompt will be disablyed. * Enable **Get Tenant List** in Settings if accessing multiple environments with the same account e.g. a guest account in other tenants. This might cause a Consent prompt Start the script by running **Start.cmd**, **Start-WithJson.cmd**, **Start-WithConsole.cmd** or **Start-IntuneManagement.ps1**. **Start-WithConsole.cmd** will leave the command prompt window open so you can see the log while running the app. +## Silent Batch Job (Beta) + +The script can be executed without UI. This is to support DevOps environment. + +Silent batch job is supported by the following features: + +* Export +* Import + +The Silent Batch Job feature requires an Azure App to be configured with a secret or a certificate. The app must also be delegated with the required permissions to Graph objects used by the tool. + +The silent feature uses an exported json file with settings for the specified operation. This file can be generated in the Bulk Export/Import forms. Required settings for the silent job is configured in the form and then exported to a file. The path to the file is then passed on the command line. The file can be used for multiple environments if the **Add company name to the path** option is selected. Note that this requires that the appmust have at least read permission on the Organizations API. + +The following variables can be used in the path and filename: + +* %Date% - This will be translated to yyyy-MM-dd format (eg 2020-02-27) +* %DateTime% - This will be translated to yyyyMMdd-HHmm format (eg 20200227-1750) +* %Organization% - Name of the tenant +* Any environment variable + +The tool will by default generate the files; `BulkExport.json` and `BulkImport.json`. These files can be merged into one file but that must be done manually. These files can also be edited manually. Each setting represents a control in the UI form. When the script is triggered silently, it will create the form in the background, populate it with the values from the file and then trigger the bulk function. + +**Note** The Silent Batch feature use settings configured in the UI. If this is triggered in a DevOps envionment, it is recommended to generate a settings JSON file with the desired settings and then use that in the DevOps environment + +The app authentication can either be passed on the command line or stored in the settings. Tennant Settings is required for multiple environments. + +**Command line example:** + +Start-IntuneManagement.ps1 -Silent -TenantId "<*TenantID*>" -SilentBatchFile <*PathToFile*> [-AppId <*AppId*>] [-Secret <*Secret*> | -Certificate <*CertThumb*>] + +Start-IntuneManagement.ps1 -Silent -SilentBatchFile "C:\Temp\BatchImport.json" -TenantId "00000000-0000-0000-0000-000000000000" -AppId "00000000-0000-0000-0000-000000000001" -Secret "KJ76P~B9###9-.8I####-_MySecret" + +**Setting example:** + +Start-IntuneManagement.ps1 -Silent -SilentBatchFile "C:\Temp\BatchImport.json" -TenantId "00000000-0000-0000-0000-000000000000" + ## Documentation This script has an extension that can document profiles and policies in Intune. The output is using the same language strings as the Intune portal. @@ -275,7 +311,7 @@ When multi tenant settings is Enabled/Disabled, the Profile Info is not updated The *List Applications* API might not list an imported app immediately after the import. Click *Refresh* to reload the application objects. -~~When using the filter box to search for items, the checkbox must be clicked twice to select an item.~~
+~~When using the filter box to search for items, the checkbox must be clicked twice to select an item.~~
Issue fixed in 3.3.2 Logout will only clear the token from cache and not from the browser e.g. if login is triggered after a logout, the user will still be listed in the 'Select user' dialog. diff --git a/ReleaseNotes.md b/ReleaseNotes.md index 7ed7daa..6539d56 100644 --- a/ReleaseNotes.md +++ b/ReleaseNotes.md @@ -1,5 +1,91 @@ # Release Notes +## 3.4.0 - 2022-03-01 + +**New features** + +- **Silent batch job** + Export/Import can now be executed without UI
+ See documentation for full requirements + + **Note** Please report any issues to [Issue 39](https://github.com/Micke-K/IntuneManagement/issues/39) + + This is based on [Issue 39](https://github.com/Micke-K/IntuneManagement/issues/39) + +- **Documentation** + + - Support for documenting an environment based on exported files
+ + Select the **Source files** folder in the Documentation Types (Bulk menu) dialog. + + Note: Some values will NOT be included. These are referenced values and not a property on the object eg Certificate on a VPN profile, Root certificate on a SCEP profile etc. These values will be documented with ##TBD...
+ + This is based on [Issue 37](https://github.com/Micke-K/IntuneManagement/issues/37) + + - Support for attaching the json file for the object in the word document + + - Support for documentation output level (Word)
+ Documenting the full environment can create a document with 1000+ pages depending on the amount of profiles and policies. The documentation output level can now be used to reduce the document size. The output level options are: + + - Full - Document every single value + - Limited - Set max value and truncate size for documentation and as option, attach the original value as a text document to the value cell e.g. truncate all values over 500 characters to 10 characters and attach the full value as a text file in the document. This will reduce documentation size for profiles with large XML strings like ADMX ingestion + - Basic - Only include the Basic and Assignments tables in the documentation + + - Added support for documenting Filters + +- Added UI for configuring custom columns
+ This can now be done in the Detail View
+ This is based on [Issue 30](https://github.com/Micke-K/IntuneManagement/issues/30)
+ +- Added support for updating Name and Descriptions of the object in Detail View
+ This is As-Is functionality. Not all object types have been tested.
+ It is recommended to use the portal for this.
+ This is based on a private request
+ +- Added support for copying an app + + **Note** This requires that the **App packages folder** is specified in Settings and that the file for the app is available in that folder. If the app file is missing it can be uploaded manually in the Details view + + This is based on [Issue 42](https://github.com/Micke-K/IntuneManagement/issues/42) + +- Added support for manually upload an app file via the Details view + +**Fixes** + +- **Documentation**
+ + - Updated documentation files with support for new properties and removed unused values (Windows Updates, Windows Feature Updates etc.) + - Fixed an issue where VPN profiles in some cases was missing the Base VPN settings + - Fixed an issue when using a template
+ A table of content will no longer be created. That should be included in the template + +- **Application import** + + - Minor change in the app Win32 upload functionality to align to portal APIs + - The File Name is now updated to be based on the actual uploaded file + + **Important** Please create an issue if there are any problems + +- Fixed an issue where ESP and Enrolment Restriction objects were not listed + The original filters stopped working + + **Note** The Enrolment restrictions has changed in Graph. There is now one object for each OS type. So there will be multiple restriction objects exported. platformType column was added to identify each object + + This is based on [Issue 41](https://github.com/Micke-K/IntuneManagement/issues/41) + +- Minor fixes in Import/Export extensions - Required for silent batch job support + +- Fixed an issue where PostListCommand was not triggered + + - Additional Endpoint Security columns were not listed + - Azure Branding objects was missing the language column
+
+- Fixed issue where the Document button was not enabled when **Select All** was clicked (without selecting an object first) + + This is based on [Issue 36](https://github.com/Micke-K/IntuneManagement/issues/36) + +- Other minor bug fixes to support the new features + ## 3.3.3 - 2021-12-15 **Fixes** @@ -80,7 +166,7 @@ This is a **BETA** release. It contains core changes for Authentication and Sett **Default Settings Value Changes** -* **Use Default Permissions** is now set to Disabled by default. With the Tenant Specific Settings feature, this can now be enabled globally or per tenant. Consultants accessing multiple environments might not have permissions to grant consent requests so this could be enabled on a global level and then disabled for tenants where the permissions can be added. +* **Use Default Permissions** is now set to Enabled by default. With the Tenant Specific Settings feature, this can now be enabled globally or per tenant. Consultants accessing multiple environments might not have permissions to grant consent requests so this could be enabled on a global level and then disabled for tenants where the permissions can be added. **Fixes** diff --git a/Start-IntuneManagement.ps1 b/Start-IntuneManagement.ps1 index 27c53b2..0e514db 100644 --- a/Start-IntuneManagement.ps1 +++ b/Start-IntuneManagement.ps1 @@ -5,7 +5,20 @@ param( [switch] $JSonSettings, [string] - $JSonFile + $JSonFile, + [switch] + $Silent, + [string] + $SilentBatchFile = "", + [string] + $TenantId, + [string] + $AppId, + [string] + $Secret, + [string] + $Certificate ) Import-Module ($PSScriptRoot + "\CloudAPIPowerShellManagement.psd1") -Force -Initialize-CloudAPIManagement -View "IntuneGraphAPI" -ShowConsoleWindow:($ShowConsoleWindow) -JSonSettings:($JSonSettings) -JSonFile $JSonFile +$param = $PSBoundParameters +Initialize-CloudAPIManagement -View "IntuneGraphAPI" @param diff --git a/Themes/Styles.xaml b/Themes/Styles.xaml index 7c25cc7..4e1bbb1 100644 --- a/Themes/Styles.xaml +++ b/Themes/Styles.xaml @@ -28,6 +28,65 @@ + + + + + + + + + + + + + + diff --git a/Xaml/BulkExportForm.xaml b/Xaml/BulkExportForm.xaml index b9f4af4..1dae5f5 100644 --- a/Xaml/BulkExportForm.xaml +++ b/Xaml/BulkExportForm.xaml @@ -108,9 +108,19 @@ --> - - + +